You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and thus the units for cmfmc in the snapshot are kg m-2 s-1.
In CCPPized ZM, the unit conversion is only done at the diagnostic output time in the zm_diagnostics scheme.
However, matching the output with the snapshots or for deep convection to work together with shallow convection requires that atmosphere_convective_mass_flux_due_to_deep_convection is in consistent units with the snapshot (kg m-2 s-1) and the shallow convective mass flux (also in kg m-2 s-1).
Thus, the unit conversion for atmosphere_convective_mass_flux_due_to_deep_convection should be moved from zm_diagnostics.F90 to zm_convr.F90 so that the units are passed consistently across schemes (CCPP cannot convert from hPa s-1 to kg m-2 s-1 on its own)
The text was updated successfully, but these errors were encountered:
Currently, the units for the deep convective mass flux in ZM is
hPa s-1
as output inzm_convr
CCPPized scheme:In current CAM, the deep convective mass flux (saved in the snapshot as
CMFMC
) is in the units ofkg m-2 s-1
. This is because:atmosphere_convective_mass_flux_due_to_deep_convection
, ormcon
orcmfmc
is first computed inzm_convr_run
with the units ofhPa s-1
.zm_conv_intr.F90
, it is converted tokg m-2 s-1
:this is the output argument for
zm_conv_tend
mcon
is the output argument used inconvect_deep_tend
inconvect_deep.F90
which is the output argument for
convect_deep_tend
and thus the units for
cmfmc
in the snapshot arekg m-2 s-1
.In CCPPized ZM, the unit conversion is only done at the diagnostic output time in the
zm_diagnostics
scheme.However, matching the output with the snapshots or for deep convection to work together with shallow convection requires that
atmosphere_convective_mass_flux_due_to_deep_convection
is in consistent units with the snapshot (kg m-2 s-1
) and the shallow convective mass flux (also inkg m-2 s-1
).Thus, the unit conversion for
atmosphere_convective_mass_flux_due_to_deep_convection
should be moved fromzm_diagnostics.F90
tozm_convr.F90
so that the units are passed consistently across schemes (CCPP cannot convert fromhPa s-1
tokg m-2 s-1
on its own)The text was updated successfully, but these errors were encountered: