- Timestamp:
- Aug 24, 2023, 11:40:30 AM (15 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/evol_h2o_ice_s_mod.F90
r2980 r3030 8 8 iim_input,jjm_input,ngrid,cell_area,STOPPING,nslope) 9 9 10 USE temps_mod_evol, ONLY: dt_pem11 use comslope_mod, ONLY: subslope_dist10 use temps_mod_evol, only: dt_pem 11 use comslope_mod, only: subslope_dist,def_slope_mean 12 12 use criterion_pem_stop_mod, only: criterion_waterice_stop 13 use comconst_mod,only: pi 13 14 14 15 IMPLICIT NONE … … 39 40 REAL :: pos_tend, neg_tend, real_coefficient,negative_part ! Variable to conserve water 40 41 REAL :: new_tendencies(ngrid,nslope) ! Tendencies computed in order to conserve water ice on the surface, only exchange between surface are done 41 42 42 43 !======================================================================= 43 44 … … 52 53 if (qsurf(i,islope).GT.0) then 53 54 if (tendencies_h2o_ice_phys(i,islope).GT.0) then 54 pos_tend=pos_tend+tendencies_h2o_ice_phys(i,islope)*cell_area(i)*subslope_dist(i,islope) 55 pos_tend=pos_tend+tendencies_h2o_ice_phys(i,islope)*cell_area(i)*subslope_dist(i,islope)/cos(def_slope_mean(islope)*pi/180.) 55 56 else 56 neg_tend=neg_tend-tendencies_h2o_ice_phys(i,islope)*cell_area(i)*subslope_dist(i,islope) 57 neg_tend=neg_tend-tendencies_h2o_ice_phys(i,islope)*cell_area(i)*subslope_dist(i,islope)/cos(def_slope_mean(islope)*pi/180.) 57 58 endif 58 59 endif -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3028 r3030 86 86 use control_mod, only: iphysiq, day_step, nsplit_phys 87 87 #else 88 use time_phylmdz_mod, only: daysec, iphysiq, day_step, dtphys88 use time_phylmdz_mod, only: iphysiq, day_step 89 89 #endif 90 90 use time_phylmdz_mod, only: daysec,dtphys 91 91 #ifdef CPP_1D 92 92 use regular_lonlat_mod, only: init_regular_lonlat
Note: See TracChangeset
for help on using the changeset viewer.