source: trunk/LMDZ.PLUTO/deftank/dynamico/file_def_physics.xml @ 3789

Last change on this file since 3789 was 3698, checked in by emillour, 10 months ago

Pluto PCM:
Some fixes to enable runnnig with dynamico:

  • add "strictboundcorrk" flag in callcorrk_pluto to enable running even if outside of kmatrix temperatures (when strictboundcorrk=.true.)
  • add premature exiting of writediagsoil if not with lon-lat grid
  • while at it, turned surfprop.F90 into a module
  • in physiq, enforce the possibility to output subsurface-related field in most cases, not only when "fast=.true."
  • adapt reference xml files: subsurface quantities need to be defined on a dedicated grid, otherwise XIOS will generate misleading garbage values. Updated files are put in "deftank/dynamico" for now.

EM

File size: 5.1 KB
Line 
1<!-- =================================================================== -->
2<!-- file_def_physics.xml                                                -->
3<!-- Definition of output files for Generic PCM physics                  -->
4<!-- =================================================================== -->
5
6    <file_definition>
7
8        <!-- Instantaneous outputs; Here output_freq in physics time steps -->
9        <!--
10           1 ts == 1 physical ts
11           if physical ts is half a day,
12           10ts   below means every 5 days
13           2000ts below means every 1000 days
14          -->
15        <file id="histins"
16              name="Xhistins"
17              output_freq="20ts"
18              sync_freq="20ts"
19              type="one_file"
20              time_units="days"
21              enabled="true">
22
23
24            <!-- VARS 0D -->
25            <field_group operation="instant"
26                         grid_ref="scalarpoint"
27                         freq_op="1ts">
28                <field field_ref="Ls" />
29            </field_group>
30
31            <!--<field_group domain_ref="dom_glo"> -->
32            <!--<field_group grid_ref="grid_2D_out">-->
33            <!-- toggle domain_ref to output on native or lon-lat domain -->
34
35              <!-- VARS 2D -->
36              <field_group operation="instant" prec="4"
37                           grid_ref="grid_2D_out"
38                           freq_op="1ts">
39                  <field field_ref="area" operation="once" />
40                  <field field_ref="ps" enabled="true" />
41                  <field field_ref="tsurf" enabled="true" />
42                  <field field_ref="ALB" enabled="true" />
43                  <field field_ref="emis" enabled="true" />
44                  <field field_ref="ISR" enabled="true" />
45                  <field field_ref="OLR" enabled="true" />
46                  <field field_ref="ASR" enabled="true" />
47                  <field field_ref="n2_surf" enabled="true" />
48                  <field field_ref="ch4_ice_surf" enabled="true" />
49                  <field field_ref="co_ice_surf" enabled="true" />
50              </field_group>
51
52              <!-- VARS 3D -->
53              <field_group operation="instant"
54                           grid_ref="grid_3D_out"
55                           freq_op="1ts">
56                  <field field_ref="u" />
57                  <field field_ref="v" />
58                  <field field_ref="omega"/>
59                  <field field_ref="temperature" />
60                  <field field_ref="n2" />
61                  <field field_ref="ch4_gas" />
62                  <field field_ref="ch4_ice" />
63                  <field field_ref="co_gas" />
64                  <field field_ref="co_ice" />
65                  <field field_ref="haze" />
66
67                  <!--field field_ref="h2o_vap" />
68                  <field field_ref="h2o_ice" />
69                  <field field_ref="w_plm" />
70                  <field field_ref="detr" />
71                  <field field_ref="entr" /-->
72              </field_group>
73             
74              <field_group operation="instant"
75                           grid_ref="grid_soil_out"
76                           freq_op="1ts">
77                  <field field_ref="tsoil" />
78              </field_group>
79             
80
81            <!--</field_group>-->
82        </file>
83
84       <!--XspecIR-->
85      <file id="specIR"
86            name="XspecIR"
87            output_freq="400ts"
88            type="one_file"
89            time_units="days"
90            enabled="false">
91          <!--Var 1D ?-->
92          <field_group operation="instant"
93                        grid_ref="grid_IR"
94                        freq_op="1ts">
95              <field field_ref="IR_Bandwidth" operation="once"/>
96          </field_group>
97          <!--Var 2D-->
98          <field_group operation="instant" prec="4"
99                        grid_ref="grid_2D_out"
100                        freq_op="1ts">
101              <field field_ref="area" operation="once" />
102          </field_group>
103          <!--Var 3D-->
104          <field_group operation="instant"
105                        grid_ref="grid_IR_3D_out"
106                        freq_op="1ts">
107              <field field_ref="OLR3D" />
108          </field_group>
109      </file>
110
111       <!--XspecVI-->
112      <file id="specVI"
113            name="XspecVI"
114            output_freq="400ts"
115            type="one_file"
116            time_units="days"
117            enabled="false">
118          <!--Var 1D -->
119          <field_group operation="instant"
120                        grid_ref="grid_VI"
121                        freq_op="1ts">
122              <field field_ref="VI_Bandwidth" operation="once"/>
123          </field_group>
124          <!--Var 2D-->
125          <field_group operation="instant" prec="4"
126                        grid_ref="grid_2D_out"
127                        freq_op="1ts">
128              <field field_ref="area" operation="once" />
129          </field_group>
130          <!--Var 3D-->
131          <field_group operation="instant"
132                        grid_ref="grid_VI_3D_out"
133                        freq_op="1ts">
134              <field field_ref="OSR3D" />
135              <field field_ref="GSR3D" />
136          </field_group>
137      </file>
138    </file_definition>
Note: See TracBrowser for help on using the repository browser.