Changeset 2455 for trunk/MESOSCALE


Ignore:
Timestamp:
Feb 16, 2021, 12:50:59 AM (4 years ago)
Author:
aslmd
Message:

MESOSCALE Mars: a quick fix for mesoscale interface to account for the addition of parent/child tracers capability in r2332. we provide dummy settings (all tracers are parents without children) so that the model compiles and runs, an interface for parent/child isotope tracers between WRF and the Mars physics will need to be properly implemented in the future.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/phys/dynphy_wrf_mars_lmd_new/iniphysiq_mod.F

    r2454 r2455  
    3636real,intent(in) :: piphysiq   ! call physics every piphysiq dynamical timesteps
    3737
     38! isotopes
     39INTEGER :: nqperes
     40INTEGER, ALLOCATABLE, DIMENSION(:) :: nqfils
     41
     42! isotopes variables initialisation
     43! -- for the moment, interface with dynamics is inactive
     44! -- all tracers are parents with no children
     45nqperes=nq
     46allocate(nqfils(nq))
     47nqfils(:)=0
     48
    3849! copy some fundamental parameters to physics
    3950! and do some initializations
     
    4657call phys_state_var_init(ngrid,nlayer,nq, traceurs, &
    4758                         pdayref,phour_ini,punjours,zdt_split, &
    48                          prad,pg,pr,pcpp)
     59                         prad,pg,pr,pcpp, &
     60                         nqperes,nqfils)
    4961
    5062!! read callphys.def
Note: See TracChangeset for help on using the changeset viewer.