Skip to content

Commit b23913a

Browse files
removing spaces
1 parent b1fc9d4 commit b23913a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

SU2_CFD/include/solvers/CFVMFlowSolverBase.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ void CFVMFlowSolverBase<V, R>::Viscous_Residual_impl(unsigned long iEdge, CGeome
434434
const bool implicit = (config->GetKind_TimeIntScheme() == EULER_IMPLICIT);
435435
const bool tkeNeeded = (config->GetKind_Turb_Model() == TURB_MODEL::SST);
436436

437-
CVariable* turbNodes = nullptr;
437+
CVariable* turbNodes = nullptr;
438438
if (tkeNeeded) turbNodes = solver_container[TURB_SOL]->GetNodes();
439439

440440
/*--- Points, coordinates and normal vector in edge ---*/

SU2_CFD/src/numerics/CNumerics.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,13 +309,13 @@ void CNumerics::GetInviscidIncProjJac(const su2double *val_density, const su2dou
309309
val_Proj_Jac_Tensor[3][2] = val_scale*(val_normal[1]*(*val_density)*val_velocity[2]);
310310
val_Proj_Jac_Tensor[3][3] = val_scale*((*val_density)*(proj_vel + val_normal[2]*val_velocity[2]));
311311
val_Proj_Jac_Tensor[3][4] = val_scale*((*val_dRhodT)*val_velocity[2]*proj_vel);
312-
312+
313313
val_Proj_Jac_Tensor[4][0] = val_scale*((*val_cp)*(*val_temperature)*proj_vel/(*val_betainc2));
314314
val_Proj_Jac_Tensor[4][1] = val_scale*((*val_cp)*(*val_temperature)*val_normal[0]*(*val_density));
315315
val_Proj_Jac_Tensor[4][2] = val_scale*((*val_cp)*(*val_temperature)*val_normal[1]*(*val_density));
316316
val_Proj_Jac_Tensor[4][3] = val_scale*((*val_cp)*(*val_temperature)*val_normal[2]*(*val_density));
317317
val_Proj_Jac_Tensor[4][4] = val_scale*((*val_cp)*((*val_temperature)*(*val_dRhodT) + (*val_density))*proj_vel);
318-
318+
319319
}
320320
AD::EndPassive(wasActive);
321321
}

SU2_CFD/src/solvers/CIncEulerSolver.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2170,7 +2170,6 @@ void CIncEulerSolver::SetPreconditioner(const CConfig *config, unsigned long iPo
21702170

21712171
if (energy) {
21722172
Preconditioner[nDim+1][nDim+1] = oneOverCp / Density;
2173-
21742173
} else {
21752174
Preconditioner[nDim+1][nDim+1] = 0.0;
21762175
}

0 commit comments

Comments
 (0)