Skip to content

Commit c8f3fe7

Browse files
author
rois1995
committed
- align externals and submodules to develop
1 parent 82c7b1f commit c8f3fe7

File tree

8 files changed

+20
-24
lines changed

8 files changed

+20
-24
lines changed

SU2_CFD/include/numerics/turbulent/transition/trans_correlations.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,6 @@ class TransLMCorrelations {
261261
FPG = 1 + 0.275 * (1 - exp(-35.0 * lambda_theta_local)) * exp(-Tu_L/0.5);
262262
}
263263

264-
// This is not reported in the paper
265-
//FPG = max(FPG, 0.0);
266-
267264
if (Tu_L <= 1.3) {
268265
const su2double FirstTerm = -589.428 * Tu_L;
269266
const su2double SecondTerm = 0.2196 / max(pow(Tu_L, 2.0), 1e-12);

SU2_CFD/include/numerics/turbulent/transition/trans_sources.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ class CSourcePieceWise_TransLM final : public CNumerics {
277277
VelocityNormalized[1] = vel_v / Velocity_Mag;
278278
if (nDim == 3) VelocityNormalized[2] = vel_w / Velocity_Mag;
279279

280-
// const su2double StreamwiseVort = abs(GeometryToolbox::DotProduct(VelocityNormalized, Vorticity_i));
281280
su2double StreamwiseVort = 0.0;
282281
for (auto iDim = 0u; iDim < nDim; iDim++) {
283282
StreamwiseVort += VelocityNormalized[iDim] * Vorticity_i[iDim];

SU2_CFD/src/variables/CTransLMVariable.cpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -56,26 +56,26 @@ CTransLMVariable::CTransLMVariable(su2double Intermittency, su2double ReThetaT,
5656
Re_t.resize(nPoint) = ReThetaT;
5757

5858
nAuxVar = 1;
59-
Grad_AuxVar.resize(nPoint, nAuxVar, nDim, 0.0);
59+
Grad_AuxVar.resize(nPoint, nAuxVar, nDim, su2double(0.0));
6060
AuxVar.resize(nPoint, nAuxVar) = su2double(0.0);
61-
Tu.resize(nPoint) = 0.0;
61+
Tu.resize(nPoint) = su2double(0.0);
6262

63-
normal_x.resize(nPoint) = 0.0;
64-
normal_y.resize(nPoint) = 0.0;
65-
normal_z.resize(nPoint) = 0.0;
63+
normal_x.resize(nPoint) = su2double(0.0);
64+
normal_y.resize(nPoint) = su2double(0.0);
65+
normal_z.resize(nPoint) = su2double(0.0);
6666
}
6767

6868

69-
Re_v.resize(nPoint) = 0.0;
70-
Corr_Rec.resize(nPoint) = 1.0;
71-
Prod.resize(nPoint) = 0.0;
72-
Destr.resize(nPoint) = 0.0;
73-
F_onset1.resize(nPoint) = 0.0;
74-
F_onset2.resize(nPoint) = 0.0;
75-
F_onset3.resize(nPoint) = 0.0;
76-
F_onset.resize(nPoint) = 0.0;
77-
Lambda_theta.resize(nPoint) = 0.0;
78-
duds.resize(nPoint) = 0.0;
69+
Re_v.resize(nPoint) = su2double(0.0);
70+
Corr_Rec.resize(nPoint) = su2double(1.0);
71+
Prod.resize(nPoint) = su2double(0.0);
72+
Destr.resize(nPoint) = su2double(0.0);
73+
F_onset1.resize(nPoint) = su2double(0.0);
74+
F_onset2.resize(nPoint) = su2double(0.0);
75+
F_onset3.resize(nPoint) = su2double(0.0);
76+
F_onset.resize(nPoint) = su2double(0.0);
77+
Lambda_theta.resize(nPoint) = su2double(0.0);
78+
duds.resize(nPoint) = su2double(0.0);
7979

8080
}
8181

externals/codi

Submodule codi updated 964 files

externals/medi

Submodule medi updated 197 files

externals/opdi

Submodule opdi updated 127 files

subprojects/CoolProp

Submodule CoolProp updated 104 files

0 commit comments

Comments
 (0)