forked from NCAR/fv3atm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGFS_typedefs.meta
10937 lines (10913 loc) · 371 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_loop_extent,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_loop_extent,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_loop_extent)
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_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[phil]
standard_name = geopotential
long_name = geopotential at model layer centers
units = m2 s-2
dimensions = (horizontal_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
[prsl]
standard_name = air_pressure
long_name = mean layer pressure
units = Pa
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[prslk]
standard_name = dimensionless_exner_function
long_name = dimensionless Exner function at model layer centers
units = none
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[pgr]
standard_name = surface_air_pressure
long_name = surface pressure
units = Pa
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[ugrs]
standard_name = x_wind
long_name = zonal wind
units = m s-1
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[vgrs]
standard_name = y_wind
long_name = meridional wind
units = m s-1
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[vvl]
standard_name = lagrangian_tendency_of_air_pressure
long_name = layer mean vertical velocity
units = Pa s-1
dimensions = (horizontal_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
[tgrs]
standard_name = air_temperature
long_name = model layer mean temperature
units = K
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[qgrs]
standard_name = tracer_concentration
long_name = model layer mean tracer concentration
units = kg kg-1
dimensions = (horizontal_loop_extent,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_loop_extent,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_loop_extent)
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_loop_extent,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_loop_extent)
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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
[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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
[qgrs(:,:,index_of_turbulent_kinetic_energy_in_tracer_concentration_array)]
standard_name = turbulent_kinetic_energy
long_name = turbulent kinetic energy
units = J
dimensions = (horizontal_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent)
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_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[gt0]
standard_name = air_temperature_of_new_state
long_name = temperature updated by physics
units = K
dimensions = (horizontal_loop_extent,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_loop_extent)
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_loop_extent,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_loop_extent,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_loop_extent)
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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
[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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,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_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
[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_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
########################################################################
[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_loop_extent)
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_loop_extent)
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_loop_extent)
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_loop_extent)
type = real
kind = kind_phys
[lakedepth]
standard_name = lake_depth
long_name = lake depth
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tsfc]
standard_name = surface_skin_temperature
long_name = surface skin temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tsfco]
standard_name = sea_surface_temperature
long_name = sea surface temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tsfcl]
standard_name = surface_skin_temperature_over_land
long_name = surface skin temperature over land
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tisfc]
standard_name = sea_ice_temperature
long_name = sea ice surface skin temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tiice]
standard_name = temperature_in_ice_layer
long_name = sea ice internal temperature
units = K
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[zorl]
standard_name = surface_roughness_length
long_name = surface roughness length
units = cm
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[zorlw]
standard_name = surface_roughness_length_over_water
long_name = surface roughness length over water
units = cm
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[zorll]
standard_name = surface_roughness_length_over_land
long_name = surface roughness length over land
units = cm
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[zorli]
standard_name = surface_roughness_length_over_ice
long_name = surface roughness length over ice
units = cm
dimensions = (horizontal_loop_extent)
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_loop_extent)
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_loop_extent)
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_loop_extent)
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_loop_extent)
type = real
kind = kind_phys
[hprime]
standard_name = statistical_measures_of_subgrid_orography_collection_array
long_name = orographic metrics
units = various
dimensions = (horizontal_loop_extent,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_loop_extent)
type = real
kind = kind_phys
[z0base]
standard_name = baseline_surface_roughness_length
long_name = baseline surface roughness length for momentum in meter
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[semisbase]
standard_name = baseline_surface_longwave_emissivity
long_name = baseline surface lw emissivity in fraction
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[sncovr]
standard_name = surface_snow_area_fraction_over_land
long_name = surface snow area fraction
units = frac
dimensions = (horizontal_loop_extent)
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_loop_extent)
type = real
kind = kind_phys
active = (control_for_land_surface_scheme == identifier_for_ruc_land_surface_scheme)
[snoalb]
standard_name = upper_bound_of_max_albedo_assuming_deep_snow
long_name = maximum snow albedo
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[emis_lnd]
standard_name = surface_longwave_emissivity_over_land
long_name = surface lw emissivity in fraction over land
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[emis_ice]
standard_name = surface_longwave_emissivity_over_ice
long_name = surface lw emissivity in fraction over ice
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_land_surface_scheme == identifier_for_ruc_land_surface_scheme)
[sfalb_lnd]
standard_name = surface_diffused_shortwave_albedo_over_land
long_name = mean surface diffused sw albedo over land
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
optional = F
active = (control_for_land_surface_scheme == identifier_for_ruc_land_surface_scheme)
[sfalb_ice]
standard_name = surface_diffused_shortwave_albedo_over_ice
long_name = mean surface diffused sw albedo over ice
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_land_surface_scheme == identifier_for_ruc_land_surface_scheme)
[sfalb_lnd_bck]
standard_name = surface_snow_free_albedo_over_land
long_name = surface snow-free albedo over ice
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_land_surface_scheme == identifier_for_ruc_land_surface_scheme)
[alvwf]
standard_name = vis_albedo_weak_cosz
long_name = mean vis albedo with weak cosz dependency
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[alnwf]
standard_name = nir_albedo_weak_cosz
long_name = mean nir albedo with weak cosz dependency
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[slope]
standard_name = surface_slope_classification_real
long_name = sfc slope type for lsm
units = index
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[shdmin]
standard_name = min_vegetation_area_fraction
long_name = min fractional coverage of green vegetation
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[shdmax]
standard_name = max_vegetation_area_fraction
long_name = max fractional coverage of green vegetation
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tg3]
standard_name = deep_soil_temperature
long_name = deep soil temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[vfrac]
standard_name = vegetation_area_fraction
long_name = areal fractional cover of green vegetation
units = frac
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[vtype]
standard_name = vegetation_type_classification_real
long_name = vegetation type for lsm
units = index
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[stype]
standard_name = soil_type_classification_real
long_name = soil type for lsm
units = index
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[uustar]
standard_name = surface_friction_velocity
long_name = boundary layer parameter
units = m s-1
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[oro]
standard_name = height_above_mean_sea_level
long_name = height_above_mean_sea_level
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[oro_uf]
standard_name = unfiltered_height_above_mean_sea_level
long_name = unfiltered height_above_mean_sea_level
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[conv_act]
standard_name = consecutive_calls_for_grell_freitas_convection
long_name = Memory counter for GF
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_deep_convection_scheme == identifier_for_grell_freitas_deep_convection)
[hice]
standard_name = sea_ice_thickness
long_name = sea ice thickness
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[weasd]
standard_name = lwe_thickness_of_surface_snow_amount
long_name = water equiv of acc snow depth over land and sea ice
units = mm
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[canopy]
standard_name = canopy_water_amount
long_name = canopy water amount
units = kg m-2
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[ffmm]
standard_name = Monin_Obukhov_similarity_function_for_momentum
long_name = Monin-Obukhov similarity function for momentum
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[ffhh]
standard_name = Monin_Obukhov_similarity_function_for_heat
long_name = Monin-Obukhov similarity function for heat
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[f10m]
standard_name = ratio_of_wind_at_surface_adjacent_layer_to_wind_at_10m
long_name = ratio of sigma level 1 wind and 10m wind
units = ratio
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tprcp]
standard_name = nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep
long_name = total precipitation amount in each time step
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[srflag]
standard_name = precipitation_type
long_name = snow/rain flag for precipitation
units = flag
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[slc]
standard_name = volume_fraction_of_unfrozen_water_in_soil
long_name = liquid soil moisture
units = frac
dimensions = (horizontal_loop_extent,vertical_dimension_of_soil)
type = real
kind = kind_phys
[smc]
standard_name = volume_fraction_of_condensed_water_in_soil
long_name = total soil moisture
units = frac
dimensions = (horizontal_loop_extent,vertical_dimension_of_soil)
type = real
kind = kind_phys
[stc]
standard_name = soil_temperature
long_name = soil temperature
units = K
dimensions = (horizontal_loop_extent,vertical_dimension_of_soil)
type = real
kind = kind_phys
[t2m]
standard_name = air_temperature_at_2m
long_name = 2 meter temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[th2m]
standard_name = air_potential_temperature_at_2m
long_name = 2 meter potential temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[q2m]
standard_name = specific_humidity_at_2m
long_name = 2 meter specific humidity
units = kg kg-1
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
[tref]
standard_name = reference_sea_surface_temperature
long_name = sea surface reference temperature
units = K
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[z_c]
standard_name = molecular_sublayer_thickness_in_sea_water
long_name = sub-layer cooling thickness
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[c_0]
standard_name = coefficient_c_0
long_name = coefficient 1 to calculate d(Tz)/d(Ts)
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[c_d]
standard_name = coefficient_c_d
long_name = coefficient 2 to calculate d(Tz)/d(Ts)
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[w_0]
standard_name = coefficient_w_0
long_name = coefficient 3 to calculate d(Tz)/d(Ts)
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[w_d]
standard_name = coefficient_w_d
long_name = coefficient 4 to calculate d(Tz)/d(Ts)
units = none
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xt]
standard_name = heat_content_in_diurnal_thermocline
long_name = heat content in diurnal thermocline layer
units = K m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xs]
standard_name = sea_water_salinity_in_diurnal_thermocline
long_name = salinity content in diurnal thermocline layer
units = ppt m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xu]
standard_name = x_current_in_diurnal_thermocline
long_name = u-current content in diurnal thermocline layer
units = m2 s-1
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xv]
standard_name = y_current_in_diurnal_thermocline
long_name = v-current content in diurnal thermocline layer
units = m2 s-1
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xz]
standard_name = diurnal_thermocline_layer_thickness
long_name = diurnal thermocline layer thickness
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[zm]
standard_name = ocean_mixed_layer_thickness
long_name = mixed layer thickness
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xtts]
standard_name = derivative_of_heat_content_in_diurnal_thermocline_wrt_surface_skin_temperature
long_name = d(xt)/d(ts)
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[xzts]
standard_name = derivative_of_diurnal_thermocline_layer_thickness_wrt_surface_skin_temperature
long_name = d(xz)/d(ts)
units = m K-1
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[d_conv]
standard_name = free_convection_layer_thickness_in_sea_water
long_name = thickness of free convection layer (FCL)
units = m
dimensions = (horizontal_loop_extent)
type = real
kind = kind_phys
active = (control_for_nsstm > 0)
[ifd]
standard_name = control_for_diurnal_thermocline_calculation
long_name = index to start dtlm run or not
units = index
dimensions = (horizontal_loop_extent)
type = real