-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathGFS_typedefs.meta
10535 lines (10514 loc) · 352 KB
/
GFS_typedefs.meta
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
[ccpp-table-properties]
name = GFS_statein_type
type = ddt
dependencies =
[ccpp-arg-table]
name = GFS_statein_type
type = ddt
[phii]
standard_name = geopotential_at_interface
long_name = geopotential at model layer interfaces
units = m2 s-2
dimensions = (horizontal_dimension,vertical_interface_dimension)
type = real
kind = kind_phys
[prsi]
standard_name = air_pressure_at_interface
long_name = air pressure at model layer interfaces
units = Pa
dimensions = (horizontal_dimension,vertical_interface_dimension)
type = real
kind = kind_phys
[prsi(:,1)]
standard_name = air_pressure_at_lowest_model_interface
long_name = air pressure at lowest model interface
units = Pa
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[prsik]
standard_name = dimensionless_exner_function_at_interface
long_name = dimensionless Exner function at model layer interfaces
units = none
dimensions = (horizontal_dimension,vertical_interface_dimension)
type = real
kind = kind_phys
[prsik(:,1)]
standard_name = surface_dimensionless_exner_function
long_name = dimensionless Exner function at lowest model interface
units = none
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[phil]
standard_name = geopotential
long_name = geopotential at model layer centers
units = m2 s-2
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[prsl]
standard_name = air_pressure
long_name = mean layer pressure
units = Pa
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[prsl(:,1)]
standard_name = air_pressure_at_surface_adjacent_layer
long_name = mean pressure at lowest model layer
units = Pa
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[prslk]
standard_name = dimensionless_exner_function
long_name = dimensionless Exner function at model layer centers
units = none
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[prslk(:,1)]
standard_name = dimensionless_exner_function_at_surface_adjacent_layer
long_name = dimensionless Exner function at lowest model layer
units = none
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[pgr]
standard_name = surface_air_pressure
long_name = surface pressure
units = Pa
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[ugrs]
standard_name = x_wind
long_name = zonal wind
units = m s-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[ugrs(:,1)]
standard_name = x_wind_at_surface_adjacent_layer
long_name = zonal wind at lowest model layer
units = m s-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[vgrs]
standard_name = y_wind
long_name = meridional wind
units = m s-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[vgrs(:,1)]
standard_name = y_wind_at_surface_adjacent_layer
long_name = meridional wind at lowest model layer
units = m s-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[wgrs]
standard_name = unsmoothed_nonhydrostatic_upward_air_velocity
long_name = unsmoothed non-hydrostatic upward air velocity
units = m s-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (do_lightning_threat_index_calculations)
[vvl]
standard_name = lagrangian_tendency_of_air_pressure
long_name = layer mean vertical velocity
units = Pa s-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[tgrs]
standard_name = air_temperature
long_name = model layer mean temperature
units = K
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[tgrs(:,1)]
standard_name = air_temperature_at_surface_adjacent_layer
long_name = mean temperature at lowest model layer
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[qgrs]
standard_name = tracer_concentration
long_name = model layer mean tracer concentration
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension,number_of_tracers)
type = real
kind = kind_phys
[qgrs(:,:,index_of_specific_humidity_in_tracer_concentration_array)]
standard_name = specific_humidity
long_name = water vapor specific humidity
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,1,index_of_specific_humidity_in_tracer_concentration_array)]
standard_name = specific_humidity_at_surface_adjacent_layer
long_name = water vapor specific humidity at lowest model layer
units = kg kg-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_cloud_liquid_water_mixing_ratio_in_tracer_concentration_array)]
standard_name = cloud_liquid_water_mixing_ratio
long_name = ratio of mass of cloud water to mass of dry air plus vapor (without condensates)
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,1,index_of_cloud_liquid_water_mixing_ratio_in_tracer_concentration_array)]
standard_name = cloud_liquid_water_mixing_ratio_at_surface_adjacent_layer
long_name = ratio of mass of cloud water to mass of dry air plus vapor (without condensates) at lowest model layer
units = kg kg-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_cloud_ice_mixing_ratio_in_tracer_concentration_array)]
standard_name = cloud_ice_mixing_ratio
long_name = ratio of mass of ice water to mass of dry air plus vapor (without condensates)
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_rain_mixing_ratio_in_tracer_concentration_array)]
standard_name = rain_mixing_ratio
long_name = ratio of mass of rain water to mass of dry air plus vapor (without condensates)
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_snow_mixing_ratio_in_tracer_concentration_array)]
standard_name = snow_mixing_ratio
long_name = ratio of mass of snow water to mass of dry air plus vapor (without condensates)
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_graupel_mixing_ratio_in_tracer_concentration_array)]
standard_name = graupel_mixing_ratio
long_name = ratio of mass of graupel to mass of dry air plus vapor (without condensates)
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_hail_mixing_ratio_in_tracer_concentration_array)]
standard_name = hail_mixing_ratio
long_name = ratio of mass of hail to mass of dry air plus vapor (without condensates)
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_hail_mixing_ratio_in_tracer_concentration_array > 0)
[qgrs(:,:,index_of_ozone_mixing_ratio_in_tracer_concentration_array)]
standard_name = ozone_mixing_ratio
long_name = ozone mixing ratio
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_hygroscopic_aerosols_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_hygroscopic_aerosols
long_name = number concentration of water-friendly aerosols
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
active = (index_of_mass_number_concentration_of_hygroscopic_aerosols_in_tracer_concentration_array > 0)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_nonhygroscopic_ice_nucleating_aerosols_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_nonhygroscopic_ice_nucleating_aerosols
long_name = number concentration of ice-friendly aerosols
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
active = (index_of_mass_number_concentration_of_nonhygroscopic_ice_nucleating_aerosols_in_tracer_concentration_array > 0)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_cloud_droplets_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_cloud_liquid_water_particles_in_air
long_name = number concentration of cloud droplets (liquid)
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_mass_number_concentration_of_cloud_droplets_in_tracer_concentration_array > 0)
[qgrs(:,:,index_of_mass_number_concentration_of_cloud_ice_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_cloud_ice_water_crystals_in_air
long_name = number concentration of ice
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_rain_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_rain_water_in_air
long_name = number concentration of rain
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_snow_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_snow_in_air
long_name = number concentration of snow
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_graupel_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_graupel_in_air
long_name = number concentration of graupel
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_mass_number_concentration_of_hail_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_hail_in_air
long_name = number concentration of hail
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_mass_number_concentration_of_hail_in_tracer_concentration_array > 0)
[qgrs(:,:,index_of_reflectivity_of_rain_in_tracer_concentration_array)]
standard_name = reflectivity_of_rain_in_air
long_name = reflectivity of rain
units = m6 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_reflectivity_of_rain_in_tracer_concentration_array > 0)
[qgrs(:,:,index_of_reflectivity_of_graupel_in_tracer_concentration_array)]
standard_name = reflectivity_of_graupel_in_air
long_name = reflectivity of graupel
units = m6 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_reflectivity_of_graupel_in_tracer_concentration_array > 0)
[qgrs(:,:,index_of_reflectivity_of_hail_in_tracer_concentration_array)]
standard_name = reflectivity_of_hail_in_air
long_name = reflectivity of hail
units = m6 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_reflectivity_of_hail_in_tracer_concentration_array > 0)
[qgrs(:,:,index_of_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array)]
standard_name = cloud_condensation_nuclei_number_concentration
long_name = number concentration of cloud condensation nuclei
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array > 0 )
[qgrs(:,:,index_of_activated_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array)]
standard_name = activated_cloud_condensation_nuclei_number_concentration
long_name = number concentration of activated cloud condensation nuclei
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_activated_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array > 0 )
[qgrs(:,:,index_of_graupel_volume_in_tracer_concentration_array)]
standard_name = graupel_volume
long_name = graupel particle volume
units = m3 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_graupel_volume_in_tracer_concentration_array > 0 )
[qgrs(:,:,index_of_hail_volume_in_tracer_concentration_array)]
standard_name = hail_volume
long_name = hail particle volume
units = m3 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_hail_volume_in_tracer_concentration_array > 0 )
[qgrs(:,:,index_of_turbulent_kinetic_energy_in_tracer_concentration_array)]
standard_name = turbulent_kinetic_energy
long_name = turbulent kinetic energy
units = J
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_updraft_area_fraction_in_tracer_concentration_array)]
standard_name = prognostic_updraft_area_fraction_in_convection
long_name = convective updraft area fraction
units = frac
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_updraft_area_fraction_in_tracer_concentration_array > 0 )
[qgrs(:,:,index_for_smoke_in_tracer_concentration_array)]
standard_name = smoke_tracer_concentration
long_name = concentration of smoke
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_for_dust_in_tracer_concentration_array)]
standard_name = dust_tracer_concentration
long_name = concentration of dust
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[diss_est]
standard_name = dissipation_estimate_of_air_temperature_at_model_layers
long_name = dissipation estimate model layer mean temperature
units = K
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
########################################################################
[ccpp-table-properties]
name = GFS_stateout_type
type = ddt
dependencies =
[ccpp-arg-table]
name = GFS_stateout_type
type = ddt
[gu0]
standard_name = x_wind_of_new_state
long_name = zonal wind updated by physics
units = m s-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gu0(:,1)]
standard_name = x_wind_of_new_state_at_surface_adjacent_layer
long_name = zonal wind at lowest model layer updated by physics
units = m s-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[gv0]
standard_name = y_wind_of_new_state
long_name = meridional wind updated by physics
units = m s-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gv0(:,1)]
standard_name = y_wind_of_new_state_at_surface_adjacent_layer
long_name = meridional wind at lowest model layer updated by physics
units = m s-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[gt0]
standard_name = air_temperature_of_new_state
long_name = temperature updated by physics
units = K
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gt0(:,1)]
standard_name = air_temperature_of_new_state_at_surface_adjacent_layer
long_name = temperature at lowest model layer updated by physics
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[gq0]
standard_name = tracer_concentration_of_new_state
long_name = tracer concentration updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension,number_of_tracers)
type = real
kind = kind_phys
[gq0(:,:,index_of_specific_humidity_in_tracer_concentration_array)]
standard_name = specific_humidity_of_new_state
long_name = water vapor specific humidity updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,1,index_of_specific_humidity_in_tracer_concentration_array)]
standard_name = specific_humidity_of_new_state_at_surface_adjacent_layer
long_name = water vapor specific humidity at lowest model layer updated by physics
units = kg kg-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_ozone_mixing_ratio_in_tracer_concentration_array)]
standard_name = ozone_concentration_of_new_state
long_name = ozone concentration updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_cloud_liquid_water_mixing_ratio_in_tracer_concentration_array)]
standard_name = cloud_liquid_water_mixing_ratio_of_new_state
long_name = ratio of mass of cloud water to mass of dry air plus vapor (without condensates) updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_cloud_ice_mixing_ratio_in_tracer_concentration_array)]
standard_name = cloud_ice_mixing_ratio_of_new_state
long_name = ratio of mass of ice water to mass of dry air plus vapor (without condensates) updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_rain_mixing_ratio_in_tracer_concentration_array)]
standard_name = rain_mixing_ratio_of_new_state
long_name = ratio of mass of rain water to mass of dry air plus vapor (without condensates) updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_snow_mixing_ratio_in_tracer_concentration_array)]
standard_name = snow_mixing_ratio_of_new_state
long_name = ratio of mass of snow water to mass of dry air plus vapor (without condensates) updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_graupel_mixing_ratio_in_tracer_concentration_array)]
standard_name = graupel_mixing_ratio_of_new_state
long_name = ratio of mass of graupel to mass of dry air plus vapor (without condensates) updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_hail_mixing_ratio_in_tracer_concentration_array)]
standard_name = hail_mixing_ratio_of_new_state
long_name = ratio of mass of hail to mass of dry air plus vapor (without condensates) updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_hail_mixing_ratio_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_mass_weighted_rime_factor_in_tracer_concentration_array)]
standard_name = mass_weighted_rime_factor_of_new_state
long_name = mass weighted rime factor updated by physics
units = kg kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_mass_number_concentration_of_hygroscopic_aerosols_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_hygroscopic_aerosols_of_new_state
long_name = number concentration of water-friendly aerosols updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_mass_number_concentration_of_hygroscopic_aerosols_in_tracer_concentration_array > 0)
[gq0(:,:,index_of_mass_number_concentration_of_nonhygroscopic_ice_nucleating_aerosols_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_nonhygroscopic_ice_nucleating_aerosols_of_new_state
long_name = number concentration of ice-friendly aerosols updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_mass_number_concentration_of_nonhygroscopic_ice_nucleating_aerosols_in_tracer_concentration_array > 0)
[gq0(:,:,index_of_mass_number_concentration_of_cloud_droplets_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_cloud_liquid_water_particles_in_air_of_new_state
long_name = number concentration of cloud droplets updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = (index_of_mass_number_concentration_of_cloud_droplets_in_tracer_concentration_array > 0)
[gq0(:,:,index_of_mass_number_concentration_of_cloud_ice_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_cloud_ice_water_crystals_in_air_of_new_state
long_name = number concentration of ice updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_mass_number_concentration_of_rain_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_rain_of_new_state
long_name = number concentration of rain updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_mass_number_concentration_of_snow_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_snow_of_new_state
long_name = number concentration of snow updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_mass_number_concentration_of_graupel_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_graupel_of_new_state
long_name = number concentration of graupel updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_mass_number_concentration_of_hail_in_tracer_concentration_array)]
standard_name = mass_number_concentration_of_hail_of_new_state
long_name = number concentration of hail updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_mass_number_concentration_of_hail_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array)]
standard_name = cloud_condensation_nuclei_number_concentration_of_new_state
long_name = number concentration of cloud condensation nuclei updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_activated_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array)]
standard_name = activated_cloud_condensation_nuclei_number_concentration_of_new_state
long_name = number concentration of cloud condensation nuclei updated by physics
units = kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_activated_cloud_condensation_nuclei_number_concentration_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_graupel_volume_in_tracer_concentration_array)]
standard_name = graupel_volume_of_new_state
long_name = graupel volume updated by physics
units = m3 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_graupel_volume_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_hail_volume_in_tracer_concentration_array)]
standard_name = hail_volume_of_new_state
long_name = hail volume updated by physics
units = m3 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_hail_volume_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_reflectivity_of_rain_in_tracer_concentration_array)]
standard_name = reflectivity_of_rain_of_new_state
long_name = reflectivity of rain updated by physics
units = m6 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_reflectivity_of_rain_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_reflectivity_of_graupel_in_tracer_concentration_array)]
standard_name = reflectivity_of_graupel_of_new_state
long_name = reflectivity of graupel updated by physics
units = m6 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_reflectivity_of_graupel_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_reflectivity_of_hail_in_tracer_concentration_array)]
standard_name = reflectivity_of_hail_of_new_state
long_name = reflectivity of hail updated by physics
units = m6 kg-1
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_reflectivity_of_hail_in_tracer_concentration_array > 0 )
[gq0(:,:,index_of_cloud_area_fraction_in_atmosphere_layer_in_tracer_concentration_array)]
standard_name = cloud_area_fraction_in_atmosphere_layer_of_new_state
long_name = cloud fraction updated by physics
units = frac
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
[gq0(:,:,index_of_updraft_area_fraction_in_tracer_concentration_array)]
standard_name = updraft_area_fraction_updated_by_physics
long_name = convective updraft area fraction updated by physics
units = frac
dimensions = (horizontal_dimension,vertical_layer_dimension)
type = real
kind = kind_phys
active = ( index_of_updraft_area_fraction_in_tracer_concentration_array > 0 )
########################################################################
[ccpp-table-properties]
name = GFS_sfcprop_type
type = ddt
dependencies =
[ccpp-arg-table]
name = GFS_sfcprop_type
type = ddt
[slmsk]
standard_name = area_type
long_name = landmask: sea/land/ice=0/1/2
units = flag
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[oceanfrac]
standard_name = sea_area_fraction
long_name = fraction of horizontal grid area occupied by ocean
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[landfrac]
standard_name = land_area_fraction
long_name = fraction of horizontal grid area occupied by land
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[vegtype_frac]
standard_name = fraction_of_vegetation_category
long_name = fraction of horizontal grid area occupied by given vegetation category
units = frac
dimensions = (horizontal_dimension,number_of_vegetation_categories)
type = real
kind = kind_phys
[soiltype_frac]
standard_name = fraction_of_soil_category
long_name = fraction of horizontal grid area occupied by given soil category
units = frac
dimensions = (horizontal_dimension,number_of_soil_categories)
type = real
kind = kind_phys
[lakefrac]
standard_name = lake_area_fraction
long_name = fraction of horizontal grid area occupied by lake
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[lakedepth]
standard_name = lake_depth
long_name = lake depth
units = m
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[clm_lakedepth]
standard_name = clm_lake_depth
long_name = clm internal copy of lake depth with 10.0 replaced by default lake depth
units = m
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_execution_method > 0 .and. control_for_lake_model_selection == clm_lake_model_control_selection_value)
[use_lake_model]
standard_name = flag_for_using_lake_model
long_name = flag indicating lake points using a lake model
units = flag
dimensions = (horizontal_dimension)
type = integer
[lake_t2m]
standard_name = temperature_at_2m_from_clm_lake
long_name = temperature at 2m from clm lake
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_execution_method > 0 .and. control_for_lake_model_selection == clm_lake_model_control_selection_value)
[lake_q2m]
standard_name = specific_humidity_at_2m_from_clm_lake
long_name = specific humidity at 2m from clm lake
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_execution_method > 0 .and. control_for_lake_model_selection == clm_lake_model_control_selection_value)
[h_ML]
standard_name = mixed_layer_depth_of_lakes
long_name = depth of lake mixing layer
units = m
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[t_ML]
standard_name = lake_mixed_layer_temperature
long_name = temperature of lake mixing layer
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[t_mnw]
standard_name = mean_temperature_of_the_water_column
long_name = thee mean temperature of the water column
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[h_talb]
standard_name = the_thermally_active_layer_depth_of_the_bottom_sediment
long_name = the depth of the thermally active layer of the bottom sediment
units = m
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[t_talb]
standard_name = temperature_at_the_bottom_of_the_sediment_upper_layer
long_name = the temperature at the bottom of the sediment upper layer
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[t_bot1]
standard_name = lake_bottom_temperature
long_name = the temperature at the water-bottom sediment interface
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[t_bot2]
standard_name = temperature_for_bottom_layer_of_water
long_name = the temperature at the lake bottom layer water
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[c_t]
standard_name = shape_factor_of_water_temperature_vertical_profile
long_name = the shape factor of water temperature vertical profile
units = none
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_selection == flake_model_control_selection_value .and. control_for_lake_model_execution_method > 0)
[T_snow]
standard_name = temperature_of_snow_on_lake
long_name = temperature of snow on a lake
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (control_for_lake_model_execution_method > 0)
[tsfc]
standard_name = surface_skin_temperature
long_name = surface skin temperature
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[tsfco]
standard_name = sea_surface_temperature
long_name = sea surface temperature
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[usfco]
standard_name = x_ocean_current
long_name = zonal current at ocean surface
units = m s-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[vsfco]
standard_name = y_ocean_current
long_name = meridional current at ocean surface
units = m s-1
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[tsfcl]
standard_name = surface_skin_temperature_over_land
long_name = surface skin temperature over land
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[tisfc]
standard_name = surface_skin_temperature_over_ice
long_name = surface skin temperature over ice
units = K
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[tiice]
standard_name = temperature_in_ice_layer
long_name = sea ice internal temperature
units = K
dimensions = (horizontal_dimension,vertical_dimension_of_sea_ice)
type = real
kind = kind_phys
[snowd]
standard_name = lwe_surface_snow
long_name = water equivalent snow depth
units = mm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorl]
standard_name = surface_roughness_length
long_name = surface roughness length
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorlw]
standard_name = surface_roughness_length_over_water
long_name = surface roughness length over water
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorll]
standard_name = surface_roughness_length_over_land
long_name = surface roughness length over land
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorli]
standard_name = surface_roughness_length_over_ice
long_name = surface roughness length over ice
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorlwav]
standard_name = surface_roughness_length_from_wave_model
long_name = surface roughness length from wave model
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[fice]
standard_name = sea_ice_area_fraction_of_sea_area_fraction
long_name = ice fraction over open water
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[snodl]
standard_name = surface_snow_thickness_water_equivalent_over_land
long_name = water equivalent snow depth over land
units = mm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[weasdl]
standard_name = water_equivalent_accumulated_snow_depth_over_land
long_name = water equiv of acc snow depth over land
units = mm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[snodi]
standard_name = surface_snow_thickness_water_equivalent_over_ice
long_name = water equivalent snow depth over ice
units = mm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[weasdi]
standard_name = water_equivalent_accumulated_snow_depth_over_ice
long_name = water equiv of acc snow depth over land
units = mm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[hprime]
standard_name = statistical_measures_of_subgrid_orography_collection_array
long_name = orographic metrics
units = mixed
dimensions = (horizontal_dimension,number_of_statistical_measures_of_subgrid_orography)
type = real
kind = kind_phys
[hprime(:,1)]
standard_name = standard_deviation_of_subgrid_orography
long_name = standard deviation of subgrid height_above_mean_sea_level
units = m
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[dust12m_in]
standard_name = fengsha_dust12m_input
long_name = fengsha dust input
units = various
dimensions = (horizontal_dimension,12,5)
type = real
kind = kind_phys
active = (do_smoke_coupling)
[emi_in]
standard_name = anthropogenic_background_input
long_name = anthropogenic background input
units = various
dimensions = (horizontal_dimension,1)
type = real
kind = kind_phys
active = (do_smoke_coupling)
[smoke_RRFS]
standard_name = emission_smoke_RRFS
long_name = emission fire RRFS
units = various
dimensions = (horizontal_dimension,24,2)
type = real
kind = kind_phys
active = (do_smoke_coupling)
[smoke2d_RRFS]
standard_name = emission_smoke_prvd_RRFS
long_name = emission fire RRFS daily
units = various
dimensions = (horizontal_dimension,5)
type = real
kind = kind_phys
active = (do_smoke_coupling)
[z0base]
standard_name = baseline_surface_roughness_length
long_name = baseline surface roughness length for momentum in meter
units = m
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
active = (flag_for_mellor_yamada_janjic_surface_layer_scheme .or. flag_for_mellor_yamada_janjic_pbl_scheme)
[semisbase]
standard_name = baseline_surface_longwave_emissivity
long_name = baseline surface lw emissivity in fraction
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[sncovr]
standard_name = surface_snow_area_fraction_over_land
long_name = surface snow area fraction
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[sncovr_ice]
standard_name = surface_snow_area_fraction_over_ice
long_name = surface snow area fraction over ice
units = frac
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[fire_heat_flux]
standard_name = surface_fire_heat_flux
long_name = heat flux of fire at the surface
units = W m-2
dimensions = (horizontal_dimension)