Skip to content

Commit

Permalink
fix if then typo around Kb_sing
Browse files Browse the repository at this point in the history
  • Loading branch information
glemieux committed Nov 20, 2024
1 parent a1e1797 commit 589f263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radiation/TwoStreamMLPEMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ subroutine ZenithPrep(this,cosz_in)
call endrun(msg=errMsg(sourcefile, __LINE__))
end if
! Test to see if there is a singularity and make corrections if needed
if any((abs(Kb_sing(:) - Kb_eff)) < sing_tol) then
if (any((abs(Kb_sing(:) - Kb_eff)) < sing_tol)) then
Kb_eff = Kb_eff + sing_tol
is_sing = .true.
end if
Expand Down

0 comments on commit 589f263

Please sign in to comment.