Skip to content

Commit

Permalink
Edit notes
Browse files Browse the repository at this point in the history
  • Loading branch information
josephzhang8 committed Oct 3, 2019
1 parent 5888135 commit 2138e77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Hydro/misc_subs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ subroutine other_hot_init(time)
!$OMP parallel do default(shared) private(i)
!If nws=3, sflux is init'ed as 0
do i=1,npa
sflux(i)=-fluxsu(i)-fluxlu(i)-(hradu(i)-hradd(i))
sflux(i)=-fluxsu(i)-fluxlu(i)-(hradu(i)-hradd(i)) !junk at dry nodes
!fluxprc is net flux P-E if impose_net_flux/=0
enddo
!$OMP end parallel do
Expand Down
2 changes: 1 addition & 1 deletion src/Hydro/schism_step.F90
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ subroutine schism_step(it)

!$OMP parallel do default(shared) private(i)
do i=1,npa
sflux(i)=-fluxsu(i)-fluxlu(i)-(hradu(i)-hradd(i))
sflux(i)=-fluxsu(i)-fluxlu(i)-(hradu(i)-hradd(i)) !junk at dry nodes
if(impose_net_flux/=0) then
sflux(i)=hradd(i)
!fluxprc is net P-E
Expand Down

0 comments on commit 2138e77

Please sign in to comment.