forked from ESCOMP/CISM-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnamelist_definition_cism.xml
2996 lines (2760 loc) · 95 KB
/
namelist_definition_cism.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="namelist_definition.xsl"?>
<!-- ===================================================================
This file contains entries for all namelist variables that can be output
by buildnml. These variables can appear either in cism_in or
cism.icesheet.config (controlled by the "group" of each variable). A
modified version of this file can be placed in
$CASEROOT/SourceMods/src.cism/; if so, that one is used instead of the
standard one in the source tree. The handling of this file is done by
CISM's buildnml script; however, for standard variables that don't
require any special handling, no changes are needed in buildnml.
Each namelist variable is defined by an <entry> element. This element
has a required id, giving the name of the namelist variable. Additional
optional attributes can also be given; two helpful ones are:
- skip_default_entry="true": If specified, this variable will NOT
automatically have a default value added to the namelist. Some
examples of when you might want to use this are:
- If an obscure variable should only appear in cism.icesheet.config if
it is explicitly set in user_nl_cism. In this case, you should NOT
define a <values> section for this variable.
- If there is some logic around the default value that should be set
for this variable, with an explicit add_default call in
buildnml. This can either invoke the defaults set in this xml file
(in which case there should still be a <values> section) or can set
the default explicitly in the python code (in which case the
<values> section isn't needed).
- modify_via_xml="XML_VARIABLE": If specified, it is an error for the
user to try to set this variable via user_nl_cism; an error message
will be generated in this case, telling them to set it via the given
XML_VARIABLE.
Sub-elements of each entry include:
- type: The type of this variable (char, integer, logical, real)
- category: Used for organizing auto-generated documentation
- group: The name of the namelist group or section of
cism.icesheet.config in which this variable will appear
- valid_values (optional): If given, this is a list of allowed values;
if not given, there are no restrictions on allowed values.
- input_pathname (optional): Include this attribute to indicate that the
variable contains the pathname of an input dataset that resides in the
CESM inputdata directory tree. The recognized values are "abs" to
indicate that an absolute pathname is required or "rel:var_name" to
indicate that the pathname is relative and that the namelist variable
"var_name" contains the absolute root directory.
- values (optional, but should be given unless
skip_default_entry="true"): list of default values:
- <value>XXX</value> indicates that this should be the default for
this variable, unless some later match overrides it
- <value variable="value"> indicates that this should be the default
for this variable if the given variable has the given value. The
given variable must appear in the config dictionary set in
buildnml. The default namelist value for a given variable is the one
that matches the most attributes.
- desc: Description, for documentation
==================================================================== -->
<entry_id version="2.0">
<!-- ============================================================= -->
<!-- ============================================================= -->
<!-- cism_in groups -->
<!-- ============================================================= -->
<!-- ============================================================= -->
<!-- ============================================================= -->
<!-- group: cism_params -->
<!-- ============================================================= -->
<entry id="paramfile_base" skip_default_entry="true">
<type>char</type>
<category>cism</category>
<group>cism_params</group>
<desc>
Base name of top-level configuration file for CISM
Actual param file names are this base name plus ".icesheet.config"
for the given ice sheet.
(Determined by scripts -- should not be set by user)
</desc>
</entry>
<entry id="num_icesheets" skip_default_entry="true" modify_via_xml="GLC_USE_ANTARCTICA, GLC_USE_GREENLAND, etc.">
<type>integer</type>
<category>cism</category>
<group>cism_params</group>
<desc>
Number of ice sheets in this simulation
(Determined by scripts -- cannot be set by user)
</desc>
</entry>
<entry id="icesheet_names" skip_default_entry="true" modify_via_xml="GLC_USE_ANTARCTICA, GLC_USE_GREENLAND, etc.">
<type>char(10)</type>
<category>cism</category>
<group>cism_params</group>
<desc>
List of names of ice sheets in this simulation
(Determined by scripts -- cannot be set by user)
</desc>
</entry>
<entry id="cism_debug" >
<type>logical</type>
<category>cism</category>
<group>cism_params</group>
<values>
<value>.false.</value>
</values>
<desc>
Determines whether extra diagnostics are printed in the cism log file
Default: false
</desc>
</entry>
<entry id="ice_flux_routing">
<type>char</type>
<category>cism</category>
<group>cism_params</group>
<valid_values>ocn,ice</valid_values>
<values>
<value>ocn</value>
</values>
<desc>
Code describing how the solid ice runoff flux (i.e., calving) should
be routed.
ocn: all solid ice goes to the ocean component
ice: all solid ice goes to the sea ice component
Default: ocn
</desc>
</entry>
<entry id="test_coupling">
<type>logical</type>
<category>cism</category>
<group>cism_params</group>
<values>
<value>.false.</value>
</values>
<desc>
If this is set to true, it sets the mass balance timestep to 1 day.
This means the ice dynamics is called after one day of climate simulation.
THIS IS ONLY FOR TESTING OF COUPLING PROCEDURES, NOT TO BE USED FOR SCIENCE.
</desc>
</entry>
<entry id="enable_frac_overrides">
<type>logical</type>
<category>cism</category>
<group>cism_params</group>
<values>
<value>.false.</value>
</values>
<desc>
Whether to enable overrides of the glc fraction sent to the coupler.
If this is true, then settings in glc_override_nml are used.
ONLY MEANT FOR TESTING - SHOULD NOT BE USED FOR SCIENCE RUNS.
Note that, if running with multiple ice sheets, this and the
various override settings apply to all ice sheets: there is no way
to do overrides for one ice sheet but not the others.
Default: .false.
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: time_manager_nml -->
<!-- ============================================================= -->
<entry id="runid" modify_via_xml="CASE">
<type>char</type>
<category>time</category>
<group>time_manager_nml</group>
<values>
<value>$CASE</value>
</values>
<desc>
Simulation identifier (ie case name)
Default: case name set by create_newcase
</desc>
</entry>
<entry id="dt_option" skip_default_entry="true">
<type>char</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>steps_per_year,steps_per_day,seconds,hours</valid_values>
<desc>
GLC time-step units
This generally should not be changed
Valid values: steps_per_year, steps_per_day, seconds, hours
Default: set based on NCPL_BASE_PERIOD and GLC_NCPL in env_run.xml,
so that there is one GLC time step per coupling period
</desc>
</entry>
<entry id="dt_count" skip_default_entry="true">
<type>real</type>
<category>time</category>
<group>time_manager_nml</group>
<desc>
Time step, in units given by dt_option
This generally should not be changed
Default: set based on NCPL_BASE_PERIOD and GLC_NCPL in env_run.xml,
so that there is one GLC time step per coupling period
</desc>
</entry>
<entry id="allow_leapyear">
<type>logical</type>
<category>time</category>
<group>time_manager_nml</group>
<values>
<value>.true.</value>
<value calendar="NO_LEAP">.false.</value>
</values>
<desc>
Whether leap years are enabled in the GLC time manager.
CAUTION: Leap years don't work correctly with GLC time steps longer than a few months.
Default: .false. for NO_LEAP calendar, .true. otherwise
</desc>
</entry>
<entry id="iyear0" skip_default_entry="true">
<type>integer</type>
<category>time</category>
<group>time_manager_nml</group>
<desc>
Starting year number
Default: comes from RUN_STARTDATE or RUN_REFDATE
</desc>
</entry>
<entry id="imonth0" skip_default_entry="true">
<type>integer</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>1,2,3,4,5,6,7,8,9,10,11,12</valid_values>
<desc>
Starting month number
Default: comes from RUN_STARTDATE or RUN_REFDATE
</desc>
</entry>
<entry id="iday0" skip_default_entry="true">
<type>integer</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31</valid_values>
<desc>
Starting day number in month
Default: comes from RUN_STARTDATE or RUN_REFDATE
</desc>
</entry>
<entry id="ihour0" skip_default_entry="true">
<type>integer</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23</valid_values>
<desc>
Starting hour of the day
Default: 0
</desc>
</entry>
<entry id="iminute0" skip_default_entry="true">
<type>integer</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59</valid_values>
<desc>
Starting minute of the day
Default: 0
</desc>
</entry>
<entry id="isecond0" skip_default_entry="true">
<type>integer</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59</valid_values>
<desc>
Starting second of the minute
Default: 0
</desc>
</entry>
<entry id="date_separator">
<type>char</type>
<category>time</category>
<group>time_manager_nml</group>
<values>
<value>-</value>
</values>
<desc>
Character to separate date values
Default: '-'
</desc>
</entry>
<entry id="stop_option">
<type>char</type>
<category>time</category>
<group>time_manager_nml</group>
<valid_values>never</valid_values>
<values>
<value>never</value>
</values>
<desc>
Stop option: always let the coupler stop the model so use `never`.
Default: 'never'
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: glc_override_nml -->
<!-- ============================================================= -->
<entry id="decrease_override_delay">
<type>integer</type>
<category>overrides</category>
<group>glc_override_nml</group>
<values>
<value>0</value>
</values>
<desc>
Time delay before beginning decrease_frac overrides (days).
Default: 0 (start overrides at beginning of run)
</desc>
</entry>
<entry id="increase_override_delay">
<type>integer</type>
<category>overrides</category>
<group>glc_override_nml</group>
<values>
<value>0</value>
</values>
<desc>
Time delay before beginning increase_frac overrides (days).
Default: 0 (start overrides at beginning of run)
</desc>
</entry>
<entry id="rearrange_override_delay">
<type>integer</type>
<category>overrides</category>
<group>glc_override_nml</group>
<values>
<value>0</value>
</values>
<desc>
Time delay before beginning rearrange_freq overrides (days).
Default: 0 (start overrides at beginning of run)
</desc>
</entry>
<entry id="decrease_frac">
<type>real</type>
<category>overrides</category>
<group>glc_override_nml</group>
<values>
<value>0.0</value>
</values>
<desc>
Fractional decrease in glacier area, per day (should be positive).
(days_elapsed * decrease_frac) determines the elevation threshold below which ice_covered is set to 0.
When this factor reaches 1, all elevations below 3500 m are set to non-ice-covered.
Default: 0 (no decrease)
</desc>
</entry>
<entry id="increase_frac">
<type>real</type>
<category>overrides</category>
<group>glc_override_nml</group>
<values>
<value>0.0</value>
</values>
<desc>
Fractional increase in glacier area, per day.
(days_elapsed * increase_frac) determines the elevation threshold above which ice_covered is set to 1.
When this factor reaches 1, all elevations >= 0 m are set to ice-covered.
Default: 0 (no increase)
</desc>
</entry>
<entry id="rearrange_freq">
<type>integer</type>
<category>overrides</category>
<group>glc_override_nml</group>
<values>
<value>0</value>
</values>
<desc>
Frequency (days) at which we rearrange elevation classes.
Default: 0 (no flips ever)
</desc>
</entry>
<!-- ============================================================= -->
<!-- ============================================================= -->
<!-- cism.icesheet.config groups -->
<!-- ============================================================= -->
<!-- ============================================================= -->
<!-- ============================================================= -->
<!-- group: derived (handled uniquely) -->
<!-- ============================================================= -->
<entry id="cisminputfile" skip_default_entry="true">
<type>char</type>
<category>cism</category>
<input_pathname>abs</input_pathname>
<group>derived</group>
<values>
<!-- the following is just for the sake of software testing, and should not be used for science -->
<value icesheet="gris" glc_grid="gris20">glc/cism/Greenland/gland20.input_c150415.nc</value>
<!-- this is the resolution that should be used for science applications with cism2 -->
<value icesheet="gris" glc_grid="gris4">glc/cism/Greenland/greenland_4km_epsg3413_c171126.nc</value>
<!-- the following is for software testing of Antarctica -->
<value icesheet="ais" glc_grid="ais8">glc/cism/Antarctica/ISMIP6_Antarctica_8km.init.c210908.nc</value>
</values>
<desc>
Input file
Default: For startup runs or hybrid runs with CISM_OBSERVED_IC=TRUE, a resolution-dependent
initial conditions file.
For branch/hybrid runs with CISM_OBSERVED_IC=FALSE, a restart file name
built based on RUN_REFCASE and RUN_REFDATE.
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: cism.icesheet.config: grid -->
<!-- ============================================================= -->
<entry id="ewn" >
<type>integer</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value icesheet="gris" glc_grid="gris20" >76</value>
<value icesheet="gris" glc_grid="gris4" >416</value>
<value icesheet="ais" glc_grid="ais8" >704</value>
</values>
<desc>
Number of nodes in x-direction
Default: resolution-dependent
</desc>
</entry>
<entry id="nsn" >
<type>integer</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value icesheet="gris" glc_grid="gris20" >141</value>
<value icesheet="gris" glc_grid="gris4" >704</value>
<value icesheet="ais" glc_grid="ais8" >576</value>
</values>
<desc>
Number of nodes in y-direction
Default: resolution-dependent
</desc>
</entry>
<entry id="upn" >
<type>integer</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value icesheet="gris" glc_grid="gris20" >11</value>
<value icesheet="gris" glc_grid="gris4" >11</value>
<value icesheet="ais" glc_grid="ais8" >5</value>
</values>
<desc>
Number of nodes in z-direction
Default: resolution-dependent
</desc>
</entry>
<entry id="dew" >
<type>real</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value icesheet="gris" glc_grid="gris20" >20000.</value>
<value icesheet="gris" glc_grid="gris4" >4000.</value>
<value icesheet="ais" glc_grid="ais8" >8000.</value>
</values>
<desc>
Node spacing in x-direction (m)
Default: resolution-dependent
</desc>
</entry>
<entry id="dns" >
<type>real</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value icesheet="gris" glc_grid="gris20" >20000.</value>
<value icesheet="gris" glc_grid="gris4" >4000.</value>
<value icesheet="ais" glc_grid="ais8" >8000.</value>
</values>
<desc>
Node spacing in y-direction (m)
Default: resolution-dependent
</desc>
</entry>
<entry id="nx_block" >
<type>integer</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value>0</value>
</values>
<desc>
User-specified block sizes, one task per block; optionally, tasks not assigned to inactive blocks
Default: 0
</desc>
</entry>
<entry id="ny_block" >
<type>integer</type>
<category>cism_config_grid</category>
<group>grid</group>
<values>
<value>0</value>
</values>
<desc>
User-specified block sizes, one task per block; optionally, tasks not assigned to inactive blocks
Default: 0
</desc>
</entry>
<entry id="global_bc" >
<type>integer</type>
<category>cism_config_grid</category>
<group>grid</group>
<valid_values>0,1,2,3</valid_values>
<values>
<value icesheet="gris">1</value>
<value icesheet="ais" >3</value>
</values>
<desc>
Global boundary conditions
0: Doubly periodic
1: Free outflow; scalars in global halo set to zero
2: No penetration; outflow set to zero at global boundaries (only supported for Glissade dycore)
3: No ice at global boundary; scalars set to zero adjacent to boundary
Default: 1 for Greenland, 3 for Antarctica
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: cism.icesheet.config: sigma -->
<!-- ============================================================= -->
<!-- This group is only relevant if sigma = 2 -->
<entry id="sigma_levels" >
<type>real(20)</type>
<category>cism_config_sigma</category>
<group>sigma</group>
<values>
<!-- These levels focus resolution at the bottom -->
<value>0.00 0.15 0.30 0.45 0.60 0.75 0.83 0.90 0.95 0.98 1.00</value>
</values>
<desc>
List of sigma levels, in ascending order, separated by spaces
These run between 0.0 (at top surface) and 1.0 (at lower surface)
Only relevant if sigma = 2
Default: 0.00 0.15 0.30 0.45 0.60 0.75 0.83 0.90 0.95 0.98 1.00
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: cism.icesheet.config: climate -->
<!-- ============================================================= -->
<entry id="evolve_ice" modify_via_xml="CISM_EVOLVE_ICESHEET for the given ice sheet">
<type>integer</type>
<category>cism_config_climate</category>
<group>glad_climate</group>
<valid_values>0,1</valid_values>
<values>
<value cism_evolve_this_icesheet=".true.">1</value>
<value cism_evolve_this_icesheet=".false.">0</value>
</values>
<desc>
0: Do not let the ice sheet evolve (hold ice state fixed at initial condition)
1: Let the ice sheet evolve
Default: 1
</desc>
</entry>
<entry id="zero_gcm_fluxes">
<type>logical</type>
<category>cism_config_climate</category>
<group>glad_climate</group>
<values>
<value glc_two_way_coupling=".true." cism_evolve_this_icesheet=".true.">.false.</value>
<value glc_two_way_coupling=".false." cism_evolve_this_icesheet=".true.">.true.</value>
<value glc_two_way_coupling=".true." cism_evolve_this_icesheet=".false.">.true.</value>
<value glc_two_way_coupling=".false." cism_evolve_this_icesheet=".false.">.true.</value>
</values>
<desc>
If true, zero out all fluxes sent to the GCM
Default: Depends on GLC_TWO_WAY_COUPLING xml variable and whether
this ice sheet is evolving
</desc>
</entry>
<entry id="ice_tstep_multiply" skip_default_entry="true">
<type>integer</type>
<category>cism_config_climate</category>
<group>glad_climate</group>
<desc>
Ice time-step multiplier: allows asynchronous climate-ice coupling
Default: (use hard-coded default- currently 1)
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: cism.icesheet.config: esm_output -->
<!-- ============================================================= -->
<entry id="esm_history_vars" >
<type>char</type>
<category>cism_config_history</category>
<group>esm_output</group>
<values>
<value cism_evolve_this_icesheet=".true." >smb artm thk usurf topg uvel vvel temp bmlt bwat beta_internal floating_mask grounded_mask bpmp acab_applied bmlt_applied calving_rate iareaf iareag imass imass_above_flotation total_smb_flux total_bmb_flux total_calving_flux total_gl_flux ice_sheet_mask ice_cap_mask</value>
<value cism_evolve_this_icesheet=".false.">smb artm thk usurf topg</value>
</values>
<desc>
Space-delimited list of variables output to history file
Default: Depends on physics and ice evolution options
</desc>
</entry>
<entry id="history_option">
<type>char</type>
<category>cism_config_history</category>
<group>esm_output</group>
<valid_values>nyears,coupler</valid_values>
<values>
<value>nyears</value>
</values>
<desc>
How history frequency is specified
nyears: Write history every N years
coupler: Get history frequency from coupler (HIST_OPTION/HIST_N xml variables)
WARNING: SHOULD NOT BE USED IN PRODUCTION RUNS - frequency metadata not set properly
Default: nyears
</desc>
</entry>
<entry id="history_frequency">
<type>integer</type>
<category>cism_config_history</category>
<group>esm_output</group>
<values>
<value>1</value>
</values>
<desc>
History frequency
e.g., if history_option=nyears, then 1 = annual, 2 = every two years, etc.
Ignored for history_option = 'coupler'
Default: 1
</desc>
</entry>
<!-- ============================================================= -->
<!-- group: cism.icesheet.config: options -->
<!-- ============================================================= -->
<entry id="dycore">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>2</valid_values>
<values>
<value>2</value>
</values>
<desc>
Which dycore to use
0: NOT SUPPORTED: Glide dycore (SIA, serial only)
Note that this option is no longer supported in CESM
1: NOT SUPPORTED: glam dycore (HO, FDM, serial or parallel)
Note that this option is not allowed within CESM, because it is buggy
2: Glissade dycore (HO, FEM, serial or parallel)
Default: 2
</desc>
</entry>
<entry id="temperature">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2,3</valid_values>
<values>
<value>1</value>
</values>
<desc>
Determines the temperature solution method
0: isothermal: set column to surface air temperature
1: prognostic temperature solution
2: do NOTHING: hold temperatures steady at initial value
3: prognostic enthalpy solution
Default: 1
</desc>
</entry>
<entry id="temp_init">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2,3,4</valid_values>
<values>
<!-- temp_init = 3 can only generate an advective-diffusive-balance profile if acab
or smb are present in the input file (which is currently only the case for some
input files). But it defaults to a linear profile (temp_init 2) if neither of
these fields are present. So to keep things simple, we specify temp_init = 3
for all input files, rather than making this dependent on glc_grid. -->
<value>3</value>
</values>
<desc>
Temperature initialization method
0: Initialize temperature to 0 C
1: Initialize temperature to surface air temperature
2: Initialize temperature with a linear profile in each column
3: Initialize temperature with an advective-diffusive balance in each column
4: Initialize temperature from external file
Default: 3
</desc>
</entry>
<entry id="flow_law">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2,3</valid_values>
<values>
<value>2</value>
</values>
<desc>
0: Constant value, taken from default_flwa
1: Uniform value equal to the Paterson-Budd value at -10 deg C
2: Paterson-Budd temperature-dependent relationship
3: Read flwa/flwastag from file
Default: 2
</desc>
</entry>
<entry id="bmlt_float">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2,3,4,6</valid_values>
<values>
<value icesheet="gris">0</value>
<value icesheet="ais" >6</value>
</values>
<desc>
Basal melt rate for floating ice
0: Basal melt rate = 0 for floating ice
1: Depth-dependent basal melt rate for floating ice as prescribed for MISMIP+
2: Basal melt rate = constant for floating ice (with option to selectively mask out melting)
3: Depth-dependent basal melt rate for floating ice
4: External basal melt rate field (from input file or coupler)
5: [NOT SUPPORTED] Basal melt rate for floating ice from MISOMIP ocean forcing with plume model
6: Basal melt rate for floating ice derived from ocean thermal forcing
Default: 0 for Greenland, 6 for Antarctica
</desc>
</entry>
<entry id="bmlt_float_ismip6_magnitude">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2</valid_values>
<values>
<value>1</value>
</values>
<desc>
0: lowest forcing magnitude
1: median forcing magnitude
2: highest forcing magnitude
</desc>
</entry>
<entry id="bmlt_float_thermal_forcing_param">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2,3</valid_values>
<values>
<value icesheet="gris">0</value>
<value icesheet="ais"> 2</value>
</values>
<desc>
0: Quadratic parameterization to compute basal melting from thermal forcing
1: ISMIP6 local quadratic parameterization to compute basal melting from thermal forcing
2: ISMIP6 nonlocal quadratic parameterization to compute basal melting from thermal forcing
3: ISMIP6 nonlocal quadratic parameterization with slope dependence
Default: 0 for Greenland, 2 for Antarctica
</desc>
</entry>
<entry id="ocean_data_domain">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2</valid_values>
<values>
<value icesheet="gris">0</value>
<value icesheet="ais" >1</value>
</values>
<desc>
0: ocean data set internally by CISM
1: ocean data read from external file
2: ocean data received from coupler via Glad
Default: 0 for Greenland, 1 for Antarctica
</desc>
</entry>
<entry id="ocean_data_extrapolate">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1</valid_values>
<values>
<value>0</value>
</values>
<desc>
0: ocean data not extrapolated to shelf cavities
1: ocean data extrapolated to shelf cavities
Default: 0
</desc>
</entry>
<entry id="marine_margin">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1,2,3,4,5,6,7,8,9</valid_values>
<values>
<value icesheet="gris">1</value>
<value icesheet="ais" >5</value>
</values>
<desc>
Calving
0: No calving
1: Set thickness to zero if floating
2: Lose a fraction of floating ice at marine margin
3: Set thickness to zero if relaxed bedrock is more than a certain water depth (marine_limit)
4: Set thickness to zero if present bedrock topography lies below a certain water depth (marine_limit)
5: Set thickness to zero based on grid location (field 'calving_mask')
6: Set thickness to zero if ice at marine margin is thinner than a certain value (calving_minthck)
7: Set thickness to zero based on stress (eigencalving) criterion
8: [NOT SUPPORTED] Calve ice that is sufficiently damaged
9: [NOT SUPPORTED] Huybrechts grounding line scheme for Greenland initialization
Default: 1 for Greenland, 5 for Antarctica
</desc>
</entry>
<entry id="calving_domain">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1</valid_values>
<values>
<value>1</value>
</values>
<desc>
0: Calve only at ocean edge
1: Calve wherever the calving criterion is met
Default: 1
</desc>
</entry>
<entry id="apply_calving_mask">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<values>
<value>.false.</value>
</values>
<desc>
If true, then apply a calving mask to prevent calving-front advance.
Default: .false.
</desc>
</entry>
<entry id="remove_icebergs">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<values>
<value>.true.</value>
</values>
<desc>
If true, then identify and remove icebergs after calving.
These are connected regions with zero basal traction and no connection to grounded ice.
Safer to make it true (and this is needed for stability when allowing floating ice
with more advanced calving options), but not necessary for all applications.
Default: .true.
</desc>
</entry>
<entry id="remove_isthmuses">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<values>
<value>.false.</value>
</values>
<desc>
If true, then identify and remove ice isthmuses after calving.
These are narrow bridges connecting two regions of floating ice.
False by default, but may need to be true for the FORCE_RETREAT_FLOATING_ICE option.
Default: .false.
</desc>
</entry>
<entry id="limit_marine_cliffs">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<values>
<value>.true.</value>
</values>
<desc>
If true, then thin marine-based cliffs based on a thickness threshold
Default: .true.
</desc>
</entry>
<entry id="cull_calving_front" skip_default_entry="true">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<desc>
Expert setting.
If true, then cull calving_front cells at initialization.
This can make the run more stable by removing long, thin peninsulas.
If this is set, then also need to set ncull_calving_front.
Default: (use hard-coded default - currently .false.)
</desc>
</entry>
<entry id="adjust_input_thickness">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<values>
<value icesheet="gris">.false.</value>
<value icesheet="ais" >.true.</value>
</values>
<desc>
If true, then adjust thck to maintain usrf, instead of deriving usrf from topg and thck.
Default: .false. for Greenland, .true. for Antarctica
</desc>
</entry>
<entry id="read_lat_lon">
<type>logical</type>
<category>cism_config_options</category>
<group>options</group>
<values>
<value>.false.</value>
</values>
<desc>
If true, then read lat and lon fields from the input file and write to restarts.
Default: .false.
</desc>
</entry>
<entry id="calving_init">
<type>integer</type>
<category>cism_config_options</category>
<group>options</group>
<valid_values>0,1</valid_values>