Skip to content

Commit

Permalink
Update Turbulence.f90
Browse files Browse the repository at this point in the history
Fix the things gfortran doesnt like
  • Loading branch information
Jerryntk authored Jul 2, 2022
1 parent 2760884 commit 3c1d5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Solver/src/libs/physics/spallartalmaras/Turbulence.f90
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ function Compute_g(self, theta, dwall, stilda) result(g)
real(kind=RP) :: g
real(kind=RP) :: r

if (stilda .eq. 0.0_RP) then
if (stilda .EQ. 0.0_RP) then
r = self % rmax
else
r = min(dimensionless % mu * theta/(stilda * POW2(self % kappa) * POW2(dwall)), self % rmax )
Expand Down

0 comments on commit 3c1d5c4

Please # to comment.