Changeset 1019 for trunk/LMDZ.COMMON/libf/dyn3d
- Timestamp:
- Aug 26, 2013, 9:21:41 AM (11 years ago)
- Location:
- trunk/LMDZ.COMMON/libf/dyn3d
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3d/advtrac.F90
r270 r1019 203 203 if (countcfl==day_step) then 204 204 do l=1,llm 205 write(lunout,*) 'L, CFL max '&206 ,l,maxval(cflx(:,l)),maxval(cfly(:,l)),maxval(cflz(:,l))205 write(lunout,*) 'L, CFL[xyz]max:', l, cflxmax(l), cflymax(l), & 206 cflzmax(l) 207 207 enddo 208 208 countcfl=0 -
trunk/LMDZ.COMMON/libf/dyn3d/ce0l.F90
r776 r1019 20 20 USE comgeomphy 21 21 USE infotrac 22 USE indice_sol_mod 22 23 23 24 #ifdef CPP_IOIPSL … … 36 37 #include "dimensions.h" 37 38 #include "paramet.h" 38 #include "indicesol.h"39 !#include "indicesol.h" 39 40 #include "iniprint.h" 40 41 #include "temps.h" -
trunk/LMDZ.COMMON/libf/dyn3d/comvert.h
r841 r1019 23 23 real bps ! hybrid sigma contribution at mid-layers 24 24 real scaleheight ! atmospheric (reference) scale height (km) 25 real pseudoalt ! for planets 25 real pseudoalt ! pseudo-altitude of model levels (km), based on presnivs(), 26 ! preff and scaleheight 26 27 27 28 integer disvert_type ! type of vertical discretization: -
trunk/LMDZ.COMMON/libf/dyn3d/gcm.F
r1017 r1019 13 13 #endif 14 14 15 16 #ifdef CPP_XIOS 17 ! ug Pour les sorties XIOS 18 USE wxios 19 #endif 20 15 21 USE filtreg_mod 16 22 USE infotrac 17 23 USE control_mod 18 24 use cpdet_mod, only: ini_cpdet 25 26 #ifdef INCA 27 ! Only INCA needs these informations (from the Earth's physics) 28 USE indice_sol_mod 29 #endif 19 30 20 31 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! … … 81 92 #ifdef INCA 82 93 ! Only INCA needs these informations (from the Earth's physics) 83 #include "indicesol.h"94 !#include "indicesol.h" 84 95 #endif 85 96 … … 173 184 ! CALL defrun( 99, .TRUE. , clesphy0 ) 174 185 !#endif 186 187 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 188 ! Initialisation de XIOS 189 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 190 191 #ifdef CPP_XIOS 192 CALL wxios_init("LMDZ") 193 #endif 194 175 195 176 196 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -
trunk/LMDZ.COMMON/libf/dyn3d/inigeom.F
r1 r1019 426 426 radclatm = 0.5* rad * coslatm 427 427 c 428 ai14 = un4rad2 * coslatp * yprp 429 ai23 = un4rad2 * coslatm * yprm 428 430 DO 32 i = 1,iim 429 431 xprp = xprimp025( i ) 430 432 xprm = xprimm025( i ) 431 433 432 ai14 = un4rad2 * coslatp * yprp433 ai23 = un4rad2 * coslatm * yprm434 434 aireij1 ( i,j ) = ai14 * xprp 435 435 aireij2 ( i,j ) = ai23 * xprp
Note: See TracChangeset
for help on using the changeset viewer.