Skip to content

Commit

Permalink
Fix bug in cgs to mks conversion for tracer field
Browse files Browse the repository at this point in the history
  • Loading branch information
JorgSchwinger committed Apr 9, 2024
1 parent ff4cb9b commit 178839e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cesm/thermf_cesm.F
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,8 @@ subroutine thermf_cesm(m,n,mm,nn,k1m,k1n)
do j=1,jj
do l=1,isp(j)
do i=max(1,ifp(j,l)),min(ii,ilp(j,l))
trflx(nt,i,j)=-(trflx(nt,i,j)+trflxc)*L_mks2cgs
trflx(nt,i,j)=-(trflx(nt,i,j)+trflxc)
. *(kg2g*(M_mks2cgs/L_mks2cgs**2))
enddo
enddo
enddo
Expand Down

0 comments on commit 178839e

Please sign in to comment.