-
Notifications
You must be signed in to change notification settings - Fork 17
/
standard_names.xml
3448 lines (3448 loc) · 173 KB
/
standard_names.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<standard_names name="CCPP Standard Name Library" version="1.0">
<section name="dimensions"
comment="Dimension standard names may come in sets of six
related standard names for each dimension:\n
```\n
[dim_name]_dimension -- The full dimension size\n
[dim_name]_loop_extent -- Size of dim for current call\n
[dim_name]_begin - Start index for dimension\n
[dim_name]_end - End index for dimension\n
[dim_name]_index - Single index for dimension\n
[dim_name]_selection - Array of selected indices for
dimension\n
```\n
Note that the cap generator may substitute among
standard names in this category in order to
properly call suite parts and individual
schemes. In the substitutions below, the name on
the left is the standard_name in the dimensions
field of the caller while the name(s) on the right
is (are) the standard name(s) of the callee (in
the form used in the subroutine call).\n
```\n
[dim_name]_dimension ==> 1:[dim_name]_loop_extent\n
[dim_name]_loop_extent ==> 1:[dim_name]_loop_extent\n
[dim_name]_begin:[dim_name]_end ==> 1:[dim_name]_loop_extent\n
[dim_name]_begin:[dim_name]_end ==> 1:[dim_name]_dimension\n
```\n
Also note that horizontal_dimension should be used in
xxx_[timestep_]init and xxx_[timestep_]final routines
but not in xxx_run routines.\n
Currently, the only dimension which supports all
six dimension types is horizontal_dimension. This and
other supported dimension standard names are
listed below.\n">
<standard_name name="horizontal_dimension"
long_name="Size horizontal dimension">
<type units="count">integer</type>
</standard_name>
<standard_name name="vertical_layer_dimension"
long_name="number of vertical layers">
<type units="count">integer</type>
</standard_name>
<standard_name name="vertical_layer_dimension_extended_up_by_1"
long_name="number of vertical layers extended up by 1">
<type units="count">integer</type>
</standard_name>
<standard_name name="vertical_interface_dimension"
long_name="number of vertical interfaces">
<type units="count">integer</type>
</standard_name>
<standard_name name="vertical_layer_index"
long_name="index of a particular vertical layer">
<type units="index">integer</type>
</standard_name>
<standard_name name="vertical_interface_index"
long_name="index of a particular vertical interface">
<type units="index">integer</type>
</standard_name>
<standard_name name="vertical_index_at_surface_adjacent_layer">
<type units="index">integer</type>
</standard_name>
<standard_name name="vertical_index_at_top_adjacent_layer">
<type units="index">integer</type>
</standard_name>
<standard_name name="vertical_index_at_surface_interface">
<type units="index">integer</type>
</standard_name>
<standard_name name="vertical_index_at_top_interface">
<type units="index">integer</type>
</standard_name>
<standard_name name="number_of_openmp_threads"
long_name="Total number of thread blocks which the host model may use to call CCPP physics run groups during the CCPP run phase.">
<type units="count">integer</type>
</standard_name>
<standard_name name="ccpp_thread_number"
long_name="Number of current thread block. This variable may only be used during CCPP run phase">
<type units="index">integer</type>
</standard_name>
</section>
<section name="constants">
<standard_name name="avogadro_number">
<type kind="kind_phys" units="molecules mol-1">real</type>
</standard_name>
<standard_name name="base_state_surface_pressure_for_hybrid_vertical_coordinate">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="boltzmann_constant">
<type kind="kind_phys" units="J K-1">real</type>
</standard_name>
<standard_name name="gas_constant_of_dry_air">
<type kind="kind_phys" units="J kg-1 K-1">real</type>
</standard_name>
<standard_name name="seconds_in_calendar_day">
<type kind="kind_phys" units="s">integer</type>
</standard_name>
<standard_name name="specific_heat_of_dry_air_at_constant_pressure">
<type kind="kind_phys" units="J kg-1 K-1">real</type>
</standard_name>
<standard_name name="specific_heat_of_liquid_water_at_20c"
long_name="specific heat of liquid water at 20c">
<type kind="kind_phys" units="J kg-1 K-1">real</type>
</standard_name>
<standard_name name="latent_heat_of_vaporization_of_water_at_0c"
long_name="latent heat of vaporization of water at 0c">
<type kind="kind_phys" units="J kg-1">real</type>
</standard_name>
<standard_name name="dry_air_density_at_stp"
long_name="density of dry air at STP">
<type kind="kind_phys" units="kg m-3">real</type>
</standard_name>
<standard_name name="fresh_liquid_water_density_at_0c"
long_name="density of liquid water at 0c">
<type kind="kind_phys" units="kg m-3">real</type>
</standard_name>
<standard_name
name="ratio_of_water_vapor_to_dry_air_gas_constants_minus_one"
long_name="(Rwv / Rdair) - 1.0">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name
name="standard_gravitational_acceleration"
long_name="scalar constant representing gravitiational acceleration">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
</section>
<section name="coordinates">
<standard_name name="latitude">
<type kind="kind_phys" units="degree_north">real</type>
</standard_name>
<standard_name name="longitude">
<type kind="kind_phys" units="degree_east">real</type>
</standard_name>
<standard_name name="cell_area">
<type kind="kind_phys" units="m2">real</type>
</standard_name>
<standard_name name="cell_weight">
<type kind="kind_phys" units="1">real</type>
</standard_name>
</section>
<section name="state_variables"
comment="Note that appending '_on_previous_timestep' to standard_names in this section yields another valid standard_name">
<standard_name name="physics_state_due_to_dynamics">
<type kind="kind_phys" units="none">physics_state</type>
</standard_name>
<standard_name name="timestep_for_physics">
<type kind="kind_phys" units="s">integer</type>
</standard_name>
<standard_name name="total_tendency_of_physics">
<type kind="kind_phys" units="none">physics_tend</type>
</standard_name>
<standard_name name="air_pressure_at_top_of_atmosphere_model">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="air_pressure_at_sea_level">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="air_pressure_at_surface"
long_name="Air pressure at local surface">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="surface_pressure_of_dry_air">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="surface_geopotential">
<type kind="kind_phys" units="m2 s-2">real</type>
</standard_name>
<standard_name name="air_temperature">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="air_temperature_on_previous_timestep">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="x_wind"
long_name="Horizontal wind in a direction perpendicular to y_wind">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="y_wind"
long_name="Horizontal wind in a direction perpendicular to x_wind">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="eastward_wind"
long_name="Wind vector component, positive when directed eastward">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="northward_wind"
long_name="Wind vector component, positive when directed northward">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="eastward_wind_at_10m"
long_name="Wind vector component at 10m, positive when directed eastward">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="northward_wind_at_10m"
long_name="Wind vector component at 10m, positive when directed northward">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="eastward_wind_at_surface"
long_name="Wind vector component closest to surface, positive when directed eastward">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="northward_wind_at_surface"
long_name="Wind vector component closest to surface, positive when directed northward">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="wind_speed_at_surface"
long_name="Scalar wind speed closest to surface">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
<standard_name name="wind_from_direction_at_surface"
long_name="Direction, from north, of wind speed closest to surface">
<type kind="kind_phys" units="degrees">real</type>
</standard_name>
<standard_name name="dry_static_energy"
long_name="Dry static energy Content of Atmosphere Layer">
<type kind="kind_phys" units="J kg-1">real</type>
</standard_name>
<standard_name name="do_lagrangian_vertical_coordinate"
long_name="flag indicating if vertical coordinate is lagrangian">
<type kind="" units="flag">logical</type>
</standard_name>
<standard_name name="lagrangian_tendency_of_air_pressure"
long_name="Vertical pressure velocity">
<type kind="kind_phys" units="Pa s-1">real</type>
</standard_name>
<standard_name name="dry_air_density"
long_name="Density of dry air">
<type kind="kind_phys" units="kg m-3">real</type>
</standard_name>
<standard_name name="air_pressure"
long_name="Midpoint air pressure">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="air_pressure_of_dry_air"
long_name="Dry midpoint pressure">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="air_pressure_thickness">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="air_pressure_thickness_of_dry_air">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="reciprocal_of_air_pressure_thickness">
<type kind="kind_phys" units="Pa-1">real</type>
</standard_name>
<standard_name name="reciprocal_of_air_pressure_thickness_of_dry_air">
<type kind="kind_phys" units="Pa-1">real</type>
</standard_name>
<standard_name name="ln_air_pressure">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="ln_air_pressure_of_dry_air">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="reciprocal_of_dimensionless_exner_function_wrt_surface_air_pressure"
long_name="inverse exner function w.r.t. surface pressure, (ps/p)^(R/cp)">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="geopotential_height"
long_name="geopotential height w.r.t. sea level">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="geopotential_height_at_surface"
long_name="Geopotential height at local surface w.r.t. sea level">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="geopotential_height_wrt_surface"
long_name="geopotential height w.r.t. local surface">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="geopotential_height_wrt_surface_at_interfaces"
long_name="geopotential height w.r.t. local surface at interfaces">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="potentially_advected_quantities">
<type kind="kind_phys" units="various">real</type>
</standard_name>
<standard_name name="air_pressure_at_interfaces">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="air_pressure_of_dry_air_at_interfaces">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="ln_air_pressure_at_interfaces">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="ln_air_pressure_of_dry_air_at_interfaces">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="air_pressure_extended_up_by_1">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="largest_model_top_pressure_that_allows_molecular_diffusion">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="do_molecular_diffusion">
<type kind="kind_phys" units="flag">logical</type>
</standard_name>
<standard_name name="is_initialized_physics_grid"
long_name="Flag to indicate if physics grid is initialized">
<type kind="kind_phys" units="flag">logical</type>
</standard_name>
<standard_name name="control_for_negative_constituent_warning"
long_name="Logging setting for negative constituent mass fixer">
<type kind="len=*" units="1">character</type>
</standard_name>
<standard_name name="geopotential_height_at_interfaces">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="vertically_integrated_total_energy_of_initial_state">
<type kind="kind_phys" units="J m-2">real</type>
</standard_name>
<standard_name name="vertically_integrated_total_energy_of_current_state">
<type kind="kind_phys" units="J m-2">real</type>
</standard_name>
<standard_name name="vertically_integrated_total_water_of_initial_state">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="vertically_integrated_total_water_of_current_state">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="tendency_of_dry_air_enthalpy_at_constant_pressure"
long_name="Tendency of dry air enthalpy at constant pressure">
<type kind="kind_phys" units="J kg-1 s-1">real</type>
</standard_name>
<standard_name name="tendency_of_air_temperature"
long_name="Change in temperature from a parameterization">
<type kind="kind_phys" units="K s-1">real</type>
</standard_name>
<standard_name name="tendency_of_air_temperature_due_to_model_physics"
long_name="Total change in air temperature from a physics suite">
<type kind="kind_phys" units="K s-1">real</type>
</standard_name>
<standard_name name="tendency_of_air_potential_temperature"
long_name="Change in potential temperature from a parameterization">
<type kind="kind_phys" units="K s-1">real</type>
</standard_name>
<standard_name name="tendency_of_air_potential_temperature_due_to_model_physics">
<type kind="kind_phys" units="K s-1">real</type>
</standard_name>
<standard_name name="tendency_of_x_wind"
long_name="Change in x wind from a parameterization">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_x_wind_due_to_model_physics">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_y_wind"
long_name="Change in y wind from a parameterization">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_y_wind_due_to_model_physics">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_eastward_wind"
long_name="Change in eastward wind from a parameterization">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_eastward_wind_due_to_model_physics"
long_name="Total change in eastward wind from a physics suite">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_northward_wind"
long_name="Change in northward wind from a parameterization">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="tendency_of_northward_wind_due_to_model_physics"
long_name="Total change in northward wind from a physics suite">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
<standard_name name="air_horizontal_streamfunction"
long_name="Scalar function describing the stream lines of the wind">
<type kind="kind_phys" units="m2 s-1">real</type>
</standard_name>
<standard_name name="air_horizontal_velocity_potential"
long_name="Scalar potential of the wind">
<type kind="kind_phys" units="m2 s-1">real</type>
</standard_name>
<standard_name name="air_upward_absolute_vorticity"
long_name="The upward (kth) component of the curl of the vector wind field">
<type kind="kind_phys" units="s-1">real</type>
</standard_name>
<standard_name name="air_horizontal_divergence"
long_name="The (horizontal) divergence of the 2-D vector wind field">
<type kind="kind_phys" units="s-1">real</type>
</standard_name>
<standard_name name="surface_upward_heat_flux_in_air">
<type kind="kind_phys" units="W m-2">real</type>
</standard_name>
<standard_name name="cumulative_boundary_flux_of_total_energy">
<type kind="kind_phys" units="W m-2">real</type>
</standard_name>
<standard_name name="cumulative_boundary_flux_of_total_water">
<type kind="kind_phys" units="W m-2">real</type>
</standard_name>
<standard_name name="us_standard_air_pressure_at_sea_level"
long_name="US Standard Atmospheric pressure at sea level">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="surface_reference_pressure"
long_name="Reference pressure used in definition of potential temperature, Exner function, etc.">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="reference_pressure_in_atmosphere_layer"
long_name="reference pressure in atmosphere layer">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="reference_air_pressure_normalized_by_surface_air_pressure"
long_name="reference pressure normalized by surface pressure">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="reference_pressure_in_atmosphere_layer_normalized_by_surface_reference_pressure"
long_name="Reference pressure in atmosphere layer normalized by surface reference pressure">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="dimensionless_exner_function"
long_name="exner function">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="air_potential_temperature"
long_name="air potential temperature">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="air_potential_temperature_on_previous_timestep"
long_name="air potential temperature on previous timestep">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="virtual_temperature"
long_name="virtual temperature">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="virtual_potential_temperature"
long_name="virtual potential temperature">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="composition_dependent_gas_constant_of_dry_air">
<type kind="kind_phys" units="J kg-1 K-1">real</type>
</standard_name>
<standard_name name="composition_dependent_specific_heat_of_dry_air_at_constant_pressure"
long_name="composition dependent specific heat of dry air at constant pressure">
<type kind="kind_phys" units="J kg-1 K-1">real</type>
</standard_name>
<standard_name name="composition_dependent_ratio_of_dry_air_gas_constant_to_specific_heat_of_dry_air_at_constant_pressure"
long_name="composition dependent ratio of dry air gas constant to specific heat of dry air at constant pressure">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name
name="ratio_of_water_vapor_gas_constant_to_composition_dependent_dry_air_gas_constant_minus_one"
long_name="(Rwv / Rdair) - 1.0">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="mass_content_of_cloud_ice_in_atmosphere_layer">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="mass_content_of_cloud_liquid_water_in_atmosphere_layer">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="mass_content_of_rain_in_atmosphere_layer">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="mass_content_of_snow_in_atmosphere_layer">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="mass_content_of_graupel_in_atmosphere_layer">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="mass_content_of_hail_in_atmosphere_layer">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name
name="nonconvective_cloud_area_fraction_in_atmosphere_layer"
long_name="cloud area fraction in atmosphere layer excluding clouds produced by the convective schemes">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="relative_humidity">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="relative_humidity_at_2m">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="gravitational_acceleration">
<type kind="kind_phys" units="m s-2">real</type>
</standard_name>
</section>
<section name="land_surface">
<standard_name name="land_ice_area_fraction_of_cell_area"
long_name="fraction of horizontal area of grid cell that is land ice">
<type kind="kind_phys" units="frac">real</type>
</standard_name>
<standard_name name="mass_content_of_water_in_top_soil_layer"
long_name="content per unit area of water in top layer of soil">
<type kind="kind_phys" units="kg m-2">real</type>
</standard_name>
<standard_name name="surface_snow_density">
<type kind="kind_phys" units="kg m-3">real</type>
</standard_name>
<standard_name name="urban_area_fraction_of_cell_area"
long_name="fraction of horizontal area of grid cell that is urban">
<type kind="kind_phys" units="frac">real</type>
</standard_name>
<standard_name name="volume_fraction_of_liquid_water_in_soil_at_critical_point"
long_name="volume fraction of water in liquid phase in soil at critical point">
<type kind="kind_phys" units="m3 m-3">real</type>
</standard_name>
<standard_name name="volume_fraction_of_liquid_water_in_soil_at_saturation"
long_name="volume fraction of water in liquid phase in soil at saturation">
<type kind="kind_phys" units="m3 m-3">real</type>
</standard_name>
<standard_name name="volume_fraction_of_liquid_water_in_soil_at_wilting_point"
long_name="volume fraction of water in liquid phase in soil at wilting point">
<type kind="kind_phys" units="m3 m-3">real</type>
</standard_name>
</section>
<section name="diagnostics">
<standard_name name="total_precipitation_rate_at_surface">
<type kind="kind_phys" units="m s-1">real</type>
</standard_name>
</section>
<section name="atmospheric_composition">
<standard_name name="number_of_chemical_species">
<type kind="kind_phys" units="count">integer</type>
</standard_name>
<standard_name name="number_of_tracers">
<type kind="kind_phys" units="count">integer</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_moist_air"
long_name="Ratio of the mass of water vapor to the mass of moist air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_moist_air_and_condensed_water"
long_name="Ratio of the mass of water vapor to the mass of moist air and hydrometeors">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_moist_air_and_condensed_water_at_top_interfaces"
long_name="Ratio of the mass of water vapor to the mass of moist air and hydrometeors at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mole_fraction_of_water_vapor">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_dry_air"
long_name="Ratio of the mass of water vapor to the mass of dry air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_dry_air_at_top_interfaces"
long_name="Ratio of the mass of water vapor to the mass of dry air at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_liquid_water_mixing_ratio_wrt_moist_air_and_condensed_water"
long_name="Ratio of the mass of liquid water to the mass of moist air and condensed water">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_liquid_water_mixing_ratio_wrt_moist_air_and_condensed_water_at_top_interfaces"
long_name="Ratio of the mass of liquid water to the mass of moist air and condensed water at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_liquid_water_mixing_ratio_wrt_moist_air"
long_name="Ratio of the mass of liquid water to the mass of moist air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_liquid_water_mixing_ratio_wrt_dry_air"
long_name="Ratio of the mass of liquid water to the mass of dry air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_liquid_water_mixing_ratio_wrt_dry_air_at_top_interfaces"
long_name="Ratio of the mass of liquid water to the mass of dry air at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_ice_mixing_ratio_wrt_moist_air_and_condensed_water"
long_name="Ratio of the mass of ice to the mass of moist air and condensed water">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_ice_mixing_ratio_wrt_moist_air_and_condensed_water_at_top_interfaces"
long_name="Ratio of the mass of ice to the mass of moist air and condensed water at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_ice_mixing_ratio_wrt_dry_air"
long_name="Ratio of the mass of ice to the mass of dry air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="cloud_ice_mixing_ratio_wrt_dry_air_at_top_interfaces"
long_name="Ratio of the mass of ice to the mass of dry air at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="rain_mixing_ratio_wrt_moist_air_and_condensed_water"
long_name="ratio of the mass of rain to the mass of moist air and condensed water">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="rain_mixing_ratio_wrt_moist_air_and_condensed_water_at_top_interfaces"
long_name="ratio of the mass of rain to the mass of moist air and condensed water at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="rain_mixing_ratio_wrt_moist_air"
long_name="ratio of the mass of rain to the mass of moist air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="rain_mixing_ratio_wrt_dry_air"
long_name="ratio of the mass of rain to the mass of dry air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="rain_mixing_ratio_wrt_dry_air_at_top_interfaces"
long_name="ratio of the mass of rain to the mass of dry air at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="total_water_mixing_ratio_wrt_moist_air_and_condensed_water"
long_name="ratio of the mass of water to the mass of moist air and condensed water">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="total_water_mixing_ratio_wrt_moist_air_and_condensed_water_at_top_interfaces"
long_name="ratio of the mass of water to the mass of moist air and condensed water at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="total_water_mixing_ratio_wrt_dry_air"
long_name="ratio of the mass of water to the mass of dry air">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="total_water_mixing_ratio_wrt_dry_air_at_top_interfaces"
long_name="ratio of the mass of water to the mass of dry air at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_moist_air_and_condensed_water_assuming_saturation"
long_name="saturated water vapor mixing ratio with respect to moist air and condensed water">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="water_vapor_mixing_ratio_wrt_moist_air_and_condensed_water_at_top_interfaces_assuming_saturation"
long_name="saturated water vapor mixing ratio with respect to moist air and condensed water at all interfaces excluding surface">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="derivative_of_ln_water_vapor_partial_pressure_assuming_saturation_wrt_air_temperature"
long_name="log derivative of the water vapor partial pressure at saturation with respect to air temperature">
<type kind="kind_phys" units="K-1">real</type>
</standard_name>
<standard_name name="derivative_of_ln_water_vapor_partial_pressure_assuming_saturation_wrt_air_temperature_at_top_interfaces"
long_name="log derivative of the water vapor partial pressure at saturation with respect to air temperature at all interfaces excluding surface">
<type kind="kind_phys" units="K-1">real</type>
</standard_name>
<standard_name name="mole_fraction_of_ozone_in_air">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="mole_fraction_of_carbon_dioxide_in_air">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_ch4"
long_name="Methane volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_co"
long_name="Carbon monoxide volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_co2"
long_name="Carbon dioxide volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_ccl4"
long_name="Tetrachloromethane volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_cfc11"
long_name="Trichlorofluoromethane volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_cfc12"
long_name="Dichlorodifluoromethane volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_cfc113"
long_name="1,1,2-Trichloro-1,2,2-trifluoroethane volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_cfc22"
long_name="Chlorodifluoromethane volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_o2"
long_name="Dioxygen volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_n2o"
long_name="Nitrous oxide volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_no2"
long_name="Nitrogen dioxide volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_no"
long_name="Nitrogen oxide volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_o3"
long_name="Ozone volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_hcho"
long_name="Formaldehyde volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_c5h8"
long_name="Isoprene volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
<standard_name name="volume_mixing_ratio_of_so2"
long_name="Sulfur dioxide volume mixing ratio">
<type kind="kind_phys" units="mol mol-1">real</type>
</standard_name>
</section>
<section name="atmospheric_composition: GOCART aerosols">
<standard_name name="mass_fraction_of_dust001_in_air"
long_name="Dust bin1 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_dust002_in_air"
long_name="Dust bin2 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_dust003_in_air"
long_name="Dust bin3 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_dust004_in_air"
long_name="Dust bin4 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_dust005_in_air"
long_name="Dust bin5 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_salt001_in_air"
long_name="Sea salt bin5 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_salt002_in_air"
long_name="Sea salt bin2 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_salt003_in_air"
long_name="Sea salt bin3 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_salt004_in_air"
long_name="Sea salt bin4 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_salt005_in_air"
long_name="Sea salt bin5 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_hydrophobic_black_carbon_in_air"
long_name="Hydrophobic black carbon mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_hydrophilic_black_carbon_in_air"
long_name="Hydrophilic black carbon mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_hydrophobic_organic_carbon_in_air"
long_name="Hydrophobic organic carbon mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_hydrophilic_organic_carbon_in_air"
long_name="Hydrophilic organic carbon mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sulfate_in_air"
long_name="Sulfate mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_nitrate001_in_air"
long_name="Nitrate bin1 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_nitrate002_in_air"
long_name="Nitrate bin2 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="mass_fraction_of_sea_nitrate003_in_air"
long_name="Nitrate bin3 mass fraction">
<type kind="kind_phys" units="kg kg-1">real</type>
</standard_name>
<standard_name name="volume_extinction_in_air_due_to_aerosol_particles_lambda1"
long_name="Aerosol extinction at wavelength1">
<type kind="kind_phys" units="m-1">real</type>
</standard_name>
<standard_name name="volume_extinction_in_air_due_to_aerosol_particles_lambda2"
long_name="Aerosol extinction at wavelength2">
<type kind="kind_phys" units="m-1">real</type>
</standard_name>
<standard_name name="volume_extinction_in_air_due_to_aerosol_particles_lambda3"
long_name="Aerosol extinction at wavelength3">
<type kind="kind_phys" units="m-1">real</type>
</standard_name>
</section>
<section name="required framework-provided variables"
comment="Required CCPP framework-provided variables">
<standard_name name="ccpp_error_message"
long_name="Error message for error handling in CCPP">
<type kind="len=512" units="none">character</type>
</standard_name>
<standard_name name="ccpp_error_code"
long_name="Error code for error handling in CCPP">
<type kind="" units="1">integer</type>
</standard_name>
</section>
<section name="optional framework-provided variables"
comment="Optional CCPP framework-provided variables">
<standard_name name="scheme_name"
long_name="CCPP physics scheme name">
<type kind="len=64" units="none">character</type>
</standard_name>
<standard_name name="ccpp_constituent_properties"
long_name="CCPP Constituent Properties">
<type kind="" units="none">ccpp_constituent_prop_ptr_t</type>
</standard_name>
<standard_name name="ccpp_constituents"
long_name="Array of constituents managed by CCPP Framework">
<type kind="kind_phys" units="none">real</type>
</standard_name>
<standard_name name="ccpp_constituent_minimum_values"
long_name="CCPP constituent minimum values">
<type kind="kind_phys" units="none">real</type>
</standard_name>
<standard_name name="number_of_ccpp_constituents"
long_name="Number of constituents managed by CCPP Framework">
<type kind="" units="count">integer</type>
</standard_name>
</section>
<section name="system variables"
comment="Variables related to the compute environment">
<standard_name name="flag_for_mpi_root"
long_name="Flag for MPI root">
<type kind="" units="flag">logical</type>
</standard_name>
<standard_name name="log_output_unit"
long_name="Log output unit">
<type kind="" units="1">integer</type>
</standard_name>
</section>
<section name="GFS_typedefs_GFS_control_type">
<standard_name name="sigma_pressure_hybrid_coordinate_a_coefficient">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="radiatively_active_gases_as_string">
<type kind="len=128" units="none">character</type>
</standard_name>
<standard_name name="aerosol_aware_multiplicative_rain_conversion_parameter_for_deep_convection">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="aerosol_aware_multiplicative_rain_conversion_parameter_for_shallow_convection">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="number_of_microphysics_varaibles_in_xy_dimensioned_restart_array">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="number_of_microphysics_variables_in_xyz_dimensioned_restart_array">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="number_of_random_numbers">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="multiplicative_tuning_parameter_for_atmosphere_diffusivity">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="atmosphere_heat_diffusivity_due_to_background">
<type kind="kind_phys" units="m2 s-1">real</type>
</standard_name>
<standard_name name="max_atmosphere_heat_diffusivity_due_to_background">
<type kind="kind_phys" units="m2 s-1">real</type>
</standard_name>
<standard_name name="atmosphere_momentum_diffusivity_due_to_background">
<type kind="kind_phys" units="m2 s-1">real</type>
</standard_name>
<standard_name name="sigma_pressure_hybrid_coordinate_b_coefficient">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="ccpp_block_count">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="ccpp_block_sizes">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="cellular_automata_finer_grid">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="cellular_automata_lifetime">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="cellular_automata_seed_frequency">
<type kind="" units="count">integer</type>
</standard_name>
<standard_name name="cellular_automata_seed_probability">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="identifier_for_2018_scale_aware_tke_moist_edmf_pbl">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="control_for_scale_aware_tke_moist_edmf_pbl_scheme">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="identifier_for_2019_scale_aware_tke_moist_edmf_pbl">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="cloud_condensate_autoconversion_threshold_coefficient">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="cloud_condensate_autoconversion_threshold_coefficient_for_deep_convection">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="control_for_cloud_area_fraction_option">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="reciprocal_of_cloud_phase_transition_temperature_range">
<type kind="kind_phys" units="K-1">real</type>
</standard_name>
<standard_name name="cloud_phase_transition_threshold_temperature">
<type kind="kind_phys" units="K">real</type>
</standard_name>
<standard_name name="control_for_cloud_species_mixing_in_mellor_yamada_nakanishi_niino_pbl_scheme">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="control_for_cloud_pdf_in_mellor_yamada_nakanishi_niino_pbl_scheme">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="precipitation_evaporation_coefficient">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="coefficient_for_variable_bulk_richardson_number_over_land">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="coefficient_for_variable_bulk_richardson_number_over_water">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="autoconversion_to_snow_coefficient">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="autoconversion_to_snow_coefficient_for_deep_convection">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="autoconversion_to_rain_coefficient">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="autoconversion_to_rain_coefficient_for_deep_convection">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="chemical_tracer_scavenging_fractions">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="cloud_condensate_detrainment_coefficient">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="control_for_convective_cloud_diagnostics">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="cosine_of_solar_declination_angle">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="control_for_sgs_cloud_radiation_coupling_in_mellor_yamamda_nakanishi_niino_pbl_scheme">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="tunable_parameter_for_critical_cloud_top_entrainment_instability_criteria">
<type kind="kind_phys" units="1">real</type>
</standard_name>
<standard_name name="critical_relative_humidity_at_top_of_atmosphere_boundary_layer">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="critical_relative_humidity_at_surface">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="critical_relative_humidity_at_toa">
<type kind="kind_phys" units="fraction">real</type>
</standard_name>
<standard_name name="date_and_time_at_model_initialization_in_iso_order">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="date_and_time_at_model_initialization_in_united_states_order">
<type kind="" units="1">integer</type>
</standard_name>
<standard_name name="decorrelation_length_used_by_overlap_method">
<type kind="kind_phys" units="km">real</type>
</standard_name>
<standard_name name="density_of_fresh_water">
<type kind="kind_phys" units="kg m-3">real</type>
</standard_name>
<standard_name name="depth_of_soil_layers">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="tunable_parameter_1_for_detrainment_and_precipitation_partitioning_in_chikira_sugiyama_deep_convection">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="tunable_parameter_2_for_detrainment_and_precipitation_partitioning_in_chikira_sugiyama_deep_convection">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="detrainment_conversion_parameter_for_deep_convection">
<type kind="kind_phys" units="m-1">real</type>
</standard_name>
<standard_name name="detrainment_conversion_parameter_for_shallow_convection">
<type kind="kind_phys" units="m-1">real</type>
</standard_name>
<standard_name name="do_unified_gravity_wave_physics_diagnostics">
<type kind="" units="flag">logical</type>