UPP  11.0.0
 All Data Structures Files Functions Variables Pages
CALMICT.f File Reference

Subroutine that computes hydrometeors. More...

Go to the source code of this file.

Functions/Subroutines

subroutine calmict_new (P1D, T1D, Q1D, C1D, FI1D, FR1D, FS1D, CUREFL, QW1, QI1, QR1, QS1, DBZ1, DBZR1, DBZI1, DBZC1, NLICE1, NRAIN1)
 
subroutine calmict_old (P1D, T1D, Q1D, C1D, FI1D, FR1D, FS1D, CUREFL, QW1, QI1, QR1, QS1, DBZ1, DBZR1, DBZI1, DBZC1, NLICE1, NRAIN1)
 

Detailed Description

Subroutine that computes hydrometeors.

This routin computes the mixing ratios of cloud water, cloud ice, rain, and snow. The code is based on subroutines GSMDRIVE and GSMCOLUMN in the NMM model.

Parameters
[in]P1DPressure (Pa).
[in]T1DTemperature (K).
[in]Q1DSpecific humidity (kg/kg).
[in]C1DTotal condensate (CWM, kg/kg).
[in]FI1DF_ice (fraction of condensate in form of ice).
[in]FR1DF_rain (fraction of liquid water in form of rain).
[in]FS1DF_RimeF ("Rime Factor", ratio of total ice growth to deposition growth).
[in]CUREFLRadar reflectivity contribution from convection (mm**6/m**3).
[out]QW1Cloud water mixing ratio (kg/kg).
[out]QI1Cloud ice mixing ratio (kg/kg).
[out]QR1Rain mixing ratio (kg/kg).
[out]QS1"Snow" (precipitation ice) mixing ratio (kg/kg).
[out]DBZ1Equivalent radar reflectivity factor in dBZ; i.e., 10*LOG10(Z).
[out]DBZREquivalent radar reflectivity factor from rain in dBZ.
[out]DBZIEquivalent radar reflectivity factor from ice (all forms) in dBZ.
[out]DBZCEquivalent radar reflectivity factor from parameterized convection in dBZ.

Program history log:

Date Programmer Comments
2001-08-14 Yi Jin Initial
2002-02-11 Brad Ferrier Minor changes for consistency w/ NMM model
2004-11-10 Brad Ferrier Removed cloud fraction algorithm
2004-11-17 H Chuang WRF VERSION
2014-03-11 Brad Ferrier Created new & old versions of this subroutine to process new & old versions of the microphysics
2021-09-02 Bo Cui Decompose UPP in X direction
Author
Yi Jin W/NP2
Date
2001-08-14

Definition in file CALMICT.f.

Function/Subroutine Documentation

subroutine calmict_old ( real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  P1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  T1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  Q1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  C1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  FI1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  FR1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  FS1D,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(in)  CUREFL,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  QW1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  QI1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  QR1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  QS1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  DBZ1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  DBZR1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  DBZI1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  DBZC1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  NLICE1,
real, dimension(ista_2l:iend_2u,jsta_2l:jend_2u), intent(inout)  NRAIN1 
)

CALMICT_old computes hydrometeors from the older version of the microphysics.

This routin computes the mixing ratios of cloud water, cloud ice, rain, and snow. The code is based on option MP_PHYSICS==95 in the WRF namelist and option MICRO='fer' in NMMB configure files.

Parameters
[in]P1DPressure (Pa).
[in]T1DTemperature (K).
[in]Q1DSpecific humidity (kg/kg).
[in]C1DTotal condensate (CWM, kg/kg).
[in]FI1DF_ice (fraction of condensate in form of ice).
[in]FR1DF_rain (fraction of liquid water in form of rain).
[in]FS1DF_RimeF ("Rime Factor", ratio of total ice growth to deposition growth).
[in]CUREFLRadar reflectivity contribution from convection (mm**6/m**3).
[out]QW1Cloud water mixing ratio (kg/kg).
[out]QI1Cloud ice mixing ratio (kg/kg).
[out]QR1Rain mixing ratio (kg/kg).
[out]QS1"Snow" (precipitation ice) mixing ratio (kg/kg).
[out]DBZ1Equivalent radar reflectivity factor in dBZ; i.e., 10*LOG10(Z).
[out]DBZREquivalent radar reflectivity factor from rain in dBZ.
[out]DBZIEquivalent radar reflectivity factor from ice (all forms) in dBZ.
[out]DBZCEquivalent radar reflectivity factor from parameterized convection in dBZ.

Program history log:

Date Programmer Comments
2001-08-14 Yi Jin Initial
2002-02-11 Brad Ferrier Minor changes for consistency w/ NMM model
2004-11-10 Brad Ferrier Removed cloud fraction algorithm
2004-11-17 H Chuang WRF VERSION
2014-03-11 Brad Ferrier Created new & old versions of this subroutine to process new & old versions of the microphysics
Author
Yi Jin W/NP2
Date
2001-08-14

Definition at line 302 of file CALMICT.f.

References fpvs().

Referenced by mdlfld().