-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update surface net heat fluxes for AQM coupling #953
Conversation
dtsfci_cpl(i) = cp * rho * hflx_wat(i) ! sensible heat flux over open ocean | ||
dqsfci_cpl(i) = hvap * rho * evap_wat(i) ! latent heat flux over open ocean | ||
else ! use results from PBL scheme for 100% open ocean | ||
if (cplaqm) then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When running AQM, it only couples to ATM and ATM doesn't couple to Ocean or Ice model. I would suggest to make it simple by changing the code to:
if (cplaqm .and. .not. cplflx) then
do i = 1, im
dtsfci_cpl(i) = dtsfc1(i)*hffac(i)
dqsfci_cpl(i) = dqsfc1(i)
end do
end if
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to leave in place the ability to use AQM in fully coupled mode for future applications.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks OK to me if @ChunxiZhang-NOAA is happy with this.
@grantfirl I am ok with it. |
Closed in favor of #962 |
Update surface net heat fluxes for AQM coupling (Was #953)
This PR implements proper computation of surface net heat fluxes provided to the coupled NOAA Air Quality Model (AQM).
The update uses PBL-computed fluxes both for fractional and non-fractional grids unless
cplflx
is set to.true.
.Fixes #945.