-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Algo_QC] Feature addition: Saving each \Delta_t time step #10
Open
YanisZatout
wants to merge
26
commits into
cea-trust-platform:next
Choose a base branch
from
YanisZatout:save_each_delta_t
base: next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[Algo_QC] Feature addition: Saving each \Delta_t time step #10
YanisZatout
wants to merge
26
commits into
cea-trust-platform:next
from
YanisZatout:save_each_delta_t
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hard copy-paste of IJK_Kernel files
Adding compilable Algo_QC with patched items that correspond to the right calculation of surfaces for the calculation of the mass flux in the QUICK and Centered order 2 schemes Correction of the Simd tools used to compute the terms of the QUICK scheme : in the J direction (spanwise in a channel), the offset to take into account in the J direction for each parallel domain was fixed when it needed to be taken into account. This had the effect of not computing the flux correctly on the very first J cell for the mass flux. This is a very similar bug to commit hash: ead456d04d72824210683fa612a7885d41a20d1e which is detailed in the changelogs of Algo_QC.
OpDiffTurbIJKScalar.cpp: Added method OpDiffVectorialIJKScalar_double::ajouter This method is used in the Algo_QC code and was missing. Its implementation is not changed from previous versions.
OpCentre2IJK.*: These files are centered order 2 scheme for velocity convection in momentum energy convervation equation. They are a copy-paste of the OpCentre4IJK.* files with g1 and g4 values put to 0.0, and g2 and g3 values put to 0.5.
Statistiques_dns_qc_ijk.*: The class Statistiques_dns_qc_ijk is just a child class of Statistiques_dns_ijk that implements the method `complemer_read' as non forcing for process exiting. This is essentially like the old version of Statistiques_dns_ijk*, where Statistiques_dns_ijk was directly used for logging statistics in Algo_QC.
OpDiffTurbIJK.tpp, OpDiffTurbIJKScalar.tpp: Bug correction relating to the variable `dummy_field' that stores the velocity. Instead of storing a pointer to the velocity, the changed code was actively copying the entire velocity field, leading to a reduction in performances especially in a already costly simulation
Added documentation for Algo_QC class. This includes Quasi Compressible hypothesis equations, LES formulations, and LES models and bibliography.
Decoupled saving statistics and raw data. Added keywords to save each physical \Delta_t Forces the timestep to change to match the aimed timestep wanted for saving
YanisZatout
changed the title
[Algo_QC] Feature addition: Saving each time step
[Algo_QC] Feature addition: Saving each \Delta_t time step
Mar 29, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[Algo_QC] Decoupled saving raw data and statistics files (statistiques_T.txt, moyenne_spatiale_T.txt) and raw data files.
Adding keyword
save_each_delta_t
for saving each \Delta_t, as well as test case with prm files.The
save_each_delta_t
checks if the current time step makes the simulation time go beyond the wanted simulation raw data. If that's the case, the time step is capped to the needed value to attain the wanted saving time.This feature is also possible to implement for any other code module.