Ignore:
Timestamp:
Sep 28, 2017, 3:43:23 PM (7 years ago)
Author:
jvatant
Message:

Added the surface methane tank and put it in start files
--JVO

Location:
trunk/LMDZ.TITAN/libf/dynphy_lonlat/phytitan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/dynphy_lonlat/phytitan/newstart.F

    r1670 r1789  
    162162      real fact2
    163163
     164!     added by JVO for Titan
     165      REAL tankCH4(ngridmx)
    164166
    165167c sortie visu pour les champs dynamiques
     
    341343        CALL phyetat0(.true.,ngridmx,llm,fichnom,tab0,Lmodif,nsoilmx,
    342344     .        nqtot,day_ini,time,
    343      .        tsurf,tsoil,emis,q2,qsurf)
     345     .        tsurf,tsoil,emis,q2,qsurf,tankCH4)
    344346
    345347        ! copy albedo and soil thermal inertia on (local) physics grid
     
    12321234 999  continue
    12331235
    1234      
     1236
     1237c================================================================
     1238c   Initialisation for methane surface tank (added by JVO 2017)
     1239c================================================================
     1240      DO ig=1, ngridmx
     1241         tankCH4(ig)=2.0
     1242      ENDDO
    12351243
    12361244c=======================================================================
     
    13391347      call physdem1("restartfi.nc",nsoilmx,ngridmx,llm,nqtot,
    13401348     &                dtphys,real(day_ini),
    1341      &                tsurf,tsoil,emis,q2,qsurf)
     1349     &                tsurf,tsoil,emis,q2,qsurf,tankCH4)
    13421350
    13431351c=======================================================================
  • trunk/LMDZ.TITAN/libf/dynphy_lonlat/phytitan/start2archive.F

    r1722 r1789  
    8080      INTEGER*4 day_ini_fi
    8181
     82!     added by JVO for methane surface tank
     83      REAL tankCH4(ngridmx)
    8284
    8385c Variable naturelle / grille scalaire
     
    9193      REAL emisS(ip1jmp1)
    9294
     95!     added by JVO for methane surface tank
     96      REAL tankCH4S(ip1jmp1)
    9397
    9498c Variables intermediaires : vent naturel, mais pas coord scalaire
     
    219223      CALL phyetat0(.true.,ngridmx,llm,fichnom,0,Lmodif,nsoilmx,nqtot,
    220224     .      day_ini_fi,timefi,
    221      .      tsurf,tsoil,emis,q2,qsurf)
     225     .      tsurf,tsoil,emis,q2,qsurf,tankCH4)
    222226
    223227
     
    310314c q2 --> q2S
    311315c qsurf --> qsurfS
     316c tankCH4 --> tankCH4S
    312317c
    313318c-----------------------------------------------------------------------
     
    320325      call gr_fi_dyn(llm+1,ngridmx,iip1,jjp1,q2,q2S)
    321326      call gr_fi_dyn(nqtot,ngridmx,iip1,jjp1,qsurf,qsurfS)
     327      call gr_fi_dyn(1,ngridmx,iip1,jjp1,tankCH4,tankCH4S)
    322328
    323329c=======================================================================
     
    458464! Note: no need to write volcapa, it is stored in "controle" table
    459465
     466c-----------------------------------------------------------------
     467c Ecriture du champs  tankCH4
     468c-----------------------------------------------------------------
     469      call write_archive(nid,ntime,'tankCH4',
     470     &         'Depth of surface methane tank','m',2,tankCH4S)
    460471
    461472c Fin
Note: See TracChangeset for help on using the changeset viewer.