Ignore:
Timestamp:
Apr 24, 2023, 6:11:11 PM (15 months ago)
Author:
evignon
Message:

modif for polar runs: control of the maximum latitude at which the polar filter is active (new key in .def files)
+ dependency of ratqs upon resolution (cell area)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/dyn3d/conf_gcm.F90

    r4470 r4519  
    1515  USE comconst_mod, ONLY: dissip_deltaz, dissip_factz, dissip_zref, &
    1616                          iflag_top_bound, mode_top_bound, tau_top_bound, &
    17                           ngroup
     17                          ngroup, maxlatfilter
    1818  USE logic_mod, ONLY: fxyhypb, iflag_phys, ok_etat0, ok_gradsfile, &
    1919                       ok_guide, ok_limit, ok_strato, purmats, read_start, &
     
    310310  CALL getin('dissip_deltaz',dissip_deltaz )
    311311  CALL getin('dissip_zref',dissip_zref )
     312
     313  ! maxlatfilter
     314  maxlatfilter=-1.0
     315  CALL getin('maxlatfilter',maxlatfilter)
     316  if (maxlatfilter > 90) &
     317       call abort_gcm("conf_gcm", 'maxlatfilter should be <=90', 1)
     318
    312319
    313320  ! ngroup
Note: See TracChangeset for help on using the changeset viewer.