43 integer,
private :: atmos_phy_sf_flg_mom_flux = 0
47 real(RP),
private,
parameter :: atmos_phy_sf_u_maxm = 100.0_rp
48 real(RP),
private :: atmos_phy_sf_u_minm = 0.0_rp
49 real(RP),
private,
parameter :: atmos_phy_sf_cm_max = 2.5e-3_rp
50 real(RP),
private :: atmos_phy_sf_cm_min = 1.0e-5_rp
52 real(RP),
private :: atmos_phy_sf_const_ustar = 0.25_rp
53 real(RP),
private :: atmos_phy_sf_const_cm = 0.0011_rp
54 real(RP),
private :: atmos_phy_sf_const_sh = 15.0_rp
55 real(RP),
private :: atmos_phy_sf_const_lh = 115.0_rp
57 logical,
private :: atmos_phy_sf_flg_sh_diurnal = .false.
58 real(RP),
private :: atmos_phy_sf_const_freq = 24.0_rp
69 namelist / param_atmos_phy_sf_const / &
70 atmos_phy_sf_flg_mom_flux, &
71 atmos_phy_sf_u_minm, &
72 atmos_phy_sf_cm_min, &
73 atmos_phy_sf_const_ustar, &
74 atmos_phy_sf_const_cm, &
75 atmos_phy_sf_const_sh, &
76 atmos_phy_sf_const_lh, &
77 atmos_phy_sf_flg_sh_diurnal, &
78 atmos_phy_sf_const_freq
84 log_info(
"ATMOS_PHY_SF_const_setup",*)
'Setup' 85 log_info(
"ATMOS_PHY_SF_const_setup",*)
'Constant flux' 89 read(
io_fid_conf,nml=param_atmos_phy_sf_const,iostat=ierr)
91 log_info(
"ATMOS_PHY_SF_const_setup",*)
'Not found namelist. Default used.' 92 elseif( ierr > 0 )
then 93 log_error(
"ATMOS_PHY_SF_const_setup",*)
'Not appropriate names in namelist PARAM_ATMOS_PHY_SF_CONST. Check!' 96 log_nml(param_atmos_phy_sf_const)
104 IA, IS, IE, JA, JS, JE, &
105 ATM_W, ATM_U, ATM_V, ATM_TEMP, &
107 SFLX_MW, SFLX_MU, SFLX_MV, SFLX_SH, SFLX_LH, &
113 hydrometeor_lhv => atmos_hydrometeor_lhv
117 integer,
intent(in) :: IA, IS, IE
118 integer,
intent(in) :: JA, JS, JE
120 real(RP),
intent(in) :: ATM_W (ia,ja)
121 real(RP),
intent(in) :: ATM_U (ia,ja)
122 real(RP),
intent(in) :: ATM_V (ia,ja)
123 real(RP),
intent(in) :: ATM_TEMP(ia,ja)
124 real(RP),
intent(in) :: ATM_Z1 (ia,ja)
125 real(RP),
intent(in) :: SFC_DENS(ia,ja)
127 real(RP),
intent(out) :: SFLX_MW(ia,ja)
128 real(RP),
intent(out) :: SFLX_MU(ia,ja)
129 real(RP),
intent(out) :: SFLX_MV(ia,ja)
130 real(RP),
intent(out) :: SFLX_SH(ia,ja)
131 real(RP),
intent(out) :: SFLX_LH(ia,ja)
132 real(RP),
intent(out) :: SFLX_QV(ia,ja)
133 real(RP),
intent(out) :: U10 (ia,ja)
134 real(RP),
intent(out) :: V10 (ia,ja)
136 real(RP) :: ATM_Uabs(ia,ja)
138 real(RP) :: Cm(ia,ja)
141 real(RP) :: modulation
142 real(RP) :: LHV(ia,ja)
147 log_progress(*)
'atmosphere / physics / surface flux / const' 152 atm_uabs(i,j) = min( atmos_phy_sf_u_maxm, max( atmos_phy_sf_u_minm, &
153 sqrt( atm_w(i,j)**2 + atm_u(i,j)**2 + atm_v(i,j)**2 ) ) )
157 if ( atmos_phy_sf_flg_mom_flux == 0 )
then 161 cm(i,j) = atmos_phy_sf_const_cm
164 elseif( atmos_phy_sf_flg_mom_flux == 1 )
then 168 cm(i,j) = ( atmos_phy_sf_const_ustar / atm_uabs(i,j) )**2
169 cm(i,j) = min( max( cm(i,j), atmos_phy_sf_cm_min ), atmos_phy_sf_cm_max )
179 sflx_mw(i,j) = -cm(i,j) * atm_uabs(i,j) * sfc_dens(i,j) * atm_w(i,j)
180 sflx_mu(i,j) = -cm(i,j) * atm_uabs(i,j) * sfc_dens(i,j) * atm_u(i,j)
181 sflx_mv(i,j) = -cm(i,j) * atm_uabs(i,j) * sfc_dens(i,j) * atm_v(i,j)
187 if ( atmos_phy_sf_flg_sh_diurnal )
then 188 modulation = sin( 2.0_rp * pi *
time_nowsec / 3600.0_rp / atmos_phy_sf_const_freq )
196 sflx_sh(i,j) = atmos_phy_sf_const_sh * modulation
197 sflx_lh(i,j) = atmos_phy_sf_const_lh
202 call hydrometeor_lhv( &
203 ia, is, ie, ja, js, je, &
210 sflx_qv(i,j) = sflx_lh(i,j) / lhv(i,j)
219 r10 = 10.0_rp / atm_z1(i,j)
221 u10(i,j) = r10 * atm_u(i,j)
222 v10(i,j) = r10 * atm_v(i,j)
real(dp), public time_nowsec
subday part of current time [sec]
integer, public io_fid_conf
Config file ID.
subroutine, public atmos_phy_sf_const_flux(IA, IS, IE, JA, JS, JE, ATM_W, ATM_U, ATM_V, ATM_TEMP, ATM_Z1, SFC_DENS, SFLX_MW, SFLX_MU, SFLX_MV, SFLX_SH, SFLX_LH, SFLX_QV, U10, V10)
Constant flux.
module atmosphere / hydrometeor
subroutine, public prc_abort
Abort Process.
subroutine, public atmos_phy_sf_const_setup
Setup.
module atmosphere / physics / surface / const
real(rp), public const_pi
pi