Skip to content
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

Implicit solver for inviscid NEMO problems #1399

Merged
merged 8 commits into from
Oct 18, 2021

Conversation

WallyMaier
Copy link
Contributor

Proposed Changes

This introduces the implicit solver for the Euler solver with SU2-NEMO. I created this branch/PR for a clean commit history version.
This PR also does some general cleanup (declaring variables, use of geometry toolbox) to be more consistent in the SU2 style.

Related Work

This is based on the previous draft PR #1356. And in general work continued from other NEMO cleanups #1343 and #1347.

PR Checklist

Put an X by all that apply. You can fill this out after submitting the PR. If you have any questions, don't hesitate to ask! We want to help. These are a guide for you to know what the reviewers will be looking for in your contribution.

  • I am submitting my contribution to the develop branch.
  • My contribution generates no new compiler warnings (try with the '-Wall -Wextra -Wno-unused-parameter -Wno-empty-body' compiler flags, or simply --warnlevel=2 when using meson).
  • My contribution is commented and consistent with SU2 style.
  • I have added a test case that demonstrates my contribution, if necessary.
  • I have updated appropriate documentation (Tutorials, Docs Page, config_template.cpp) , if necessary.

@lgtm-com
Copy link

lgtm-com bot commented Oct 9, 2021

This pull request introduces 7 alerts when merging 88e9e9f into b1a47bb - view on LGTM.com

new alerts:

  • 5 for Comparison of narrow type with wide type in loop condition
  • 2 for Resource not released in destructor

@WallyMaier WallyMaier requested a review from jtneedels October 9, 2021 04:25
Comment on lines +151 to +152
Jacobian_i[nSpecies+nDim][nSpecies+iDim] += cte*dPdU_i[nSpecies+iDim];
Jacobian_i[nSpecies+nDim][nSpecies+nDim] += cte*(1+dPdU_i[nSpecies+nDim]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This type of repetition of the indices is not ideal for new NEMO developers I imagine. Probably worth keeping it in mind for the future.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree. Ill make a note of this in the next NEMO meeting.

Copy link
Member

@pcarruscag pcarruscag left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget to fix the LGTM warnings

@@ -943,6 +1088,7 @@ su2double CSU2TCLib::ComputeEveSourceTerm(){
for (iSpecies = 0; iSpecies < nSpecies; iSpecies++)
MolarFrac[iSpecies] = (rhos[iSpecies] / MolarMass[iSpecies]) / conc;

/*--- Compute Eve and Eve* ---*/
eve_eq = ComputeSpeciesEve(T, true);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe I missed it, are these private vars? It looks like the declaration was removed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the only live in CSU2TCLib. They are declared in the hpp and resized early in the file.

@@ -70,7 +70,7 @@ MARKER_MONITORING= ( Wall )
NUM_METHOD_GRAD= WEIGHTED_LEAST_SQUARES
%
% Courant-Friedrichs-Lewy condition of the finest grid
CFL_NUMBER= 0.5
CFL_NUMBER= 3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this a new test case, or did you change the old one? We should probably have one each for implicit and explicit, to cover all bases.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just an updated case. I'm not so sure that an implicit and explicit case are necessary, since the residuals are still used in the the implicit case.

@jtneedels
Copy link
Contributor

Nice job Wally! Thanks for pulling this together, I know this was a lot of changes in one PR, but all necessary to get implicit working.

if (implicit) {
for (auto jVar = 0; jVar < nVar; jVar++){
if (residual.jacobian_i[iVar][jVar] != residual.jacobian_i[iVar][jVar]) ERR = true;
if ((jac_j) && (residual.jacobian_j[iVar][jVar] != residual.jacobian_j[iVar][jVar])) ERR = true;
Copy link
Member

@pcarruscag pcarruscag Oct 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if ((jac_j) && (residual.jacobian_j[iVar][jVar] != residual.jacobian_j[iVar][jVar])) ERR = true;
if (jac_j && std::isnan(SU2_TYPE::GetValue(residual.jacobian_j[iVar][jVar]))) ERR = true;

for(iSpecies = 0; iSpecies < nSpecies; iSpecies++)
rhos[iSpecies]=V_i[RHOS_INDEX+iSpecies];

/*--- Set mixture state ---*/
fluidmodel->SetTDStateRhosTTv(rhos, T, Tve);

ws = fluidmodel->ComputeNetProductionRates();
/*---Compute Prodcution/destruction terms ---*/
ws = fluidmodel->ComputeNetProductionRates(implicit, V_i, eve_i, Cvve_i,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need ws as a member variable or can you const auto& here? Same question for other vectors I saw in the numerics classes.

Copy link
Contributor Author

@WallyMaier WallyMaier Oct 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can const auto. Ill look for other places to const auto in the numerics classes. I plan to go through the viscous portion in the portion.

@@ -155,7 +155,7 @@ su2double CNEMOGas::ComputerhoCvve() {
return rhoCvve;
}

void CNEMOGas::ComputedPdU(su2double *V, vector<su2double>& val_eves, su2double *val_dPdU){
void CNEMOGas::ComputedPdU(const su2double *V, const vector<su2double>& val_eves, su2double *val_dPdU){
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@WallyMaier WallyMaier merged commit 680fb8b into develop Oct 18, 2021
@WallyMaier WallyMaier deleted the feature_NEMO_euler_implicit branch October 18, 2021 20:41
@pr-triage pr-triage bot added the PR: merged label Oct 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants