Changeset 2715
- Timestamp:
- Nov 28, 2016, 4:02:59 PM (8 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/StratAer/calcaerosolstrato_rrtm.F90
r2690 r2715 3 3 USE infotrac, ONLY : nbtr 4 4 USE phys_state_var_mod, ONLY: tau_aero_sw_rrtm, piz_aero_sw_rrtm, cg_aero_sw_rrtm, tau_aero_lw_rrtm 5 USE phys_local_var_mod, ONLY: mdw, tausum_aero, tausum_strat, tau_strat_550, tau_strat_1020, p_tropopause5 USE phys_local_var_mod, ONLY: mdw, tausum_aero, tausum_strat, tau_strat_550, tau_strat_1020, stratomask 6 6 USE aero_mod 7 7 USE dimphy … … 102 102 DO i=1,klon 103 103 DO k=1,klev 104 IF ( pplay(i,k).LT.p_tropopause(i)) THEN104 IF (stratomask(i,k).GT.0.5) THEN 105 105 tausum_strat(i,1)=tausum_strat(i,1)+tau_strat_wave(i,k,2) !--550 nm 106 106 tausum_strat(i,2)=tausum_strat(i,2)+tau_strat_wave(i,k,5) !--1020 nm -
LMDZ5/trunk/libf/phylmd/stratosphere_mask.F90
r2536 r2715 28 28 USE dimphy 29 29 USE phys_local_var_mod, ONLY: stratomask 30 #ifdef CPP_StratAer 31 USE phys_local_var_mod, ONLY: p_tropopause 32 #endif 30 33 31 34 IMPLICIT NONE … … 89 92 ENDDO 90 93 91 !!--diagnostic not used for now 92 !!p_tropopause(:)=tp(:) 94 !--this is only diagnosedd in the case of StratAer 95 !--but it could be useful to LMDz 96 #ifdef CPP_StratAer 97 p_tropopause(:)=tp(:) 98 #endif 93 99 94 100 IF (ifil.gt.0) THEN
Note: See TracChangeset
for help on using the changeset viewer.