Skip to content

Commit fbfd8bb

Browse files
committed
fix line in SHOC where a tracer was being updated directly
1 parent b6ef6af commit fbfd8bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

physics/PBL/SHOC/shoc.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ subroutine shoc_run (nx, nzm, tcr, tcrf, con_cp, con_g, con_hvap, con_hfus, con_
166166
do k=1,nzm
167167
do i=1,nx
168168
ten_q(i,k,ntlnc) = (ncpl(i,k) - gq0(i,k,ntlnc))/dtp
169-
gq0(i,k,ntinc) = ncpi(i,k)
169+
ten_q(i,k,ntinc) = (ncpi(i,k) - gq0(i,k,ntinc))/dtp
170170
enddo
171171
enddo
172172
endif

0 commit comments

Comments
 (0)