Changeset 1541 for trunk/LMDZ.MARS/libf/phymars/writediagfi.F
- Timestamp:
- Apr 17, 2016, 10:23:21 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/writediagfi.F
r1532 r1541 40 40 !================================================================= 41 41 use surfdat_h, only: phisfi 42 use comgeomphy, only: airephy42 use comgeomphy, only: cell_area 43 43 use time_phylmdz_mod, only: ecritphy, day_step, iphysiq, day_ini 44 44 USE mod_phys_lmdz_para, only : is_parallel, is_mpi_root, … … 118 118 !Sortie des variables au rythme voulu 119 119 120 irythme = int(ecritphy) ! sortie au rythme de ecritphy 121 ! irythme = iconser ! sortie au rythme des variables de controle 122 ! irythme = iphysiq ! sortie a tous les pas physique 123 ! irythme = iecri*day_step ! sortie au rythme des fichiers histoires 124 ! irythme = periodav*day_step ! sortie au rythme des fichiers histmoy 120 irythme = int(ecritphy) ! output rate set by ecritphy 125 121 126 122 !*************************************************************** … … 189 185 ! Gather phisfi() geopotential on physics grid 190 186 call Gather(phisfi,phisfi_glo) 191 ! Gather airephy() mesh area on physics grid192 call Gather( airephy,areafi_glo)187 ! Gather cell_area() mesh area on physics grid 188 call Gather(cell_area,areafi_glo) 193 189 #else 194 190 phisfi_glo(:)=phisfi(:) 195 areafi_glo(:)= airephy(:)191 areafi_glo(:)=cell_area(:) 196 192 #endif 197 193 … … 260 256 261 257 endif ! if (firstnom.eq.'1234567890') 262 263 if (klon_glo.eq.1) then264 ! in testphys1d, for the 1d version of the GCM, iphysiq and irythme265 ! are undefined; so set them to 1266 iphysiq=1267 irythme=1268 endif269 258 270 259 ! Increment time index 'zitau' if it is the "fist call" (at given time level)
Note: See TracChangeset
for help on using the changeset viewer.