-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMIP_OPmon.json
1761 lines (1761 loc) · 56 KB
/
MIP_OPmon.json
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
{
"Header": {
"Conventions": "CF-1.7 CMIP-6.5",
"approx_interval": 30.0,
"checksum": "",
"cmor_version": "3.8.0",
"data_specs_version": "6.5.0.0",
"generic_levels": "",
"int_missing_value": "-999",
"missing_value": "1e20",
"product": "model-output",
"table_date": "2024-02-28",
"table_id": "OPmon"
},
"variable_entry": {
"bigthetaoga": {
"cell_measures": "",
"cell_methods": "area: mean where sea time: mean",
"comment": "Diagnostic should be contributed only for models using conservative temperature as prognostic field.",
"dimensions": [
"time"
],
"frequency": "mon",
"long_name": "Global Average Sea Water Conservative Temperature",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "bigthetaoga",
"positive": "",
"standard_name": "sea_water_conservative_temperature",
"type": "real",
"units": "degC",
"valid_max": "",
"valid_min": ""
},
"evs": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "computed as the total mass of water vapor evaporating from the ice-free portion of the ocean divided by the area of the ocean portion of the grid cell.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Water Evaporation Flux Where Ice Free Ocean over Sea",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "evs",
"positive": "",
"standard_name": "water_evapotranspiration_flux",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"fgcfc11": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "gas exchange flux of CFC11",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Surface Downward CFC11 Flux",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "fgcfc11",
"positive": "down",
"standard_name": "surface_downward_mole_flux_of_cfc11",
"type": "real",
"units": "mol m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"fgcfc12": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "gas exchange flux of CFC12",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Surface Downward CFC12 Flux",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "fgcfc12",
"positive": "down",
"standard_name": "surface_downward_mole_flux_of_cfc12",
"type": "real",
"units": "mol m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"fgsf6": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "gas exchange flux of SF6",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Surface Downward SF6 Flux",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "fgsf6",
"positive": "down",
"standard_name": "surface_downward_mole_flux_of_sulfur_hexafluoride",
"type": "real",
"units": "mol m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"ficeberg2d": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Water Flux into Sea Water from Icebergs",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "ficeberg2d",
"positive": "",
"standard_name": "water_flux_into_sea_water_from_icebergs",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"flandice": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Computed as the water flux into the ocean due to land ice (runoff water from surface and base of land ice or melt from base of ice shelf or vertical ice front) into the ocean divided by the area ocean portion of the grid cell",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Water Flux into Sea Water from Land Ice",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "flandice",
"positive": "",
"standard_name": "water_flux_into_sea_water_from_land_ice",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"friver": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "computed as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Water Flux into Sea Water from Rivers",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "friver",
"positive": "",
"standard_name": "water_flux_into_sea_water_from_rivers",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"fsitherm": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "computed as the sea ice thermodynamic water flux into the ocean divided by the area of the ocean portion of the grid cell.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Water Flux into Sea Water Due to Sea Ice Thermodynamics",
"modeling_realm": [
"ocean",
"seaIce"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "fsitherm",
"positive": "",
"standard_name": "water_flux_into_sea_water_due_to_sea_ice_thermodynamics",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"hfcorr": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Flux correction is also called 'flux adjustment'. A positive flux correction is downward i.e. added to the ocean. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Heat Flux Correction",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfcorr",
"positive": "down",
"standard_name": "heat_flux_correction",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfds": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "This is the net flux of heat entering the liquid water column through its upper surface (excluding any 'flux adjustment') .",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Downward Heat Flux at Sea Water Surface",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfds",
"positive": "down",
"standard_name": "surface_downward_heat_flux_in_sea_water",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfevapds": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "This is defined as 'where ice_free_sea over sea'",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Temperature Flux Due to Evaporation Expressed as Heat Flux out of Sea Water",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfevapds",
"positive": "up",
"standard_name": "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfgeou": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Upward geothermal heat flux per unit area on the sea floor",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Upward Geothermal Heat Flux at Sea Floor",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfgeou",
"positive": "up",
"standard_name": "upward_geothermal_heat_flux_at_sea_floor",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfibthermds2d": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. ' Iceberg thermodynamics' refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Heat Flux into Sea Water Due to Iceberg Thermodynamics",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfibthermds2d",
"positive": "",
"standard_name": "heat_flux_into_sea_water_due_to_iceberg_thermodynamics",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hflso": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "This is defined as with the cell methods string: where ice_free_sea over sea",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Surface Downward Latent Heat Flux",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hflso",
"positive": "down",
"standard_name": "surface_downward_latent_heat_flux",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfrainds": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "This is defined as 'where ice_free_sea over sea'; i.e., the total flux (considered here) entering the ice-free portion of the grid cell divided by the area of the ocean portion of the grid cell. All such heat fluxes are computed based on Celsius scale.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Temperature Flux Due to Rainfall Expressed as Heat Flux into Sea Water",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfrainds",
"positive": "down",
"standard_name": "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfrunoffds2d": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Heat flux associated with liquid water which drains from land. It is calculated relative to the heat that would be transported by runoff water entering the sea at zero degrees Celsius. ",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Temperature Flux Due to Runoff Expressed as Heat Flux into Sea Water",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfrunoffds2d",
"positive": "",
"standard_name": "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfsifrazil2d": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Frazil' consists of needle like crystals of ice, typically between three and four millimeters in diameter, which form as sea water begins to freeze. Salt is expelled during the freezing process and frazil ice consists of nearly pure fresh water.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Heat Flux into Sea Water Due to Frazil Ice Formation",
"modeling_realm": [
"ocean",
"seaIce"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfsifrazil2d",
"positive": "",
"standard_name": "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfsnthermds2d": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Snow thermodynamics' refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Heat Flux into Sea Water Due to Snow Thermodynamics",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfsnthermds2d",
"positive": "",
"standard_name": "heat_flux_into_sea_water_due_to_snow_thermodynamics",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfsso": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "Downward sensible heat flux over sea ice free sea. The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Surface Downward Sensible Heat Flux",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfsso",
"positive": "down",
"standard_name": "surface_downward_sensible_heat_flux",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"hfx": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Contains all contributions to 'x-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Ocean Heat X Transport",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfx",
"positive": "",
"standard_name": "ocean_heat_x_transport",
"type": "real",
"units": "W",
"valid_max": "",
"valid_min": ""
},
"hfy": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Contains all contributions to 'y-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Ocean Heat Y Transport",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "hfy",
"positive": "",
"standard_name": "ocean_heat_y_transport",
"type": "real",
"units": "W",
"valid_max": "",
"valid_min": ""
},
"masso": {
"cell_measures": "",
"cell_methods": "area: sum where sea time: mean",
"comment": "Total mass of liquid sea water. For Boussinesq models, report this diagnostic as Boussinesq reference density times total volume.",
"dimensions": [
"time"
],
"frequency": "mon",
"long_name": "Sea Water Mass",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "masso",
"positive": "",
"standard_name": "sea_water_mass",
"type": "real",
"units": "kg",
"valid_max": "",
"valid_min": ""
},
"mfo": {
"cell_measures": "",
"cell_methods": "time: mean",
"comment": "Transport across_line means that which crosses a particular line on the Earth's surface; formally this means the integral along the line of the normal component of the transport.",
"dimensions": [
"oline",
"time"
],
"frequency": "mon",
"long_name": "Sea Water Transport",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "mfo",
"positive": "",
"standard_name": "sea_water_transport_across_line",
"type": "real",
"units": "kg s-1",
"valid_max": "",
"valid_min": ""
},
"mlotst": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Sigma T is potential density referenced to ocean surface.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Ocean Mixed Layer Thickness Defined by Sigma T",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "mlotst",
"positive": "",
"standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t",
"type": "real",
"units": "m",
"valid_max": "",
"valid_min": ""
},
"mlotstmax": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean time: maximum",
"comment": "Sigma T is potential density referenced to ocean surface.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Maximum Ocean Mixed Layer Thickness Defined by Sigma T",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "mlotstmax",
"positive": "",
"standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t",
"type": "real",
"units": "m",
"valid_max": "",
"valid_min": ""
},
"mlotstmin": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean time: minimum",
"comment": "Sigma T is potential density referenced to ocean surface.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Minimum Ocean Mixed Layer Thickness Defined by Sigma T",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "mlotstmin",
"positive": "",
"standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t",
"type": "real",
"units": "m",
"valid_max": "",
"valid_min": ""
},
"mlotstsq": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "The phrase 'square_of_X' means X*X. The ocean mixed layer is the upper part of the ocean, regarded as being well-mixed. The base of the mixed layer defined by 'temperature', 'sigma', 'sigma_theta', 'sigma_t' or vertical diffusivity is the level at which the quantity indicated differs from its surface value by a certain amount. A coordinate variable or scalar coordinate variable with standard name sea_water_sigma_t_difference can be used to specify the sigma_t criterion that determines the layer thickness. Sigma-t of sea water is the density of water at atmospheric pressure (i.e. the surface) having the same temperature and salinity, minus 1000 kg m-3. 'Thickness' means the vertical extent of a layer.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Square of Ocean Mixed Layer Thickness Defined by Sigma T",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "mlotstsq",
"positive": "",
"standard_name": "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t",
"type": "real",
"units": "m2",
"valid_max": "",
"valid_min": ""
},
"msftbarot": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Streamfunction or its approximation for free surface models. See OMDP document for details.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Ocean Barotropic Mass Streamfunction",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "msftbarot",
"positive": "",
"standard_name": "ocean_barotropic_mass_streamfunction",
"type": "real",
"units": "kg s-1",
"valid_max": "",
"valid_min": ""
},
"msftyrho": {
"cell_measures": "",
"cell_methods": "time: mean grid_longitude: mean",
"comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.",
"dimensions": [
"gridlatitude",
"rho",
"basin",
"time"
],
"frequency": "mon",
"long_name": "Ocean Y Overturning Mass Streamfunction",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "msftyrho",
"positive": "",
"standard_name": "ocean_y_overturning_mass_streamfunction",
"type": "real",
"units": "kg s-1",
"valid_max": "",
"valid_min": ""
},
"msftyrhompa": {
"cell_measures": "",
"cell_methods": "time: mean grid_longitude: mean",
"comment": "CMIP5 called this 'due to Bolus Advection'. Name change respects the more general physics of the mesoscale parameterizations.",
"dimensions": [
"gridlatitude",
"rho",
"basin",
"time"
],
"frequency": "mon",
"long_name": "Ocean Y Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "msftyrhompa",
"positive": "",
"standard_name": "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection",
"type": "real",
"units": "kg s-1",
"valid_max": "",
"valid_min": ""
},
"ocontempmint": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Full column sum of density*cell thickness*conservative temperature. If the model is Boussinesq, then use Boussinesq reference density for the density factor.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Depth Integral of Product of Sea Water Density and Conservative Temperature",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "ocontempmint",
"positive": "",
"standard_name": "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density",
"type": "real",
"units": "degC kg m-2",
"valid_max": "",
"valid_min": ""
},
"opottempmint": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Integral over the full ocean depth of the product of sea water density and potential temperature.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Integral with Respect to Depth of Product of Sea Water Density and Potential Temperature",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "opottempmint",
"positive": "",
"standard_name": "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density",
"type": "real",
"units": "degC kg m-2",
"valid_max": "",
"valid_min": ""
},
"pbo": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "'Sea water pressure' is the pressure that exists in the medium of sea water. It includes the pressure due to overlying sea water, sea ice, air and any other medium that may be present.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Sea Water Pressure at Sea Floor",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "pbo",
"positive": "",
"standard_name": "sea_water_pressure_at_sea_floor",
"type": "real",
"units": "Pa",
"valid_max": "",
"valid_min": ""
},
"prsn": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "At surface; includes precipitation of all forms of water in the solid phase",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Snowfall Flux where Ice Free Ocean over Sea",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "prsn",
"positive": "",
"standard_name": "snowfall_flux",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"pso": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Sea water pressure' is the pressure that exists in the medium of sea water. It includes the pressure due to overlying sea water, sea ice, air and any other medium that may be present.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Sea Water Pressure at Sea Water Surface",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "pso",
"positive": "",
"standard_name": "sea_water_pressure_at_sea_water_surface",
"type": "real",
"units": "Pa",
"valid_max": "",
"valid_min": ""
},
"rlntds": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where ice_free_sea over sea time: mean",
"comment": "This is defined as 'where ice_free_sea over sea'",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Surface Net Downward Longwave Radiation",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "rlntds",
"positive": "down",
"standard_name": "surface_net_downward_longwave_flux",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"rsntds": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "This is the flux into the surface of liquid sea water only. This excludes shortwave flux absorbed by sea ice, but includes any light that passes through the ice and is absorbed by the ocean.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Net Downward Shortwave Radiation at Sea Water Surface",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "rsntds",
"positive": "down",
"standard_name": "net_downward_shortwave_flux_at_sea_water_surface",
"type": "real",
"units": "W m-2",
"valid_max": "",
"valid_min": ""
},
"sfdsi": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Downward Sea Ice Basal Salt Flux",
"modeling_realm": [
"ocean",
"seaIce"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "sfdsi",
"positive": "down",
"standard_name": "downward_sea_ice_basal_salt_flux",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"sfriver": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "This field is physical, and it arises when rivers carry a nonzero salt content. Often this is zero, with rivers assumed to be fresh.",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Salt Flux into Sea Water from Rivers",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "sfriver",
"positive": "",
"standard_name": "salt_flux_into_sea_water_from_rivers",
"type": "real",
"units": "kg m-2 s-1",
"valid_max": "",
"valid_min": ""
},
"sob": {
"cell_measures": "area: areacello",
"cell_methods": "area: mean where sea time: mean",
"comment": "Model prognostic salinity at bottom-most model grid cell",
"dimensions": [
"longitude",
"latitude",
"time"
],
"frequency": "mon",
"long_name": "Sea Water Salinity at Sea Floor",
"modeling_realm": [
"ocean"
],
"ok_max_mean_abs": "",
"ok_min_mean_abs": "",
"out_name": "sob",
"positive": "",
"standard_name": "sea_water_salinity_at_sea_floor",
"type": "real",
"units": "0.001",
"valid_max": "",
"valid_min": ""
},
"soga": {