Skip to content

Commit

Permalink
add yrflag=4 logic for diags in thermf.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
abozec committed May 3, 2019
1 parent 9f545fd commit 7d41316
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion thermf.F90
Original file line number Diff line number Diff line change
Expand Up @@ -998,8 +998,10 @@ subroutine thermf(m,n, dtime)
secpyr=360.00d0*86400.0d0
elseif (yrflag.lt.3) then
secpyr=366.00d0*86400.0d0
elseif (yrflag.ge.3) then
elseif (yrflag.eq.3) then
secpyr=365.25d0*86400.0d0
elseif (yrflag.eq.4) then
secpyr=365.00d0*86400.0d0
endif
if (mnproc.eq.1) then
write (lp,'(i9,a,2f10.3)') &
Expand Down

0 comments on commit 7d41316

Please sign in to comment.