-
Notifications
You must be signed in to change notification settings - Fork 0
/
fd_nems.yaml
1070 lines (1070 loc) · 33.4 KB
/
fd_nems.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
source: automatically generated by the NUOPC Layer
description: Community-based dictionary for shared coupling fields
entries:
#
#-----------------------------------
# section: mediator calculation for atm/ocn flux calculation
#-----------------------------------
#
- standard_name: Faox_lat
alias: mean_laten_heat_flx_atm_into_ocn
canonical_units: W m-2
description: mediator calculation - atm/ocn surface latent heat flux
#
- standard_name: Faox_lwup
alias: mean_up_lw_flx_ocn
canonical_units: W m-2
description: mediator calculation - long wave radiation flux over the ocean
#
- standard_name: Faox_taux
alias: stress_on_air_ocn_zonal
canonical_units: N m-2
description: mediator calculation
#
- standard_name: Faox_tauy
alias: stress_on_air_ocn_merid
canonical_units: N m-2
description: mediator calculation
#
#-----------------------------------
# section: atmosphere export
#-----------------------------------
#
- standard_name: Faxa_bcph
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
#
#-----------------------------------
# section: 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 LW heat flux
#
- standard_name: Faxa_rain
alias: mean_prec_rate
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_rainl
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_snowc
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_swnet
alias: mean_net_sw_flx
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_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 - instantaneous pressure land and sea surface
#
- 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_tbot
alias: inst_temp_height_lowest
canonical_units: K
description: atmosphere export - bottom layer temperature
#
- standard_name: Sa_tskn
alias: inst_temp_height_surface
- 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: Sa_topo
alias: inst_surface_height
canonical_units: m
description: atmosphere export - topographic 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: Faxx_evap
canonical_units: kg m-2 s-1
description: atmosphere import
#
- standard_name: Faxa_lat
alias: mean_laten_heat_flx
canonical_units: W m-2
description: atmosphere export - latent heat flux
#
- standard_name: Faxx_lat
alias: mean_laten_heat_flx
canonical_units: W m-2
description: atmosphere import
#
- standard_name: Faxx_lwup
alias: mean_up_lw_flx
canonical_units: W m-2
description: atmosphere import - merged ocn/ice flux
#
- standard_name: Faxx_sen
alias: mean_sensi_heat_flx
canonical_units: W m-2
description: atmosphere import
#
- standard_name: Faxx_taux
alias: mean_zonal_moment_flx
canonical_units: N m-2
description: atmosphere import - zonal component of momentum flux
#
- standard_name: Faxx_tauy
alias: mean_merid_moment_flx
canonical_units: N m-2
description: atmosphere import - meridional component of momentum flux
#
- standard_name: Sa_ofrac
alias: openwater_frac_in_atm
canonical_units: 1
description: atm export to mediator - open water ocean fraction (varies with time)
#
- standard_name: Sa_u10m
alias: inst_zonal_wind_height10m
canonical_units: m s-1
description: atmosphere export - zonal wind height 10m
- standard_name: Sa_u10m
alias: eastward_wind_at_10m_height
#
- standard_name: Sa_v10m
alias: inst_merid_wind_height10m
canonical_units: m s-1
description: atmosphere export - meridional wind height 10m
- standard_name: Sa_v10m
alias: northward_wind_at_10m_height
#
- standard_name: Sa_wspd10m
alias: inst_wind_speed_height10m
canonical_units: m s-1
description: atmosphere export - wind speed height 10m
#
- standard_name: Sa_t2m
alias: inst_temp_height2m
canonical_units: K
description: atmosphere export - temperature height 2m
#
- standard_name: Sa_q2m
alias: inst_spec_humid_height2m
canonical_units: kg kg -1
description: atmosphere export - specifc humidity height 2m
#
- standard_name: canopy_moisture_storage
canonical_units: m
description: canopy moisture content
#
- standard_name: inst_aerodynamic_conductance
canonical_units: m
description: aerodynamic conductance
#
- standard_name: inst_canopy_resistance
canonical_units: s m-1
description: canopy aerodynamic resistance
#
- standard_name: leaf_area_index
canonical_units: 1
description: leaf area index
#
- standard_name: temperature_of_soil_layer
canonical_units: K
description: temperature in soil layer
#
- standard_name: height
canonical_units: m
description: orography
#
#-----------------------------------
# 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_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_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_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_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/s
description: sea-ice export
#
- standard_name: Si_vice
alias: mean_ice_volume
canonical_units: m
description: sea-ice export - volume of ice per unit are
#
- 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: So_bldepth
alias: mixed_layer_depth
canonical_units: m
description: ocean export
#
- standard_name: So_h
alias: sea_surface_height_above_sea_level
canonical_units: m
description: ocean export
- standard_name: So_h
alias: seahgt
#
- 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_re
canonical_units: 1
description: ocean export
#
- standard_name: So_s
alias: s_surf
canonical_units: g kg-1
description: ocean export
#
- 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_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: ocean import
#-----------------------------------
#
- standard_name: mean_runoff_rate
canonical_units: kg m-2 s-1
description: ocean import - total runoff to ocean
#
- standard_name: mean_runoff_heat_flux
canonical_units: kg m-2 s-1
description: ocean import - heat content of runoff
#
- standard_name: mean_calving_rate
canonical_units: kg m-2 s-1
description: ocean import - total calving to ocean
#
- standard_name: mean_calving_heat_flux
canonical_units: kg m-2 s-1
description: ocean import - heat content of calving
#
- standard_name: Foxx_rofi
canonical_units: kg m-2 s-1
description: ocean import - water flux due to runoff (frozen)
#
- standard_name: Foxx_rofl
alias: mean_runoff_rate
canonical_units: kg m-2 s-1
description: ocean import - water flux due to runoff (liquid)
#
- standard_name: Foxx_swnet
alias: mean_net_sw_flx
canonical_units: W m-2
description: ocean import - net shortwave radiation to ocean
#
- standard_name: Foxx_swnet_vdr
alias: mean_net_sw_vis_dir_flx
canonical_units: W m-2
description: ocean import - net shortwave visible direct radiation to ocean
#
- standard_name: Foxx_swnet_vdf
alias: mean_net_sw_vis_dif_flx
canonical_units: W m-2
description: ocean import - net shortwave visible diffuse radiation to ocean
#
- standard_name: Foxx_swnet_idr
alias: mean_net_sw_ir_dir_flx
canonical_units: W m-2
description: ocean import - net shortwave ir direct radiation to ocean
#
- standard_name: Foxx_swnet_idf
alias: mean_net_sw_ir_dif_flx
canonical_units: W m-2
description: ocean import - net shortwave ir diffuse radiation to ocean
#
- standard_name: Foxx_sen
alias: mean_sensi_heat_flx
canonical_units: W m-2
description: ocean import - sensible heat flux into ocean
#
- standard_name: Foxx_lat
canonical_units: W m-2
description: ocean import - latent heat flux into ocean
#
- standard_name: Foxx_taux
alias: mean_zonal_moment_flx
canonical_units: N m-2
description: ocean import - zonal surface stress to ocean
#
- standard_name: Foxx_tauy
alias: mean_merid_moment_flx
canonical_units: N m-2
description: ocean import - meridional surface stress to ocean
#
#-----------------------------------
# mediator fields
#-----------------------------------
#
- standard_name: cpl_scalars
canonical_units: unitless
#
- standard_name: frac
canonical_units: 1
#
- standard_name: mask
canonical_units: 1
#
#-----------------------------------
# aliased fields for active and datm
#-----------------------------------
#
- standard_name: mean_net_lw_flx
canonical_units: W m-2
- alias: Faxa_lwnet
standard_name : mean_net_lw_flx
description: atmosphere export - mean net longwave flux from atm
- alias: Foxx_lwnet
standard_name : mean_net_lw_flx
description: mediator calculation - atm/ocn net longwave flux
#
- standard_name: mean_sensi_heat_flx
canonical_units: W m-2
- alias: Faxa_sen
standard_name : mean_sensi_heat_flx
description: atmosphere export - sensible heat flux
- alias: Faox_sen
standard_name : mean_sensi_heat_flx
description: mediator calculation - atm/ocn surface sensible heat flux
#
- standard_name: mean_evap_rate
canonical_units: kg m-2 s-1
- alias: Faxa_evap
standard_name : mean_evap_rate
description: atmosphere export - latent heat flux conversion
- alias: Faox_evap
standard_name : mean_evap_rate
description: mediator calculation - atm/ocn specific humidity flux
#
#-----------------------------------
# fields to use fluxes from mediator
#-----------------------------------
#
- 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
#
#-----------------------------------
# section: atmosphere fields that need to be defined but are not used
#-----------------------------------
#
- standard_name: inst_down_lw_flx
canonical_units: W m-2
- standard_name: inst_net_lw_flx
canonical_units: W m-2
- standard_name: inst_down_sw_flx
canonical_units: W m-2
- standard_name: inst_net_sw_flx
canonical_units: W m-2
- standard_name: inst_net_sw_ir_dir_flx
canonical_units: W m-2
- standard_name: inst_net_sw_ir_dif_flx
canonical_units: W m-2
- standard_name: inst_net_sw_vis_dir_flx
canonical_units: W m-2
- standard_name: inst_net_sw_vis_dif_flx
canonical_units: W m-2
- standard_name: inst_down_sw_ir_dif_flx
canonical_units: W m-2
- standard_name: inst_down_sw_ir_dir_flx
canonical_units: W m-2
- standard_name: inst_down_sw_vis_dif_flx
canonical_units: W m-2
- standard_name: inst_down_sw_vis_dir_flx
canonical_units: W m-2
- standard_name: inst_surface_height
canonical_units: m
- standard_name: inst_zonal_moment_flx
canonical_units: N m-2
- standard_name: inst_merid_moment_flx
canonical_units: N m-2
- standard_name: inst_sensi_heat_flx
canonical_units: N m-2
- standard_name: inst_laten_heat_flx
canonical_units: N m-2
- standard_name: inst_tracer_mass_frac
canonical_units: 1
- standard_name: inst_tracer_up_surface_flx
canonical_units: kg m-2 s-1
- standard_name: inst_tracer_down_surface_flx
canonical_units: kg m-2 s-1
- standard_name: inst_tracer_clmn_mass_dens
canonical_units: g m-2
- standard_name: inst_tracer_anth_biom_flx
canonical_units: ug m-2 s-1
description: atmosphere export
- standard_name: inst_pres_interface
canonical_units: Pa
- standard_name: inst_pres_levels
canonical_units: Pa
- standard_name: inst_geop_interface
canonical_units: tbd
- standard_name: inst_geop_levels
canonical_units: tbd
- standard_name: inst_temp_interface
canonical_units: K
- standard_name: inst_temp_levels
canonical_units: K
- standard_name: inst_zonal_wind_levels
canonical_units: m s-1
- standard_name: inst_merid_wind_levels
canonical_units: m s-1
- standard_name: inst_omega_levels
canonical_units: tbd
- standard_name: inst_tracer_mass_frac
canonical_units: 1
- standard_name: inst_soil_moisture_content
canonical_units: tbd
- standard_name: soil_type
canonical_units: tbd
- standard_name: inst_pbl_height
canonical_units: tbd
- standard_name: surface_cell_area
canonical_units: tbd
- standard_name: inst_convective_rainfall_amount
canonical_units: tbd
- standard_name: inst_spec_humid_conv_tendency_levels
canonical_units: tbd
- standard_name: inst_exchange_coefficient_heat_levels
canonical_units: tbd
- standard_name: inst_friction_velocity
canonical_units: tbd
- standard_name: inst_rainfall_amount
canonical_units: tbd
- standard_name: inst_land_sea_mask
canonical_units: tbd
- standard_name: inst_temp_height_surface
canonical_units: tbd
- standard_name: inst_up_sensi_heat_flx
canonical_units: tbd
- standard_name: inst_lwe_snow_thickness
canonical_units: tbd
- standard_name: vegetation_type
canonical_units: tbd
- standard_name: inst_vegetation_area_frac
canonical_units: tbd
- standard_name: inst_surface_roughness
canonical_units: tbd
- standard_name: inst_zonal_moment_flx
canonical_units: N m-2
- standard_name: inst_merid_moment_flx
canonical_units: N m-2
- standard_name: inst_laten_heat_flx
canonical_units: W m-2
- standard_name: inst_sensi_heat_flx
canonical_units: W m-2
- standard_name: land_mask
canonical_units: 1
- standard_name: inst_cloud_frac_levels
canonical_units: 1
- standard_name: inst_ice_nonconv_tendency_levels
canonical_units: kg m-2 s-1
- standard_name: inst_liq_nonconv_tendency_levels
canonical_units: kg m-2 s-1
- standard_name: inst_surface_soil_wetness
canonical_units: 1
- standard_name: lake_fraction
canonical_units: 1
- standard_name: ice_fraction_in_atm
alias: sea_ice_area_fraction
canonical_units: 1
- standard_name: ocean_fraction
canonical_units: 1
- standard_name: surface_snow_area_fraction
canonical_units: 1
#
#-----------------------------------
# WW3 import
#-----------------------------------
#
- standard_name: sea_surface_height_above_sea_level
canonical_units: m
description: ww3 import
#
- standard_name: sea_surface_salinity
alias: s_surf
canonical_units: g kg-1
description: ww3 import
#
- standard_name: surface_eastward_sea_water_velocity
alias: ocn_current_zonal
canonical_units: m s-1
description: ww3 import
#
- standard_name: surface_northward_sea_water_velocity
alias: ocn_current_merid
canonical_units: m s-1
description: ww3 import
#
- standard_name: eastward_wind_at_10m_height
alias: inst_zonal_wind_height10m
canonical_units: m s-1
description: ww3 import
#
- standard_name: northward_wind_at_10m_height
alias: inst_merid_wind_height10m
canonical_units: m s-1
description: ww3 import
#
- standard_name: sea_ice_concentration
alias: ice_fraction
canonical_units: 1
description: ww3 import
#
#-----------------------------------
# WW3 export
#-----------------------------------
#
- standard_name: Sw_ch
alias: wave_induced_charnock_parameter
canonical_units: 1
description: ww3 export
- standard_name: Sw_ch
alias: charno
#
- standard_name: Sw_z0
alias: wave_z0_roughness_length
canonical_units: 1
description: ww3 export
- standard_name: Sw_z0
alias: z0rlen
#
- standard_name: Sw_ustokes
alias: eastward_stokes_drift_current
canonical_units: m s-1
description: ww3 export using ungridded dimension for drift components
- standard_name: Sw_ustokes
alias: uscurr
#
- standard_name: Sw_vstokes
alias: northward_stokes_drift_current
canonical_units: m s-1
description: ww3 export using ungridded dimension for drift components
- standard_name: Sw_vstokes
alias: vscurr
#
- standard_name: Sw_ustokes1
alias: eastward_partitioned_stokes_drift_1
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_ustokes1
alias: x1pstk
#
- standard_name: Sw_ustokes2
alias: eastward_partitioned_stokes_drift_2
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_ustokes2
alias: x2pstk
#
- standard_name: Sw_ustokes3
alias: eastward_partitioned_stokes_drift_3
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_ustokes3
alias: x3pstk
#
- standard_name: Sw_vstokes1
alias: northward_partitioned_stokes_drift_1
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_vstokes1
alias: y1pstk
#
- standard_name: Sw_vstokes2
alias: northward_partitioned_stokes_drift_2
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_vstokes2
alias: y2pstk
#
- standard_name: Sw_vstokes3
alias: northward_partitioned_stokes_drift_3
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_vstokes3
alias: y3pstk
#
- standard_name: Sw_wbcuru
alias: eastward_wave_bottom_current
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_wbcuru
alias: wbcuru
#
- standard_name: Sw_wbcurv
alias: northward_wave_bottom_current
canonical_units: m s-1
description: ww3 export
- standard_name: Sw_wbcurv
alias: wbcurv
#
- standard_name: Sw_wbcurp
alias: wave_bottom_current_period
canonical_units: s
description: ww3 export
- standard_name: Sw_wbcurp
alias: wbcurp
#
- standard_name: Sw_wavsuu
alias: eastward_wave_radiation_stress
canonical_units: N m-1
description: ww3 export
- standard_name: Sw_wavsuu
alias: wavsuu
#
- standard_name: Sw_wavsuv
alias: eastward_northward_wave_radiation_stress
canonical_units: N m-1
description: ww3 export
- standard_name: Sw_wavsuv
alias: wavsuv
#
- standard_name: Sw_wavsvv
alias: northward_wave_radiation_stress
canonical_units: Pa
description: ww3 export
- standard_name: Sw_wavsvv
alias: wavsvv
#
- standard_name: Sw_elevation_spectrum
alias: wave_elevation_spectrum
canonical_units: m2/s
description: wave elevation spectrum
#
#-----------------------------------
# section: FV3 atm export/import to/from JEDI
#-----------------------------------
#
- standard_name: u
canonical_units: m s-1
#
- standard_name: v
canonical_units: m s-1
#
- standard_name: ua
canonical_units: m s-1
#
- standard_name: va
canonical_units: m s-1
#
- standard_name: t
canonical_units: K
#
- standard_name: delp
canonical_units: Pa
#
- standard_name: sphum
canonical_units: kg kg-1
#