Changeset 3080


Ignore:
Timestamp:
Oct 10, 2023, 4:02:50 PM (14 months ago)
Author:
emillour
Message:

Mars PCM: follow-up of r3078 which broke the 1D model.
Also added initialisation of non-oro GW tendencies stored in
startfi.nc when in 1D.
EM+JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90

    r3072 r3080  
    2525use regular_lonlat_mod,       only: init_regular_lonlat
    2626use mod_interface_dyn_phys,   only: init_interface_dyn_phys
    27 use geometry_mod,             only: init_geometry
     27use geometry_mod,             only: init_geometry, init_geometry_cell_area_for_outputs
    2828use dimphy,                   only: init_dimphy
    2929use comgeomfi_h,              only: sinlat, ini_fillgeom
     
    3838use phys_state_var_init_mod,  only: phys_state_var_init
    3939use turb_mod,                 only: q2
     40use nonoro_gwd_ran_mod, only: du_nonoro_gwd, dv_nonoro_gwd
    4041! Mostly for XIOS outputs:
    4142use mod_const_mpi,            only: COMM_LMDZ
     
    429430call init_regular_lonlat(1,1,longitude,latitude,(/0.,0./),(/0.,0./))
    430431call init_geometry(1,longitude,latitude,(/0.,0.,0.,0./),(/0.,0.,0.,0./),cell_area)
     432call init_geometry_cell_area_for_outputs(1,cell_area)
    431433! Ehouarn: init_vertial_layers called later (because disvert not called yet)
    432434!      call init_vertical_layers(nlayer,preff,scaleheight,
     
    503505zgam(1) = 0.
    504506zthe(1) = 0.
     507
     508! For the non-orographic gravity waves scheme
     509du_nonoro_gwd(1,:)=0
     510dv_nonoro_gwd(1,:)=0
    505511
    506512! For the slope wind scheme
Note: See TracChangeset for help on using the changeset viewer.