Changeset 1415 for trunk/LMDZ.GENERIC
- Timestamp:
- Apr 14, 2015, 9:46:47 AM (10 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/newstart.F
r1403 r1415 15 15 c======================================================================= 16 16 17 use infotrac, only: in iadvtrac, nqtot, tname17 use infotrac, only: infotrac_init, nqtot, tname 18 18 USE tracer_h, ONLY: igcm_co2_ice, igcm_h2o_vap, igcm_h2o_ice 19 19 USE comsoil_h, ONLY: nsoilmx, layer, mlayer, inertiedat … … 25 25 ! USE ioipsl_getincom, only: getin 26 26 USE ioipsl_getincom_p, only: getin_p 27 use control_mod, only: day_step, iphysiq, anneeref 27 use control_mod, only: day_step, iphysiq, anneeref, planet_type 28 28 use phyredem, only: physdem0, physdem1 29 29 use iostart, only: open_startphy … … 198 198 call initcomgeomphy 199 199 ! Load tracer number and names: 200 call iniadvtrac(nqtot,numvanle) 200 ! call iniadvtrac(nqtot,numvanle) 201 call infotrac_init 201 202 ! allocate arrays 202 203 allocate(q(iip1,jjp1,llm,nqtot)) 203 204 allocate(qsurf(ngridmx,nqtot)) 205 206 planet_type="generic" 204 207 205 208 c======================================================================= … … 1637 1640 1638 1641 1639 CALL dynredem0("restart.nc",day_ini, anneeref,phis,nqtot)1640 CALL dynredem1("restart.nc",0.0,vcov,ucov,teta,q, nqtot,masse,ps)1642 CALL dynredem0("restart.nc",day_ini,phis) 1643 CALL dynredem1("restart.nc",0.0,vcov,ucov,teta,q,masse,ps) 1641 1644 C 1642 1645 C Ecriture etat initial physique … … 1646 1649 & nqtot,dtphys,real(day_ini),0.0, 1647 1650 & airefi,albfi,ithfi,zmea,zstd,zsig,zgam,zthe) 1648 call physdem1("restartfi.nc",nsoilmx,ngridmx,llm,nq ,1651 call physdem1("restartfi.nc",nsoilmx,ngridmx,llm,nqtot, 1649 1652 & dtphys,real(day_ini), 1650 1653 & tsurf,tsoil,emis,q2,qsurf, -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/start2archive.F
r1403 r1415 19 19 c======================================================================= 20 20 21 use infotrac, only: in iadvtrac, nqtot, tname21 use infotrac, only: infotrac_init, nqtot, tname 22 22 USE comsoil_h 23 23 USE comgeomfi_h, ONLY: lati, long, area … … 28 28 USE ioipsl_getincom 29 29 USE planete_mod, only: year_day 30 USE control_mod, only: planet_type 30 31 USE callkeys_mod, ONLY: ok_slab_ocean 31 32 use filtreg_mod, only: inifilr … … 154 155 IF (.not. ALLOCATED(area)) ALLOCATE(area(ngridmx)) 155 156 157 planet_type="generic" 158 156 159 c======================================================================= 157 160 c Lecture des donnees 158 161 c======================================================================= 159 162 ! Load tracer number and names: 160 call iniadvtrac(nqtot,numvanle) 163 ! call iniadvtrac(nqtot,numvanle) 164 call infotrac_init 161 165 162 166 ! allocate arrays: … … 168 172 169 173 fichnom = 'start.nc' 170 CALL dynetat0(fichnom, nqtot,vcov,ucov,teta,q,masse,174 CALL dynetat0(fichnom,vcov,ucov,teta,q,masse, 171 175 . ps,phis,timedyn) 172 176 -
trunk/LMDZ.GENERIC/libf/phystd/phyetat0.F90
r1384 r1415 378 378 write(*,*) "phyetat0: Failed loading <",trim(txt),">" 379 379 write(*,*) " ",trim(txt)," is set to zero" 380 qsurf(:,iq) = 0. 380 381 else 381 382 write(*,*) "phyetat0: Surface tracer <",trim(txt),"> range:", &
Note: See TracChangeset
for help on using the changeset viewer.