-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_seaice.mm
2163 lines (2163 loc) · 144 KB
/
_seaice.mm
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
<map><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" FOLDED="false" STYLE="fork" TEXT="seaice"><font BOLD="True" NAME="courier" SIZE="14" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice</dd><dt><b>Contact</b></dt><dd>Ruth Petrie</dd><dt><b>Authors</b></dt><dd>Ruth Petrie, Bryan Lawrence, David Hassell, Mark Greenslade</dd><dt><b>Contributors</b></dt><dd>Jamie Rae (UKMO), Martin Vancopppenolle (IPSL), Alexandra Jahn (University of Colorado)</dd>
</dl>
</body>
</html></richcontent><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="CHANGE HISTORY"><node STYLE="bubble" TEXT="0.1.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.0</dd><dt><b>Date</b></dt><dd>2016-05-24</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Initialised</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.1"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.1</dd><dt><b>Date</b></dt><dd>2016-09-28</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Modified to include work done by Bryan Lawerence</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.2"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.2</dd><dt><b>Date</b></dt><dd>2016-11-07</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Updated on the basis of discussion with Jamie Rae (UKMO)</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.3"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.3</dd><dt><b>Date</b></dt><dd>2016-11-15</dd><dt><b>Person</b></dt><dd>Mark Greenslade</dd><dt><b>Comment</b></dt><dd>Refactored based to fit in the new schema</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.4"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.4</dd><dt><b>Date</b></dt><dd>2016-11-17</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Update DETAILS and SUBPROCESS names</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.5"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.5</dd><dt><b>Date</b></dt><dd>2016-11-18</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Update based on discussions with Martin Vancoppenolle (IPSL)</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.6"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.6</dd><dt><b>Date</b></dt><dd>2016-11-23</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Update based on discussions with Alexandra Jahn (University of Colorado)</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.7"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.7</dd><dt><b>Date</b></dt><dd>2017-11-21</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Update based on community feedback</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.1.8"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.8</dd><dt><b>Date</b></dt><dd>2017-11-23</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Include ice floe-size distribution</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.0</dd><dt><b>Date</b></dt><dd>2017-12-4</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Include section on parameter values, first completed revision</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.1"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.1</dd><dt><b>Date</b></dt><dd>2018-3-19</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Add in space for parameter values in key properties.</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.2"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.2</dd><dt><b>Date</b></dt><dd>2018-04-04</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Replaced some occurences of 'str' with 'cs-str' and 'l-str'</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.3"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.3</dd><dt><b>Date</b></dt><dd>2018-11-30</dd><dt><b>Person</b></dt><dd>Ruth Petrie</dd><dt><b>Comment</b></dt><dd>Updates based on feedback from Martin Vancoppenolle</dd>
</dl>
</body>
</html></richcontent></node></node><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="LEGEND"><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="enum-choice"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A choice within an enumeration.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="grid"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The grid used to layout the variables (e.g. the Global ENDGAME-grid).</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keyprops"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Realm key properties which differ from model defaults (grid, timestep etc).</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="process"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Process simulated within the realm.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" STYLE="bubble" TEXT="property"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A property associated with a detail defined as a 4 member tuple: name, type, cardinality, description.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" STYLE="bubble" TEXT="property-set"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provides details of specific properties of a process, sub-process, key properties, etc. There are two possible specialisations expected: (1) A detail_vocabulary is identified, and a cardinality is assigned to that for possible responses; (2) Detail is used to provide a collection or a set of properties which are defined in the sub-class.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="realm"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Scientific area of a numerical model.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="subprocess"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A sub-process simulated within a realm process.</dd>
</dl>
</body>
</html></richcontent></node></node><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="DETAILS INHERITED FROM CIM"><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="grid"><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keyprops"><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="process"><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="realm"><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="canonical_name" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="subprocess"><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="key_properties"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea Ice key properties</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="variables"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List of prognostic variable in the sea ice model.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.variables</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="prognostic"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Select all prognostic variables in the sea ice component.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.variables.prognostic</dd><dt><b>Type</b></dt><dd>ENUM:prognostic_variables</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.variables.prognostic</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Select all prognostic variables in the sea ice component.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.variables.prognostic</dd><dt><b>Type</b></dt><dd>ENUM:prognostic_variables</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.variables.prognostic</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice temperature"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice temperature</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice concentration"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice concentration</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice thickness"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice thickness</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice volume per grid cell area"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice volume per grid cell area</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice u-velocity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice u-velocity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice v-velocity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice v-velocity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea ice enthalpy"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Sea ice enthalpy</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Internal ice stress"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Internal ice stress</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Salinity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Salinity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Snow temperature"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Snow on ice temperature</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Snow temperature</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Snow depth"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Snow on ice thickness</dd><dt><b>Spec. ID</b></dt><dd>prognostic_variables.Snow depth</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="seawater_properties"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Properties of seawater relevant to sea ice</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="ocean_freezing_point"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the equation used to compute the freezing point (in deg C) of seawater, as a function of salinity and pressure?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point</dd><dt><b>Type</b></dt><dd>ENUM:seawater_freezing_point</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the equation used to compute the freezing point (in deg C) of seawater, as a function of salinity and pressure?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point</dd><dt><b>Type</b></dt><dd>ENUM:seawater_freezing_point</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="TEOS-10"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Thermodynamic equation of seawater 2010.</dd><dt><b>Spec. ID</b></dt><dd>seawater_freezing_point.TEOS-10</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Constant"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Constant value of seawater freezing point is used.</dd><dt><b>Spec. ID</b></dt><dd>seawater_freezing_point.Constant</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="ocean_freezing_point_value"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using a constant seawater freezing point, specify this value.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point_value</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point_value</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using a constant seawater freezing point, specify this value.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point_value</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.seawater_properties.ocean_freezing_point_value</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="resolution"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Resolution of the sea ice grid</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="name"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>This is a string usually used by the modelling group to describe the resolution of this grid e.g. N512L180, T512L70, ORCA025 etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution.name</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.resolution.name</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>This is a string usually used by the modelling group to describe the resolution of this grid e.g. N512L180, T512L70, ORCA025 etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution.name</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.resolution.name</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="canonical_horizontal_resolution"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Expression quoted for gross comparisons of resolution, eg. 50km or 0.1 degrees etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution.canonical_horizontal_resolution</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.resolution.canonical_horizontal_resolution</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Expression quoted for gross comparisons of resolution, eg. 50km or 0.1 degrees etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution.canonical_horizontal_resolution</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.resolution.canonical_horizontal_resolution</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_horizontal_gridpoints"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What are the total number of horizontal (XY) points (or degrees of freedom) on computational grid?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution.number_of_horizontal_gridpoints</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.resolution.number_of_horizontal_gridpoints</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What are the total number of horizontal (XY) points (or degrees of freedom) on computational grid?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.resolution.number_of_horizontal_gridpoints</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.resolution.number_of_horizontal_gridpoints</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="tuning_applied"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Tuning applied to sea ice model component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provide a general overview description of tuning: explain and motivate
the main targets and metrics retained. Document the relative weight given
to climate performance metrics versus process oriented metrics, and on the
possible conflicts with parameterization level tuning. In particular describe
any struggle with a parameter value that required pushing it to its limits to
solve a particular model deficiency.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provide a general overview description of tuning: explain and motivate
the main targets and metrics retained. Document the relative weight given
to climate performance metrics versus process oriented metrics, and on the
possible conflicts with parameterization level tuning. In particular describe
any struggle with a parameter value that required pushing it to its limits to
solve a particular model deficiency.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="target"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What was the aim of tuning, e.g. correct sea ice minima, correct seasonal cycle?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.target</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.target</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What was the aim of tuning, e.g. correct sea ice minima, correct seasonal cycle?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.target</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.target</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="simulations"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Which simulations had tuning applied, e.g. all, not historical, only pi-control? </dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.simulations</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.simulations</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Which simulations had tuning applied, e.g. all, not historical, only pi-control? </dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.simulations</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.simulations</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="metrics_used"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List any observed metrics used in tuning model/parameters</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.metrics_used</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List any observed metrics used in tuning model/parameters</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.metrics_used</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="variables"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Which (if any) variables were changed during the tuning process?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.variables</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Which (if any) variables were changed during the tuning process?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.tuning_applied.variables</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="key_parameter_values"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Values of key parameters</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="ice_strength"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Ice strength (P*) in units of N m{-2}</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_strength</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_strength</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Ice strength (P*) in units of N m{-2}</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_strength</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_strength</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="snow_conductivity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Snow conductivity (ks) in units of W m{-1} K{-1}</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.snow_conductivity</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.snow_conductivity</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Snow conductivity (ks) in units of W m{-1} K{-1}</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.snow_conductivity</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.snow_conductivity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="ice_thickness_in_leads"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Minimum thickness of ice created in leads (h0) in units of m</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_thickness_in_leads</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_thickness_in_leads</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Minimum thickness of ice created in leads (h0) in units of m</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_thickness_in_leads</dd><dt><b>Type</b></dt><dd>float</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.ice_thickness_in_leads</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="additional_parameters"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If you have any additional paramterised values that you have used (e.g. minimum open water
fraction or bare ice albedo), please provide them here as a comma separated list in the form
{parameter1}: {value1}, {parameter2}: {value2}, etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.additional_parameters</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.additional_parameters</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If you have any additional paramterised values that you have used (e.g. minimum open water
fraction or bare ice albedo), please provide them here as a comma separated list in the form
{parameter1}: {value1}, {parameter2}: {value2}, etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.additional_parameters</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.key_parameter_values.additional_parameters</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="assumptions"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Assumptions made in the sea ice model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provide a general overview description of any *key* assumptions made in this model.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provide a general overview description of any *key* assumptions made in this model.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="on_diagnostic_variables"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Note any assumptions that specifically affect the CMIP6 diagnostic sea ice variables.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.on_diagnostic_variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.on_diagnostic_variables</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Note any assumptions that specifically affect the CMIP6 diagnostic sea ice variables.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.on_diagnostic_variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.on_diagnostic_variables</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="missing_processes"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List any *key* processes missing in this model configuration? Provide full details
where this affects the CMIP6 diagnostic sea ice variables?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.missing_processes</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.missing_processes</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List any *key* processes missing in this model configuration? Provide full details
where this affects the CMIP6 diagnostic sea ice variables?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.missing_processes</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.assumptions.missing_processes</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="conservation"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Conservation in the sea ice component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provide a general description of conservation methodology.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provide a general description of conservation methodology.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="properties"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Which properties conserved in sea ice by the numerical schemes?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.properties</dd><dt><b>Type</b></dt><dd>ENUM:conserved_properties</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.properties</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Which properties conserved in sea ice by the numerical schemes?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.properties</dd><dt><b>Type</b></dt><dd>ENUM:conserved_properties</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Energy"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>conserved_properties.Energy</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Mass"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>conserved_properties.Mass</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Salt"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>conserved_properties.Salt</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="budget"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>For each conserved property, specify the output variables which close
the related budgets. as a comma separated list. For example:
Conserved property, variable1, variable2, variable3</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.budget</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.budget</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>For each conserved property, specify the output variables which close
the related budgets. as a comma separated list. For example:
Conserved property, variable1, variable2, variable3</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.budget</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.budget</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="was_flux_correction_used"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Does conservation involved flux correction?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.was_flux_correction_used</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.was_flux_correction_used</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Does conservation involved flux correction?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.was_flux_correction_used</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.was_flux_correction_used</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="corrected_conserved_prognostic_variables"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List any variables which are conserved by *more* than the numerical scheme alone
(e.g. has correction applied).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.corrected_conserved_prognostic_variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.corrected_conserved_prognostic_variables</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List any variables which are conserved by *more* than the numerical scheme alone
(e.g. has correction applied).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.key_properties.conservation.corrected_conserved_prognostic_variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.key_properties.conservation.corrected_conserved_prognostic_variables</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="grid"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea Ice grid</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="discretisation"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice discretisation</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="horizontal"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice discretisation in the horizontal</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>On which grid is the sea ice horizontal discretisation?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid</dd><dt><b>Type</b></dt><dd>ENUM:horizontal_grid</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>On which grid is the sea ice horizontal discretisation?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid</dd><dt><b>Type</b></dt><dd>ENUM:horizontal_grid</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Ocean grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice is horizontally discretised on the ocean grid.</dd><dt><b>Spec. ID</b></dt><dd>horizontal_grid.Ocean grid</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Atmosphere Grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice is horizontally discretised on the atmospheric grid.</dd><dt><b>Spec. ID</b></dt><dd>horizontal_grid.Atmosphere Grid</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Own Grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice is horizontally discretised on its own independent grid.</dd><dt><b>Spec. ID</b></dt><dd>horizontal_grid.Own Grid</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="grid_type"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the structure type of the sea ice grid?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid_type</dd><dt><b>Type</b></dt><dd>ENUM:grid_structure</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid_type</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the structure type of the sea ice grid?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid_type</dd><dt><b>Type</b></dt><dd>ENUM:grid_structure</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.grid_type</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Structured grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>grid_structure.Structured grid</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Unstructured grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>grid_structure.Unstructured grid</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Adaptive grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Computational grid changes during the run</dd><dt><b>Spec. ID</b></dt><dd>grid_structure.Adaptive grid</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="scheme"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the horizontal discretization (advection) scheme?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.scheme</dd><dt><b>Type</b></dt><dd>ENUM:numerical_scheme</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.scheme</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the horizontal discretization (advection) scheme?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.scheme</dd><dt><b>Type</b></dt><dd>ENUM:numerical_scheme</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.scheme</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Finite differences"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>numerical_scheme.Finite differences</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Finite elements"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>numerical_scheme.Finite elements</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Finite volumes"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>numerical_scheme.Finite volumes</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="thermodynamics_time_step"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the time step in the sea ice model thermodynamic component in seconds.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.thermodynamics_time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.thermodynamics_time_step</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the time step in the sea ice model thermodynamic component in seconds.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.thermodynamics_time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.thermodynamics_time_step</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="dynamics_time_step"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the time step in the sea ice model dynamic component in seconds.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.dynamics_time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.dynamics_time_step</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What is the time step in the sea ice model dynamic component in seconds.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.dynamics_time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.dynamics_time_step</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="additional_details"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify any additional horizontal discretisation details.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.additional_details</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.additional_details</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify any additional horizontal discretisation details.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.additional_details</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.horizontal.additional_details</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="vertical"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sea ice vertical properties</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="layering"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What type of sea ice vertical layers are implemented for purposes of thermodynamic calculations?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.layering</dd><dt><b>Type</b></dt><dd>ENUM:vertical_layering</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.layering</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What type of sea ice vertical layers are implemented for purposes of thermodynamic calculations?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.layering</dd><dt><b>Type</b></dt><dd>ENUM:vertical_layering</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.layering</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Zero-layer"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Simulation has no internal ice thermodynamics.</dd><dt><b>Spec. ID</b></dt><dd>vertical_layering.Zero-layer</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Two-layers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Simulation uses two layers (i.e. one ice and one snow layer).</dd><dt><b>Spec. ID</b></dt><dd>vertical_layering.Two-layers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Multi-layers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Simulation uses more than two layers.</dd><dt><b>Spec. ID</b></dt><dd>vertical_layering.Multi-layers</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_layers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using multi-layers specify how many.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.number_of_layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.number_of_layers</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using multi-layers specify how many.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.number_of_layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.number_of_layers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="additional_details"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify any additional vertical grid details.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.additional_details</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.additional_details</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify any additional vertical grid details.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.additional_details</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.discretisation.vertical.additional_details</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="seaice_categories"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>What method is used to represent sea ice categories?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="has_mulitple_categories"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Set to true if the sea ice model has multiple sea ice categories.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.has_mulitple_categories</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.has_mulitple_categories</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Set to true if the sea ice model has multiple sea ice categories.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.has_mulitple_categories</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.has_mulitple_categories</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_categories"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using sea ice categories specify how many.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.number_of_categories</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.number_of_categories</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using sea ice categories specify how many.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.number_of_categories</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.number_of_categories</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="category_limits"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using sea ice categories specify each of the category limits.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.category_limits</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.category_limits</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If using sea ice categories specify each of the category limits.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.category_limits</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.category_limits</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="ice_thickness_distribution"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the sea ice thickness distribution.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.ice_thickness_distribution</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.ice_thickness_distribution</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the sea ice thickness distribution.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.ice_thickness_distribution</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.ice_thickness_distribution</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="other"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If the sea ice model does not use sea ice categories specify any
additional details. For example models that paramterise
the ice thickness distribution ITD (i.e there is no explicit ITD) but
there is assumed distribution and fluxes are computed accordingly.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.other</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.other</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If the sea ice model does not use sea ice categories specify any
additional details. For example models that paramterise
the ice thickness distribution ITD (i.e there is no explicit ITD) but
there is assumed distribution and fluxes are computed accordingly.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.other</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.seaice_categories.other</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="snow_on_seaice"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Snow on sea ice details</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.snow_on_seaice</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="has_snow_on_ice"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Is snow on ice represented in this model?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.seaice.grid.snow_on_seaice.has_snow_on_ice</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.seaice.grid.snow_on_seaice.has_snow_on_ice</dd>
</dl>