Skip to content

Commit

Permalink
Add negative sign to make UpwardsMassFlux really positive = "up"
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanjianz authored and lizziel committed Dec 4, 2024
1 parent 5407c9f commit e02ec44
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -953,8 +953,9 @@ subroutine prepare_massflux_exports(IMPORT, EXPORT, PLE, dt, RC)
! Get vertical mass flux
call fv_getVerticalMassFlux(MFX_EXPORT, MFY_EXPORT, UpwardsMassFlux, dt)

! Flip vertical so that GCHP diagnostic is positive="up"
UpwardsMassFlux(:,:,:) = UpwardsMassFlux(:,:,LM:0:-1)/dt
! Flip vertical so that GCHP diagnostic level is follwing GEOS-Chem convetion
! Add negative sign to make positive = "up"
UpwardsMassFlux(:,:,:) = -UpwardsMassFlux(:,:,LM:0:-1)/dt
end if

! nullify pointers
Expand Down

0 comments on commit e02ec44

Please sign in to comment.