Skip to content

Commit 35ad976

Browse files
Update SU2_CFD/src/solvers/CIncEulerSolver.cpp
Co-authored-by: Cristopher Morales <[email protected]>
1 parent 630856b commit 35ad976

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

SU2_CFD/src/solvers/CIncEulerSolver.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2985,7 +2985,9 @@ void CIncEulerSolver::SetResidual_DualTime(CGeometry *geometry, CSolver **solver
29852985

29862986
V2U(Density, V_time_nM1, U_time_nM1);
29872987
V2U(Density, V_time_n, U_time_n);
2988-
V2U(Density, V_time_nP1, U_time_nP1);
2988+
V2U(Density_time_nM1, V_time_nM1, U_time_nM1);
2989+
V2U(Density_time_n, V_time_n, U_time_n);
2990+
V2U(Density, V_time_nP1, U_time_nP1);
29892991

29902992
/*--- CV volume at time n-1 and n+1. In the case of dynamically deforming
29912993
grids, the volumes will change. On rigidly transforming grids, the

0 commit comments

Comments
 (0)