Changeset 5364 for LMDZ6/trunk/libf
- Timestamp:
- Dec 3, 2024, 8:37:58 AM (13 days ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/clesphys_mod_h.f90
r5282 r5364 14 14 , f_cdrag_ter, f_cdrag_oce, f_rugoro, z0min, tau_gl & 15 15 , min_wind_speed, f_gust_wk, f_gust_bl, f_qsat_oce, f_z0qh_oce & 16 , z0m_seaice, z0h_seaice, z0m_landice, z0h_landice&16 , z0m_seaice, z0h_seaice, z0m_landice, ratio_z0hz0m_landice & 17 17 , freq_outNMC, freq_calNMC & 18 18 , lonmin_ins, lonmax_ins, latmin_ins, latmax_ins & … … 105 105 REAL min_wind_speed, f_gust_wk, f_gust_bl, f_qsat_oce, f_z0qh_oce 106 106 REAL z0m_seaice, z0h_seaice 107 REAL z0m_landice, z0h_landice107 REAL z0m_landice, ratio_z0hz0m_landice 108 108 INTEGER iflag_gusts, iflag_z0_oce 109 109 … … 171 171 !$OMP , f_cdrag_ter, f_cdrag_oce, f_rugoro, z0min, tau_gl & 172 172 !$OMP , min_wind_speed, f_gust_wk, f_gust_bl, f_qsat_oce, f_z0qh_oce & 173 !$OMP , z0m_seaice, z0h_seaice, z0m_landice, z0h_landice&173 !$OMP , z0m_seaice, z0h_seaice, z0m_landice, ratio_z0hz0m_landice & 174 174 !$OMP , freq_outNMC, freq_calNMC & 175 175 !$OMP , lonmin_ins, lonmax_ins, latmin_ins, latmax_ins & -
LMDZ6/trunk/libf/phylmd/conf_phys_m.f90
r5309 r5364 133 133 REAL, SAVE :: f_rugoro_omp , z0min_omp 134 134 REAL, SAVE :: z0m_seaice_omp,z0h_seaice_omp 135 REAL, SAVE :: z0m_landice_omp, z0h_landice_omp135 REAL, SAVE :: z0m_landice_omp,ratio_z0hz0m_landice_omp 136 136 REAL, SAVE :: min_wind_speed_omp,f_gust_wk_omp,f_gust_bl_omp,f_qsat_oce_omp, f_z0qh_oce_omp 137 137 INTEGER, SAVE :: iflag_gusts_omp,iflag_z0_oce_omp … … 1947 1947 1948 1948 z0m_landice_omp = 0.001 ; CALL getin('z0m_landice',z0m_landice_omp) 1949 z0h_landice_omp = 0.001 ; CALL getin('z0h_landice',z0h_landice_omp)1949 ratio_z0hz0m_landice_omp = 1. ; CALL getin('ratio_z0hz0m_landice',ratio_z0hz0m_landice_omp) 1950 1950 1951 1951 f_rugoro_omp = 0. … … 2504 2504 z0h_seaice=z0h_seaice_omp 2505 2505 z0m_landice=z0m_landice_omp 2506 z0h_landice=z0h_landice_omp2506 ratio_z0hz0m_landice=ratio_z0hz0m_landice_omp 2507 2507 2508 2508 f_rugoro=f_rugoro_omp -
LMDZ6/trunk/libf/phylmd/surf_landice_mod.F90
r5285 r5364 448 448 if (z0m_landice .GT. 0.) then 449 449 z0m(1:knon) = z0m_landice 450 z0h(1:knon) = z0 h_landice450 z0h(1:knon) = z0m_landice*ratio_z0hz0m_landice 451 451 else 452 452 ! parameterization of z0=f(T) following measurements in Adelie Land by Amory et al 2017
Note: See TracChangeset
for help on using the changeset viewer.