-
Notifications
You must be signed in to change notification settings - Fork 849
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
Improve the configuration file for the SA Neg test case #1559
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7cd5426
Improve the configuration file for the SA Neg test case
suargi 3b74901
Update test values and iterations
suargi 1220dfc
Update TestCases/turbulence_models/sa/rae2822/turb_SA_NEG_RAE2822.cfg
suargi 017616f
Header warning
suargi ff22728
Merge branch 'develop' into fix_saneg_variant_testcase
suargi 6d7dffd
Merge branch 'develop' into fix_saneg_variant_testcase
pcarruscag f749e52
Small change to trigger regression tests.
TobiKattmann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ RESTART_SOL= NO | |
MACH_NUMBER= 0.729 | ||
% | ||
% Angle of attack (degrees, only for compressible flows) | ||
AOA= 2.31 | ||
AOA= 20.31 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I recon, the case still converges to a reasonable solution with that more aggressive AoA? |
||
% | ||
% Free-stream temperature (288.15 K by default) | ||
FREESTREAM_TEMPERATURE= 288.15 | ||
|
@@ -61,7 +61,11 @@ NUM_METHOD_GRAD= WEIGHTED_LEAST_SQUARES | |
CFL_NUMBER= 2.5 | ||
% | ||
% Adaptive CFL number (NO, YES) | ||
CFL_ADAPT= NO | ||
CFL_ADAPT= YES | ||
% | ||
% Parameters of the adaptive CFL number (factor down, factor up, CFL min value, | ||
TobiKattmann marked this conversation as resolved.
Show resolved
Hide resolved
|
||
% CFL max value ) | ||
CFL_ADAPT_PARAM= ( 0.5, 1.5, 400.0, 1000.0 ) | ||
% | ||
% Number of total iterations | ||
ITER= 99999 | ||
|
@@ -78,7 +82,7 @@ LINEAR_SOLVER_ITER= 20 | |
% -------------------------- MULTIGRID PARAMETERS -----------------------------% | ||
% | ||
% Multi-Grid Levels (0 = no multi-grid) | ||
MGLEVEL= 3 | ||
MGLEVEL= 0 | ||
% | ||
% Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE) | ||
MGCYCLE= W_CYCLE | ||
|
@@ -164,4 +168,4 @@ SURFACE_FILENAME= surface_flow | |
OUTPUT_WRT_FREQ= 250 | ||
% | ||
% Screen output fields | ||
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_MOMENTUM-X, RMS_MOMENTUM-Y, RMS_NU_TILDE, LIFT, DRAG) | ||
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_MOMENTUM-X, RMS_MOMENTUM-Y, RMS_NU_TILDE, LIFT, DRAG) | ||
suargi marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am curious why a reduced number of iterations would be beneficial? I would always tend to do more as small errors might accumulate enough only after a certain amount of iterations, to break the regression test. That scenario might not happen to frequently but as you also remove multigrid there should be some time freed-up, right :)
So feel free (from my point of view) to revert to 20 or higher if it doesnt cost minutes.