Changeset 1541 for trunk/LMDZ.MARS/libf/phymars/writediagsoil.F90
- Timestamp:
- Apr 17, 2016, 10:23:21 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/writediagsoil.F90
r1532 r1541 13 13 14 14 use comsoil_h, only: nsoilmx, inertiedat 15 use comgeomphy, only: airephy15 use comgeomphy, only: cell_area 16 16 use time_phylmdz_mod, only: ecritphy, day_step, iphysiq 17 17 use mod_phys_lmdz_para, only : is_mpi_root, is_master, gather … … 102 102 ! Gather inertiedat() soil thermal inertia on physics grid 103 103 call Gather(inertiedat,inertiafi_glo) 104 ! Gather airephy() mesh area on physics grid105 call Gather( airephy,areafi_glo)104 ! Gather cell_area() mesh area on physics grid 105 call Gather(cell_area,areafi_glo) 106 106 #else 107 107 inertiafi_glo(:,:)=inertiedat(:,:) 108 areafi_glo(:)= airephy(:)108 areafi_glo(:)=cell_area(:) 109 109 #endif 110 110
Note: See TracChangeset
for help on using the changeset viewer.