Changeset 2173
- Timestamp:
- Nov 5, 2019, 10:44:00 AM (5 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2171 r2173 2771 2771 == 22/10/2019 == MV 2772 2772 Add z2sig.def.hr to "deftank" corresponding to the high vertical resolution with 177 levels from the surface to the exobase. 2773 2774 == 05/11/2019 == EM 2775 Update non orographic GW routine so that key parameter RUWMAX is read in 2776 from callphys.def -
trunk/LMDZ.MARS/libf/phymars/nonoro_gwd_ran_mod.F90
r2149 r2173 28 28 use comcstfi_h, only: g, pi, cpp, r 29 29 ! use comgeomfi_h, only: latitude 30 USE ioipsl_getin_p_mod, ONLY : getin_p 30 31 implicit none 31 32 … … 92 93 93 94 REAL RUW0(NW, KLON) ! Fluxes at launching level 94 REAL RUWMAX ! Max value95 REAL,SAVE :: RUWMAX ! Max value 95 96 INTEGER LAUNCH ! Launching altitude 96 97 REAL XLAUNCH ! Control the launching altitude … … 139 140 d_u_sav(:,:) = 0. 140 141 d_v_sav(:,:) = 0. 142 RUWMAX=1.E-4 143 CALL getin_p("nonoro_gwd_RUWMAX",RUWMAX) 144 write(*,*) "nonoro_gwd_ran: RUWMAX=",RUWMAX 141 145 firstcall=.false. 142 146 ENDIF … … 150 154 151 155 ! PARAMETERS CORRESPONDING TO V3: 152 RUWMAX = 1.e-4 ! best-case for MCS comparison 156 ! RUWMAX = 1.e-4 ! best-case for MCS comparison 157 ! RUWMAX = 5.e-6 153 158 ! RUWMAX = 1.e-3 154 159
Note: See TracChangeset
for help on using the changeset viewer.