-
Notifications
You must be signed in to change notification settings - Fork 843
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
[WIP] Implementation of DDES and SAS formulations for SST #2150
Open
rois1995
wants to merge
20
commits into
develop
Choose a base branch
from
feature_SST_IDDES
base: develop
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.
+676
−27
Open
Changes from 17 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
388f85a
- Added computation of desired grid size for Scale Resolving Simulati…
rois1995 41cb27e
- Added a more complex SAS model named SAS_COMPLICATED
rois1995 a6be2cf
- Fixed getting coordinates of points
rois1995 d1f4db6
- Added output of laplacian
rois1995 35958b8
- Fixed missing variable initialization for CTurbSAVariable
rois1995 09e977f
- Added DES implementations to SST: DDES, Improved DDES (IDDES), Simp…
rois1995 8c8e89d
- Added SST DDES in config
rois1995 71ac9c4
- Added Debug quantities
rois1995 5b5fc30
- Added division by 0 protection
rois1995 ef50283
- Added computation of LESIQ to Output
rois1995 91c742e
Merge branch 'develop' into feature_SST_IDDES
rois1995 6c86a19
Merge 'origin/feature_SAS' into feature_SST_IDDES
rois1995 48a9f3d
- modified codi
rois1995 ae33b05
- Modified Velocity Laplacian (vector -> Matrix)
rois1995 6443070
- Added outputs log for SST-DDES
rois1995 caf0d41
Merge remote-tracking branch 'origin/develop' into feature_SST_IDDES
rois1995 a584526
- update externals
rois1995 0f3a832
Merge remote-tracking branch 'origin/develop' into feature_SST_IDDES
rois1995 710e1dc
Fix SAS Babu implementation
rois1995 e4f28d4
- Fixed compilation error
rois1995 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
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 | ||||
---|---|---|---|---|---|---|
|
@@ -136,6 +136,9 @@ class CNumerics { | |||||
const su2double | ||||||
*TurbPsi_i, /*!< \brief Vector of adjoint turbulent variables at point i. */ | ||||||
*TurbPsi_j; /*!< \brief Vector of adjoint turbulent variables at point j. */ | ||||||
su2double lengthScale_i, lengthScale_j; /*!< \brief length scale for SST */ | ||||||
su2double FTrans; /*!< \brief SAS function */ | ||||||
su2double *VelLapl; /*!< \brief Laplacian of the velocity */ | ||||||
CMatrixView<const su2double> | ||||||
ConsVar_Grad_i, /*!< \brief Gradient of conservative variables at point i. */ | ||||||
ConsVar_Grad_j, /*!< \brief Gradient of conservative variables at point j. */ | ||||||
|
@@ -707,6 +710,18 @@ class CNumerics { | |||||
*/ | ||||||
virtual void SetCrossDiff(su2double val_CDkw_i) {/* empty */}; | ||||||
|
||||||
/*! | ||||||
* \brief Get the value of the value of FTrans. | ||||||
*/ | ||||||
inline virtual su2double GetFTrans() const { return 0.0; } | ||||||
|
||||||
/*! | ||||||
* \brief Get the value of the value of FTrans. | ||||||
*/ | ||||||
inline void SetVelLapl(su2double* val_VelLapl) { | ||||||
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.
Suggested change
|
||||||
VelLapl = val_VelLapl; | ||||||
} | ||||||
|
||||||
/*! | ||||||
* \brief Set the value of the effective intermittency for the LM model. | ||||||
* \param[in] intermittency_eff_i - Value of the effective intermittency at point i. | ||||||
|
@@ -828,6 +843,16 @@ class CNumerics { | |||||
dist_j = val_dist_j; | ||||||
} | ||||||
|
||||||
/*! | ||||||
* \brief Set the value of the length scale for SST. | ||||||
* \param[in] val_lengthScale_i - Value of of the length scale for SST from point i. | ||||||
* \param[in] val_lengthScale_j - Value of of the length scale for SST from point j. | ||||||
*/ | ||||||
void SetLengthScale(su2double val_lengthScale_i, su2double val_lengthScale_j) { | ||||||
lengthScale_i = val_lengthScale_i; | ||||||
lengthScale_j = val_lengthScale_j; | ||||||
} | ||||||
|
||||||
/*! | ||||||
* \brief Set the value of the roughness from the nearest wall. | ||||||
* \param[in] val_dist_i - Value of of the roughness of the nearest wall from point i | ||||||
|
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
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
Oops, something went wrong.
Oops, something went wrong.
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.