-
Notifications
You must be signed in to change notification settings - Fork 1
/
fd.yaml
1186 lines (1184 loc) · 37.6 KB
/
fd.yaml
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
field_dictionary:
version_number: 0.0.0
institution: National ESPC, CSC & MCL Working Groups
description: Community-based dictionary for shared coupling fields
entries:
#
#-----------------------------------
# section: mediator export for atm/ocn flux calculation
#-----------------------------------
#
- standard_name: Faox_evap
alias: mean_evap_rate_atm_into_ocn
canonical_units: kg m-2 s-1
description: mediator export - atm/ocn evaporation water flux
#
- standard_name: Faox_evap_wiso
canonical_units: kg m-2 s-1
description: mediator export - atm/ocn evaporation water flux 16O, 18O, HDO
#
- standard_name: Faox_lat
alias: mean_laten_heat_flx_atm_into_ocn
canonical_units: W m-2
description: mediator export - atm/ocn surface latent heat flux
#
- standard_name: Faox_sen
alias: mean_sensi_heat_flx_atm_into_ocn
canonical_units: W m-2
description: mediator export - atm/ocn surface sensible heat flux
#
- standard_name: Faox_lwup
alias: mean_up_lw_flx_ocn
canonical_units: W m-2
description: mediator export - long wave radiation flux over the ocean
#
- standard_name: Faox_taux
alias: stress_on_air_ocn_zonal
canonical_units: N m-2
description: mediator export
#
- standard_name: Faox_tauy
alias: stress_on_air_ocn_merid
canonical_units: N m-2
description: mediator export
#
- standard_name: area
canonical_units: radians**2
description: mediator area for component
#
#-----------------------------------
# section: land export
#-----------------------------------
#
- standard_name: Fall_evap
canonical_units: kg m-2 s-1
description: land export
#
- standard_name: Fall_evap_wiso
canonical_units: kg m-2 s-1
description: land export
#
- standard_name: Fall_fco2_lnd
canonical_units: moles m-2 s-1
description: land export
#
- standard_name: Fall_fire
canonical_units: kg/m2/sec
description: land export - wild fire emission fluxes (1->10)
#
- standard_name: Fall_flxdst
canonical_units: kg m-2 s-1
description: land export - dust fluxes from land (sizes 1->4)
#
- standard_name: Fall_lat
canonical_units: W m-2
description: land export
#
- standard_name: Fall_lwup
canonical_units: W m-2
description: land export
#
- standard_name: Fall_sen
canonical_units: W m-2
description: land export
#
- standard_name: Fall_swnet
canonical_units: W m-2
description: land export
#
- standard_name: Fall_taux
canonical_units: N m-2
description: land export
#
- standard_name: Fall_tauy
canonical_units: N m-2
description: land export
#
- standard_name: Fall_voc
canonical_units: molecules/m2/sec
description: land export - MEGAN voc emission fluxes from land (1->20)
#
- standard_name: Sl_anidf
canonical_units: 1
description: land export
#
- standard_name: Sl_anidr
canonical_units: 1
description: land export
#
- standard_name: Sl_avsdf
canonical_units: 1
description: land export
#
- standard_name: Sl_avsdr
canonical_units: 1
description: land export
#
- standard_name: Sl_ddvel
canonical_units: cm/sec
description: land export - dry deposition velocities from (1->80)
#
- standard_name: Sl_fv
canonical_units: m s-1
description: land export
#
- standard_name: Sl_fztop
canonical_units: m
description: land export
#
- standard_name: Sl_lfrac
canonical_units: 1
description: land export
#
- standard_name: Sl_lfrin
canonical_units: 1
description: land export
#
- standard_name: Sl_qref
canonical_units: kg kg-1
description: land export
#
- standard_name: Sl_qref_wiso
canonical_units: kg kg-1
description: land export
#
- standard_name: Sl_ram1
canonical_units: s/m
description: land export
#
- standard_name: Sl_snowh
canonical_units: m
description: land export
#
- standard_name: Sl_snowh_wiso
canonical_units: m
description: land export
#
- standard_name: Sl_soilw
canonical_units: m3/m3
description: land export
#
- standard_name: Sl_t
canonical_units: K
description: land export
#
- standard_name: Sl_topo_elev
canonical_units: m
description: land export to mediator in elevation classes (1->glc_nec)
#
- standard_name: Sl_topo
canonical_units: m
description: mediator export to glc - no levation classes
#
- standard_name: Sl_tsrf_elev
canonical_units: deg C
description: land export to mediator in elevation classes (1->glc_nec)
#
- standard_name: Sl_tsrf
canonical_units: deg C
description: mediator export to gcl with no elevation classes
#
- standard_name: Sl_tref
canonical_units: K
description: mediator export to glc - no levation classes
#
- standard_name: Sl_u10
canonical_units: m
description: land export
#
#-----------------------------------
# section: atmosphere export
#-----------------------------------
#
- standard_name: Faxa_nhx
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_noy
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_bcph
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_ocph
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_dstdry
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_dstwet
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_swdn
alias: mean_down_sw_flx
canonical_units: W m-2
description: atmosphere export
mean downward SW heat flux
#
- standard_name: Faxa_lwdn
alias: mean_down_lw_flx
canonical_units: W m-2
description: atmosphere export
mean downward SW heat flux
#
- standard_name: Faxa_ndep
canonical_units: kg(N)/m2/sec
description: atmosphere export to land and ocean - currently nhx and noy
#
- standard_name: Faxa_prec_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_rain
alias: mean_prec_rate
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_rain_wiso
alias: mean_prec_rate_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_rainc
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_rainc_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_rainl
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_rainl_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_snow
alias: mean_fprec_rate
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_snow_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_snowc
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_snowc_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_snowl
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_snowl_wiso
canonical_units: kg m-2 s-1
description: atmosphere export
#
- standard_name: Faxa_swnet
canonical_units: W m-2
description: atmosphere export
#
- standard_name: Faxa_lwnet
canonical_units: W m-2
description: atmosphere export
#
- standard_name: Faxa_swndf
alias: mean_down_sw_ir_dif_flx
canonical_units: W m-2
description: atmosphere export - mean surface downward nir diffuse flux
#
- standard_name: Faxa_swndr
alias: mean_down_sw_ir_dir_flx
canonical_units: W m-2
description: atmosphere export - mean surface downward nir direct flux
#
- standard_name: Faxa_swvdf
alias: mean_down_sw_vis_dif_flx
canonical_units: W m-2
description: atmosphere export - mean surface downward uv+vis diffuse flux
#
- standard_name: Faxa_swvdr
alias: mean_down_sw_vis_dir_flx
canonical_units: W m-2
description: atmosphere export - mean surface downward uv+visvdirect flux
#
- standard_name: Sa_co2diag
canonical_units: 1e-6 mol/mol
description: atmosphere export - diagnostic CO2 at the lowest model level
#
- standard_name: Sa_co2prog
canonical_units: 1e-6 mol/mol
description: atmosphere export - prognostic CO2 at the lowest model level
#
- standard_name: Sa_o3
canonical_units: mol/mol
description: atmosphere export - O3 in the lowest model layer (prognosed or prescribed)
#
- standard_name: Sa_topo
alias: inst_surface_height
canonical_units: m
description: atmosphere export - topographic height
#
- standard_name: Sa_dens
alias: air_density_height_lowest
canonical_units: kg m-3
description: atmosphere export - density at the lowest model layer
#
- standard_name: Sa_pbot
alias: inst_pres_height_lowest
canonical_units: Pa
description: atmosphere export - pressure at lowest model layer
#
- standard_name: Sa_pslv
alias: inst_pres_height_surface
canonical_units: Pa
description: atmosphere export
#
- standard_name: Sa_ptem
canonical_units: K
description: atmosphere export - bottom layer potential temperature
#
- standard_name: Sa_shum
alias: inst_spec_humid_height_lowest
canonical_units: kg kg-1
description: atmosphere export - bottom layer specific humidity
#
- standard_name: Sa_shum_wiso
alias: inst_spec_humid_height_lowest_wiso
canonical_units: kg kg-1
description: atmosphere export - bottom layer specific humidity 16O, 18O, HDO
#
- standard_name: Sa_tbot
alias: inst_temp_height_lowest
canonical_units: K
description: atmosphere export - bottom layer temperature
#
- standard_name: Sa_tskn
alias: inst_temp_skin_temperature
canonical_units: K
description: atmosphere export - sea surface skin temperature
#
- standard_name: Sa_u
alias: inst_zonal_wind_height_lowest
canonical_units: m s-1
description: atmosphere export - bottom layer zonal wind
#
- standard_name: Sa_v
alias: inst_merid_wind_height_lowest
canonical_units: m s-1
description: atmosphere export - bottom layer meridional wind
#
- standard_name: Sa_wspd
alias: inst_wind_speed_height_lowest
canonical_units: m s-1
description: atmosphere export - bottom layer wind speed
#
- standard_name: Sa_z
alias: inst_height_lowest
canonical_units: m
description: atmosphere export - bottom layer height
#
- standard_name: Faxa_taux
alias: mean_zonal_moment_flx_atm
canonical_units: N m-2
description: atmosphere export - zonal component of momentum flux
#
- standard_name: Faxa_tauy
alias: mean_merid_moment_flx_atm
canonical_units: N m-2
description: atmosphere export - meridional component of momentum flux
#
- standard_name: Faxa_lat
alias: mean_laten_heat_flx_atm
canonical_units: W m-2
description: atmosphere export
#
- standard_name: Faxa_sen
alias: mean_sensi_heat_flx_atm
canonical_units: W m-2
description: atmosphere export
#
#-----------------------------------
# section: atmosphere import
#-----------------------------------
#
- standard_name: Faxx_evap
canonical_units: kg m-2 s-1
description: to atm merged water evaporation flux
#
- standard_name: Faxx_evap_wiso
canonical_units: kg m-2 s-1
description: to atm merged water evaporation flux for 16O, 18O and HDO
#
- standard_name: Faxx_lat
alias: mean_laten_heat_flx
canonical_units: W m-2
description: to to atm merged latent heat flux
#
- standard_name: Faxx_lwup
canonical_units: W m-2
description: to atm merged outgoing longwave radiation
#
- standard_name: Faxx_sen
alias: mean_sensi_heat_flx
canonical_units: W m-2
description: to atm merged sensible heat flux
#
- standard_name: Faxx_taux
alias: mean_zonal_moment_flx
canonical_units: N m-2
description: to atm merged zonal surface stress
#
- standard_name: Faxx_tauy
alias: mean_merid_moment_flx
canonical_units: N m-2
description: to atm merged meridional surface stress
#
- standard_name: Sx_anidf
canonical_units: 1
description: atmosphere import
description: to atm merged surface diffuse albedo (near-infrared radiation)
#
- standard_name: Sx_anidr
canonical_units: 1
description: to atm merged direct surface albedo (near-infrared radiation)
#
- standard_name: Sx_avsdf
canonical_units: 1
description: to atm merged surface diffuse albedo (visible radation)
#
- standard_name: Sx_avsdr
canonical_units: 1
description: to atm merged direct surface albedo (visible radiation)
#
- standard_name: Sx_qref
canonical_units: kg kg-1
description: atmosphere import
#
- standard_name: Sx_qref_wiso
canonical_units: kg kg-1
description: atmosphere import
#
- standard_name: Sx_t
alias: surface_temperature
canonical_units: K
description: atmosphere import
#
- standard_name: Sx_tref
canonical_units: K
description: atmosphere import
#
- standard_name: Sx_u10
canonical_units: m
description: atmosphere import
#
#-----------------------------------
# section: land-ice export
# Note that the fields sent from glc->med do NOT have elevation classes,
# but the fields from med->lnd are broken into multiple elevation classes
#-----------------------------------
#
- standard_name: Figg_rofi
canonical_units: kg m-2 s-1
description: land-ice export - glc frozen runoff_iceberg flux to ice
#
- standard_name: Figg_rofi_wiso
canonical_units: kg m-2 s-1
description: land-ice export - glc frozen runoff_iceberg flux to ice for 16O, 18O, HDO
#
- standard_name: Flgg_hflx
canonical_units: W m-2
description: land-ice export to mediator (no elevation classes)
Downward heat flux from glacier interior, from mediator, elev class 0
#
- standard_name: Flgg_hflx_elev
canonical_units: W m-2
description: mediator land-ice export to lnd (elevation classes 1->glc_nec)
Downward heat flux from glacier interior, from mediator, elev class 1->glc_nec
#
- standard_name: Sg_area
canonical_units: area internal to the CISM grid in radians**2
description: land-ice export to mediator (no elevation classes)
#
- standard_name: Sg_ice_covered
canonical_units: 1
description: land-ice export to mediator (no elevation classes)
#
- standard_name: Sg_ice_covered_elev
canonical_units: 1
description: mediator land-ice export to lnd (elevation classes 1->glc_nec)
#
- standard_name: Sg_icemask
canonical_units: 1
description: land-ice export
#
- standard_name: Sg_icemask_coupled_fluxes
canonical_units: 1
description: land-ice export
#
- standard_name: Sg_topo
canonical_units: m
description: land-ice export to mediator (no elevation classes)
#
- standard_name: Sg_topo_elev
canonical_units: m
description: mediator land-ice export to lnd (elevation classes 1->glc_nec)
#
- standard_name: Fogg_rofi
canonical_units: kg m-2 s-1
description: land-ice export - glacier_frozen_runoff_flux_to_ocean
#
- standard_name: Fogg_rofi_wiso
canonical_units: kg m-2 s-1
description: land-ice export - glacier_frozen_runoff_flux_to_ocean for 16O, 18O, HDO
#
- standard_name: Fogg_rofl
canonical_units: kg m-2 s-1
description: land-ice export - glacier liquid runoff flux to ocean
#
- standard_name: Fogg_rofl_wiso
canonical_units: kg m-2 s-1
description: land-ice export - glacier_frozen_runoff_flux_to_ocean for 16O, 18O, HDO
#
#-----------------------------------
# section: sea-ice export
#-----------------------------------
#
- standard_name: Faii_evap
alias: mean_evap_rate_atm_into_ice
canonical_units: kg m-2 s-1
description: sea-ice export
#
- standard_name: Faii_evap_wiso
canonical_units: kg m-2 s-1
description: sea-ice export for 16O, 18O, HDO
#
- standard_name: Faii_lat
alias: mean_laten_heat_flx_atm_into_ice
canonical_units: W m-2
description: sea-ice export to atm - atm/ice latent heat flux
#
- standard_name: Faii_sen
alias: mean_sensi_heat_flx_atm_into_ice
canonical_units: W m-2
description: sea-ice export to atm - atm/ice sensible heat flux
#
- standard_name: Faii_lwup
alias: mean_up_lw_flx_ice
canonical_units: W m-2
description: sea-ice export -outgoing logwave radiation
#
- standard_name: Faii_swnet
canonical_units: W m-2
description: sea-ice export to atm
#
- standard_name: Faii_taux
alias: stress_on_air_ice_zonal
canonical_units: N m-2
description: sea-ice export to atm - air ice zonal stress
#
- standard_name: Faii_tauy
alias: stress_on_air_ice_merid
canonical_units: N m-2
description: sea-ice export - air ice meridional stress
#
- standard_name: Fioi_bcphi
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - hydrophilic black carbon flux to ocean
#
- standard_name: Fioi_bcpho
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - hydrophobic black carbon flux to ocean
#
- standard_name: Fioi_flxdst
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - dust aerosol flux to ocean
#
- standard_name: Fioi_melth
alias: net_heat_flx_to_ocn
canonical_units: W m-2
description: sea-ice export to ocean - net heat flux to ocean
#
- standard_name: Fioi_melth_wiso
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - isotope head flux to ocean for 16O, 18O, HDO
#
- standard_name: Fioi_melth_HDO
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - isotope head flux to ocean
#
- standard_name: Fioi_meltw
alias: mean_fresh_water_to_ocean_rate
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting)
#
- standard_name: Fioi_meltw_wiso
alias: mean_fresh_water_to_ocean_rate_wiso
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) for 16O, 18O, HDO
#
- standard_name: Fioi_salt
alias: mean_salt_rate
canonical_units: kg m-2 s-1
description: sea-ice export to ocean - salt to ocean (salt flux from melting)
#
- standard_name: Fioi_swpen
alias: mean_sw_pen_to_ocn
canonical_units: W m-2
description: sea-ice export to ocean - flux of shortwave through ice to ocean
#
- standard_name: Fioi_swpen_vdr
alias: mean_sw_pen_to_ocn_vis_dir_flx
canonical_units: W m-2
description: sea-ice export to ocean - flux of vis dir shortwave through ice to ocean
#
- standard_name: Fioi_swpen_vdf
alias: mean_sw_pen_to_ocn_vis_dif_flx
canonical_units: W m-2
description: sea-ice export to ocean - flux of vif dir shortwave through ice to ocean
#
- standard_name: Fioi_swpen_idr
alias: mean_sw_pen_to_ocn_ir_dir_flx
canonical_units: W m-2
description: sea-ice export to ocean - flux of ir dir shortwave through ice to ocean
#
- standard_name: Fioi_swpen_idf
alias: mean_sw_pen_to_ocn_ir_dif_flx
canonical_units: W m-2
description: sea-ice export to ocean - flux of ir dif shortwave through ice to ocean
#
- standard_name: Fioi_taux
alias: stress_on_ocn_ice_zonal
canonical_units: N m-2
description: sea-ice export to ocean - ice ocean zonal stress
#
- standard_name: Fioi_tauy
alias: stress_on_ocn_ice_merid
canonical_units: N m-2
description: sea-ice export to ocean - ice ocean meridional stress
#
- standard_name: Si_anidf
alias: inst_ice_ir_dif_albedo
canonical_units: 1
description: sea-ice export to atm
#
- standard_name: Si_anidr
alias: inst_ice_ir_dir_albedo
canonical_units: 1
description: sea-ice export to atm
#
- standard_name: Si_avsdf
alias: inst_ice_vis_dif_albedo
canonical_units: 1
description: sea-ice export to atm
#
- standard_name: Si_avsdr
alias: inst_ice_vis_dir_albedo
canonical_units: 1
description: sea-ice export to atm
#
- standard_name: Si_ifrac
alias: ice_fraction
canonical_units: 1
description: sea-ice export to atm
ice fraction (varies with time)
#
- standard_name: Si_ifrac_n
alias: ice_fraction_n
canonical_units: 1
description: sea-ice export - ice fraction per category (varies with time)
#
- standard_name: Si_imask
alias: ice_mask
canonical_units: 1
description: sea-ice export - ice mask
#
- standard_name: Si_qref
canonical_units: kg kg-1
description: sea-ice export to atm
#
- standard_name: Si_qref_wiso
canonical_units: kg kg-1
description: sea-ice export to atm
#
- standard_name: Si_t
alias: sea_ice_surface_temperature
canonical_units: K
description: sea-ice export
#
- standard_name: Si_tref
canonical_units: K
description: sea-ice export
#
- standard_name: Si_u10
canonical_units: m
description: sea-ice export
#
- standard_name: Si_vice
alias: mean_ice_volume
canonical_units: m
description: sea-ice export
volume of ice per unit area
#
- standard_name: Si_snowh
canonical_units: m
description: sea-ice export - surface_snow_water_equivalent
#
- standard_name: Si_vsno
alias: mean_snow_volume
canonical_units: m
description: sea-ice export - volume of snow per unit area
#
- standard_name: Si_thick
canonical_units: m
description: sea-ice export - ice thickness
#
- standard_name: Si_floediam
canonical_units: m
description: sea-ice export - ice floe diameter
#
#-----------------------------------
# section: ocean export to mediator
#-----------------------------------
#
- standard_name: Fioo_q
alias: freezing_melting_potential
canonical_units: W m-2
description: ocean export
#
- standard_name: Faoo_fco2_ocn
canonical_units: moles m-2 s-1
description: ocean export
#
- standard_name: So_anidf
canonical_units: 1
description: ocean export
#
- standard_name: So_anidr
canonical_units: 1
description: ocean export
#
- standard_name: So_avsdf
canonical_units: 1
description: ocean export
#
- standard_name: So_avsdr
canonical_units: 1
description: ocean export
#
- standard_name: So_bldepth
alias: mixed_layer_depth
canonical_units: m
description: ocean export
#
- standard_name: So_dhdx
alias: sea_surface_slope_zonal
canonical_units: m m-1
description: ocean export
#
- standard_name: So_dhdy
alias: sea_surface_slope_merid
canonical_units: m m-1
description: ocean export
#
- standard_name: So_duu10n
canonical_units: m2 s-2
description: ocean export
#
- standard_name: So_fswpen
canonical_units: 1
description: ocean export
#
- standard_name: So_ofrac
canonical_units: 1
description: ocean export
#
- standard_name: So_omask
alias: ocean_mask
canonical_units: 1
description: ocean export
#
- standard_name: So_qref
canonical_units: kg kg-1
description: ocean export
#
- standard_name: So_qref_wiso
canonical_units: kg kg-1
description: ocean export
#
- standard_name: So_re
canonical_units: 1
description: ocean export
#
- standard_name: So_qref_wiso
canonical_units: kg kg-1
description: ocean export
#
- standard_name: So_roce_wiso
canonical_units: unitless
description: ocean export
#
- standard_name: So_s
alias: s_surf
canonical_units: g kg-1
description: ocean export
#
- standard_name: So_s_depth
alias: s_surf_depths
canonical_units: g kg-1
description: ocean salinity at multiple depths
#
- standard_name: So_ssq
canonical_units: kg kg-1
description: ocean export
#
- standard_name: So_t
alias: sea_surface_temperature
canonical_units: K
description: ocean export
#
- standard_name: So_t_depth
alias: sea_surface_temperature_depths
canonical_units: K
description: ocean temperatures at multiple depths
#
- standard_name: So_tref
canonical_units: K
description: ocean export
#
- standard_name: So_u
alias: ocn_current_zonal
canonical_units: m s-1
description: ocean export
#
- standard_name: So_u10
canonical_units: m
description: ocean export
#
- standard_name: So_ustar
canonical_units: m s-1
description: ocean export
#
- standard_name: So_v
alias: ocn_current_merid
canonical_units: m s-1
description: ocean export
#
#-----------------------------------
# section: river export
#-----------------------------------
#
- standard_name: Firr_rofi
canonical_units: kg m-2 s-1
description: river export - water flux into sea ice due to runoff (frozen)
#
- standard_name: Firr_rofi_wiso
canonical_units: kg m-2 s-1
description: river export - water flux into sea ice due to runoff (frozen) for 16O, 18O, HDO
#
- standard_name: Fixx_rofi
canonical_units: kg m-2 s-1
description: frozen runoff to ice from river and land-ice
#
- standard_name: Fixx_rofi_wiso
canonical_units: kg m-2 s-1
description: frozen runoff to ice from river and land-ice for 16O, 18O, HDO
#
#-----------------------------------
# section: lnd export to glc
#-----------------------------------
#
- standard_name: Flgl_qice
canonical_units: kg m-2 s-1
description: mediator export to glc no elevation classes
#
- standard_name: Flgl_qice_elev
canonical_units: kg m-2 s-1
description: land export to mediator in elevation classes (1->glc_nec)
#
#-----------------------------------
# section: lnd export to river
#-----------------------------------
#
- standard_name: Flrl_irrig
canonical_units: kg m-2 s-1
description: land export to river
#
- standard_name: Flrl_rofdto
canonical_units: kg m-2 s-1
description: land export to river
#
- standard_name: Flrl_rofgwl
canonical_units: kg m-2 s-1
description: land export to river
#
- standard_name: Flrl_rofi
canonical_units: kg m-2 s-1
description: land export to river
#
- standard_name: Flrl_rofsub
canonical_units: kg m-2 s-1
description: land export to river
#
- standard_name: Flrl_rofsur
canonical_units: kg m-2 s-1
description: land export to river
#
#-----------------------------------
# section: river export
#-----------------------------------
#
- standard_name: Flrr_flood
canonical_units: kg m-2 s-1
description: river export to land - water flux due to flooding
#
- standard_name: Flrr_flood_wiso
canonical_units: kg m-2 s-1
description: river export to land - water flux due to flooding for 16O, 18O, HDO
#
- standard_name: Flrr_volr
canonical_units: m
description: river export to land - river channel total water volume
#
- standard_name: Flrr_volr_wiso
canonical_units: m
description: river export to land - river channel total water volume from 16O, 18O, HDO
#
- standard_name: Flrr_volrmch
canonical_units: m
description: river export to land - river channel main channel water volume
#
- standard_name: Flrr_volrmch_wiso
canonical_units: m
description: river export to land - river channel main channel water volume from 16O, 18O, HDO
#
- standard_name: Sr_tdepth
canonical_units: m
description: river export to land - tributary channel water depth
#
- standard_name: Sr_tdepth_max
canonical_units: m
description: river export to land - tributary channel bankfull depth
#
- standard_name: Forr_rofi
canonical_units: kg m-2 s-1
description: river export to ocean - water flux due to runoff (frozen)
#
- standard_name: Forr_rofi_wiso
canonical_units: kg m-2 s-1
description: river export to ocean - water flux due to runoff (frozen) for 16O, 18O, HDO
#
- standard_name: Forr_rofl
canonical_units: kg m-2 s-1
description: river export to ocean - water flux due to runoff (liquid)
#
- standard_name: Forr_rofl_wiso
canonical_units: kg m-2 s-1
description: river export to ocean - water flux due to runoff (frozen) for 16O, 18O, HDO
#
#-----------------------------------
# section: ocean import
#-----------------------------------
#
- standard_name: Foxx_hrain
alias: heat_content_lprec
canonical_units: W m-2
description: to ocn heat content of rain
#
- standard_name: Foxx_hsnow
alias: heat_content_fprec