- Timestamp:
- Sep 22, 2025, 3:06:26 PM (2 months ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
-
clesphys_mod_h.f90 (modified) (3 diffs)
-
physiq_mod.F90 (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/clesphys_mod_h.f90
r5813 r5825 51 51 , iflag_thermals, nsplit_thermals & 52 52 , iflag_physiq, ok_3Deffect, ok_water_mass_fixer & 53 , ok_mass_dtcon, ok_mass_dqcon, ok_mass_duvcon, iflag_tropo 53 , ok_mass_dtcon, ok_mass_dqcon, ok_mass_duvcon, iflag_tropopause_height 54 54 55 55 … … 158 158 159 159 ! flag pour le choix du calcul de tropopause pour l'ozone 160 INTEGER :: iflag_tropo 160 INTEGER :: iflag_tropopause_height 161 161 162 162 … … 208 208 !$OMP , iflag_thermals, nsplit_thermals & 209 209 !$OMP , iflag_physiq, ok_3Deffect, ok_water_mass_fixer & 210 !$OMP , ok_mass_dtcon, ok_mass_dqcon, ok_mass_duvcon, iflag_tropo )210 !$OMP , ok_mass_dtcon, ok_mass_dqcon, ok_mass_duvcon, iflag_tropopause_height ) 211 211 212 212 END MODULE clesphys_mod_h -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r5822 r5825 1521 1521 ok_water_mass_fixer=.FALSE. ! OB: by default we do not apply the mass fixer 1522 1522 CALL getin_p('ok_water_mass_fixer',ok_water_mass_fixer) 1523 iflag_tropo = 0 ! IM: iflag_tropo = 0 => PV tropopause; iflag_tropo=1 => LR tropopause1524 CALL getin_p('iflag_tropo ', iflag_tropo)1523 iflag_tropopause_height = 1 ! IM: iflag_tropopause_height = 0 => PV tropopause; iflag_tropopause_height=1 => LR tropopause 1524 CALL getin_p('iflag_tropopause_height', iflag_tropopause_height) 1525 1525 IF (CPPKEY_DUST) THEN 1526 1526 IF (iflag_phytrac.EQ.0) THEN … … 2688 2688 IF(adjust_tropopause) THEN 2689 2689 CALL stratosphere_mask(missing_val, pphis, t_seri, pplay, latitude_deg) 2690 IF(iflag_tropo .EQ.0) THEN2690 IF(iflag_tropopause_height.EQ.0) THEN 2691 2691 dyntropo=dyn_tropopause(t_seri, ztsol, paprs, pplay, rot) 2692 ELSEIF(iflag_tropo .EQ.1) THEN2692 ELSEIF(iflag_tropopause_height.EQ.1) THEN 2693 2693 dyntropo=p_tropopause 2694 2694 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.
