Changeset 1542 for trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90
- Timestamp:
- Apr 18, 2016, 8:45:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90
r1538 r1542 13 13 use datafile_mod, only: datadir 14 14 use comdiurn_h, only: sinlat, coslat, sinlon, coslon 15 use comgeomfi_h, only: long, lati, area,totarea, totarea_planet15 use comgeomfi_h, only: totarea, totarea_planet 16 16 use comsoil_h, only: ini_comsoil_h, nsoilmx, lay1_soil, alpha_soil 17 17 use time_phylmdz_mod, only: ecritphy,day_step,iphysiq, & … … 710 710 ! ------------------------ 711 711 712 ! ALLOCATE ARRAYS IN comgeomfi_h 713 IF (.not. ALLOCATED(lati)) ALLOCATE(lati(ngrid)) 714 IF (.not. ALLOCATED(long)) ALLOCATE(long(ngrid)) 715 IF (.not. ALLOCATED(area)) ALLOCATE(area(ngrid)) 716 717 CALL SCOPY(ngrid,plon,1,long,1) 718 CALL SCOPY(ngrid,plat,1,lati,1) 719 CALL SCOPY(ngrid,parea,1,area,1) 720 totarea=SSUM(ngrid,area,1) 721 call planetwide_sumval(area,totarea_planet) 712 ! Initializations for comgeomfi_h 713 totarea=SSUM(ngrid,parea,1) 714 call planetwide_sumval(parea,totarea_planet) 722 715 723 716 !! those are defined in comdiurn_h.F90
Note: See TracChangeset
for help on using the changeset viewer.