source: trunk/LMDZ.GENERIC/deftank/run.def.earth_hires @ 3725

Last change on this file since 3725 was 3725, checked in by emillour, 8 weeks ago

Generic PCM:
Change the way the rate of outputs for diagfi.nc files is specified:
IMPORTANT: Specifying "ecritphy" no longer possible and will trigger an error.
Use "diagfi_output_rate" to specify output rate (in physics steps) instead.
This should makes things (hopefully) clearer for users and also better
enforces a cleaner and clearer separation between dynamics and physics.
EM

File size: 2.7 KB
Line 
1#
2#-----------------------------------------------------------------------
3# run control parameters:                                         
4#------------------------------                                         
5
6# planet type
7planet_type = generic
8
9# Number of days to run model for
10  nday = 365
11
12# Number of dynamical steps per day (must be a multiple of iperiod)
13 day_step = 360
14
15# Apply a Matsuno step every iperiod dynamical step
16  iperiod=5
17
18# Control output information in the dynamics every iconser dynamical steps
19  iconser=120
20
21# Apply dissipation every idissip dynamical steps
22  idissip=1
23
24# dissipation operator to use (star or non-star)
25 lstardis=.true.
26
27# use hybrid vertical coordinate (else will use sigma levels)
28 hybrid=.true.
29
30# iterate lateral dissipation operator gradiv nitergdiv times
31nitergdiv=1
32
33# iterate lateral dissipation operator nxgradrot nitergrot times
34nitergrot=2
35
36# iterate lateral dissipation operator divgrad niterh times
37   niterh=2
38
39# time scale (s) for shortest wavelengths for u,v (gradiv)
40 tetagdiv=5400.
41
42# time scale (s) for shortest wavelengths for u,v (nxgradrot)
43 tetagrot=10000.
44
45# time scale (s) for shortest wavelengths for h (divgrad)
46 tetatemp=10000.
47
48# multiplicative constants for dissipation with altitude:
49# coefficient for middle atmosphere
50dissip_fac_mid = 2
51# coefficient for upper atmosphere
52dissip_fac_up = 10
53
54# coefficient for gamdissip                                           
55  coefdis=0.
56
57# time marching scheme (Matsuno if purmats is true, else Matsuno-Leapfrog)
58  purmats=.false.
59
60# run with (true) or without (false) physics
61   physic=.true.
62
63# call physics every iphysiq dynamical steps
64  iphysiq=5
65
66# Use a regular grid
67  grireg=.true.
68
69# longitude (degrees) of zoom center
70   clon=0.
71
72# latitude (degrees) of zoom center
73   clat=0.
74
75# enhancement factor of zoom, along longitudes
76  grossismx=1.
77
78# enhancement factor of zoom, along latitudes
79 grossismy=1.
80
81#  Use an hyperbolic function f(y) if .true., else use a sine
82  fxyhypb=.false.
83
84# extention along longitudes of zoom region (fraction of global domain)
85   dzoomx= 0.
86
87# extention along latitudes of zoom region (fraction of global domain)
88   dzoomy=0.
89
90# zoom stiffness along longitudes
91    taux=2.
92
93# zoom stiffness along latitudes
94    tauy=2.
95
96#  Function  f(y) as y = Sin(latitude) if = .true. ,  else  y = latitude
97  ysinus= .false.
98
99# Use a sponge layer
100  callsponge  = .true.
101 
102# Sponge layer extends over topmost nsponge layers
103  nsponge = 3
104
105# Sponge:  relaxed towards teta=teta_ave
106#        and mode0(u=v=0), mode1(u=u_ave,v=0), mode2(u=u_ave,v=v_ave)
107  mode_sponge= 2
108
109# Sponge layer time scale (s):  tetasponge
110  tetasponge = 50000
111
112# some definitions for the physics, in file 'callphys.def'
113INCLUDEDEF=callphys.def
Note: See TracBrowser for help on using the repository browser.