- Timestamp:
- Apr 8, 2016, 4:57:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/start2archive.F
r1478 r1538 19 19 c======================================================================= 20 20 21 use ioipsl_getin_p_mod, only: getin_p 21 22 use infotrac, only: infotrac_init, nqtot, tname 22 23 USE comsoil_h … … 69 70 c ------------------------------------ 70 71 REAL tsurf(ngridmx) ! Surface temperature 71 REAL tsoil(ngridmx,nsoilmx) ! Soil temperature72 REAL,ALLOCATABLE :: tsoil(:,:) ! Soil temperature 72 73 REAL co2ice(ngridmx) ! CO2 ice layer 73 74 REAL q2(ngridmx,llm+1) … … 93 94 REAL T(ip1jmp1,llm),us(ip1jmp1,llm),vs(ip1jmp1,llm) 94 95 REAL tsurfS(ip1jmp1) 95 REAL tsoilS(ip1jmp1,nsoilmx)96 REAL ithS(ip1jmp1,nsoilmx) ! Soil Thermal Inertia96 REAL,ALLOCATABLE :: tsoilS(:,:) 97 REAL,ALLOCATABLE :: ithS(:,:) ! Soil Thermal Inertia 97 98 REAL co2iceS(ip1jmp1) 98 99 REAL q2S(ip1jmp1,llm+1) … … 147 148 CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) 148 149 call initcomgeomphy 150 151 ! get value of nsoilmx (default is set in comsoil_h) 152 call getin_p("nsoilmx",nsoilmx) 153 154 ! allocate some local arrays now that we know all dimensions 155 allocate(tsoil(ngridmx,nsoilmx)) 156 allocate(tsoilS(ip1jmp1,nsoilmx)) 157 allocate(ithS(ip1jmp1,nsoilmx)) 149 158 150 159 ! ALLOCATE ARRAYS IN comgeomfi_h (usually done in inifis)
Note: See TracChangeset
for help on using the changeset viewer.