Changeset 4727 for LMDZ6/branches/LMDZ_ECRad/libf/dyn3d
- Timestamp:
- Oct 19, 2023, 4:02:57 PM (21 months ago)
- Location:
- LMDZ6/branches/LMDZ_ECRad
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/LMDZ_ECRad
- Property svn:mergeinfo changed
-
LMDZ6/branches/LMDZ_ECRad/libf/dyn3d/abort_gcm.F
r2100 r4727 12 12 USE ioipsl_getincom 13 13 #endif 14 15 #ifdef CPP_XIOS 16 ! ug Pour les sorties XIOS 14 ! ug Pour les sorties XIOS 17 15 USE wxios 18 #endif19 16 20 17 #include "iniprint.h" … … 34 31 write(lunout,*) 'in abort_gcm' 35 32 36 #ifdef CPP_XIOS 37 38 CALL wxios_close()39 #endif 33 IF (using_xios) THEN 34 !Fermeture propre de XIOS 35 CALL wxios_close() 36 ENDIF 40 37 41 38 #ifdef CPP_IOIPSL -
LMDZ6/branches/LMDZ_ECRad/libf/dyn3d/conf_gcm.F90
r4482 r4727 15 15 USE comconst_mod, ONLY: dissip_deltaz, dissip_factz, dissip_zref, & 16 16 iflag_top_bound, mode_top_bound, tau_top_bound, & 17 ngroup 17 ngroup, maxlatfilter 18 18 USE logic_mod, ONLY: fxyhypb, iflag_phys, ok_etat0, ok_gradsfile, & 19 19 ok_guide, ok_limit, ok_strato, purmats, read_start, & … … 310 310 CALL getin('dissip_deltaz',dissip_deltaz ) 311 311 CALL getin('dissip_zref',dissip_zref ) 312 313 ! maxlatfilter 314 maxlatfilter=-1.0 315 CALL getin('maxlatfilter',maxlatfilter) 316 if (maxlatfilter > 90) & 317 call abort_gcm("conf_gcm", 'maxlatfilter should be <=90', 1) 318 312 319 313 320 ! ngroup -
LMDZ6/branches/LMDZ_ECRad/libf/dyn3d/dynetat0.F90
r4482 r4727 161 161 ELSE 162 162 CALL msg('Tracer <'//TRIM(var)//'> is missing => initialized to its parent isotope concentration.', modname) 163 q(:,:,:,iq) = q(:,:,:,iqIsoPha(iName,iPhase)) 163 ! Camille 9 mars 2023: attention!! seuls les tags qui correspondent à 164 ! izone=izone_init (définie dans isotrac_mod) sont initialisés comme 165 ! les parents. Sinon, c'est nul. 166 ! j'ai fait ça en attendant, mais il faudrait initialiser proprement en 167 ! remplacant 1 par izone_init dans la ligne qui suit. 168 IF(tracers(iq)%iso_iZone == 1) THEN 169 q(:,:,:,iq) = q(:,:,:,iqIsoPha(iName,iPhase)) 170 ELSE 171 q(:,:,:,iq) = 0. 172 END IF 164 173 END IF 165 174 !-------------------------------------------------------------------------------------------------------------------------- -
LMDZ6/branches/LMDZ_ECRad/libf/dyn3d/gcm.F90
r4482 r4727 14 14 15 15 16 #ifdef CPP_XIOS 17 ! ug Pour les sorties XIOS 16 ! ug Pour les sorties XIOS 18 17 USE wxios 19 #endif20 18 21 19 USE filtreg_mod … … 156 154 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 157 155 158 #ifdef CPP_XIOS 159 CALL wxios_init("LMDZ")160 #endif 156 IF (using_xios) THEN 157 CALL wxios_init("LMDZ") 158 ENDIF 161 159 162 160 -
LMDZ6/branches/LMDZ_ECRad/libf/dyn3d/replay3d.F90
r4482 r4727 182 182 ! Initialisation de la parametrisation 183 183 !--------------------------------------------------------------------- 184 call get_ini_module184 call call_ini_replay 185 185 186 186 !---------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.