Ignore:
Timestamp:
Jan 16, 2014, 9:49:42 AM (11 years ago)
Author:
slebonnois
Message:

SL: update for tracers management in phytrac, Venus

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.VENUS/libf/phyvenus/physiq.F

    r1120 r1160  
    669669
    670670      if (iflag_trac.eq.1) then
    671       call phytrac (
    672      I                   itap, gmtime,
    673      I                   debut,lafin,
    674      I                   nqmax,
    675      I                   nlon,nlev,dtime,
    676      I                   u,v,t,paprs,pplay,
    677      I                   rlatd,
    678      I                   rlond,presnivs,pphis,pphi,
    679      I                   falbe,
     671
     672       if (tr_scheme.eq.1) then
     673! Case 1: pseudo-chemistry with relaxation toward fixed profile
     674         call phytrac_relax (debut,lafin,nqmax,
     675     I                   nlon,nlev,dtime,pplay,
    680676     O                   tr_seri)
     677
     678       elseif (tr_scheme.eq.2) then
     679! Case 2: surface emission
     680! For the moment, inspired from Mars version
     681! However, the variable 'source' could be used in physiq
     682! so the call to phytrac_emiss could be to initialise it.
     683         call phytrac_emiss ( (rjourvrai+gmtime)*RDAY,
     684     I                   debut,lafin,nqmax,
     685     I                   nlon,nlev,dtime,paprs,
     686     I                   rlatd,rlond,
     687     O                   tr_seri)
     688       elseif (tr_scheme.eq.3) then
     689! Case 3: Full chemistry
     690!        call phytrac_chem ( ?? )
     691         print*,"Chemistry not yet implemented..."
     692         print*,"See Aurelien Stolzenbach"
     693       endif
    681694      endif
    682695
Note: See TracChangeset for help on using the changeset viewer.