Skip to content

Commit a488554

Browse files
committed
not needed member variable
1 parent 973b331 commit a488554

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

SU2_CFD/include/numerics/turbulent/turb_convection.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
class CUpwScalar : public CNumerics {
4848
protected:
4949
su2double
50-
q_ij = 0.0, /*!< \brief Projected velocity at the face. */
5150
a0 = 0.0, /*!< \brief The maximum of the face-normal velocity and 0 */
5251
a1 = 0.0, /*!< \brief The minimum of the face-normal velocity and 0 */
5352
*Flux = nullptr, /*!< \brief Final result, diffusive flux/residual. */

SU2_CFD/src/numerics/turbulent/turb_convection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CNumerics::ResidualType<> CUpwScalar::ComputeResidual(const CConfig* config) {
7474
Density_i = V_i[nDim+2];
7575
Density_j = V_j[nDim+2];
7676

77-
q_ij = 0.0;
77+
su2double q_ij = 0.0;
7878
if (dynamic_grid) {
7979
for (iDim = 0; iDim < nDim; iDim++) {
8080
su2double Velocity_i = V_i[iDim+1] - GridVel_i[iDim];

0 commit comments

Comments
 (0)