-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathregistry.chem
4116 lines (3856 loc) · 534 KB
/
registry.chem
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
######################################################################################
#
# WRF-GC
# Project Pumpkin: Abstracted bindings for WRF-to-Chemistry Model
#
######################################################################################
# (c) 2018-2021 Haipeng Lin <[email protected]>, Xu Feng <[email protected]>
# Tzung-May Fu <[email protected]>
# SUSTech, Atmospheric Chemistry and Climate Group, fugroup.org
######################################################################################
#
# CHEMISTRY REGISTRY
# This is the "registry.chem" file that is installed at WRF/Registry
# when you run "make install_registry" in the chem/ folder.
#
# This registry will replace the native WRF/Chem registry file, enabling your new
# chemistry model's species, namelist options, and input/output options.
#
# Note that some variables must be available even if your chemistry does not use them.
# This ensures compatibility through stubbing with WRF/Chem.
# For more info, contact H.P. Lin or read the documentation.
#
######################################################################################
#
# Chemistry Type: GEOS-Chem
#
# The "GC" Chemistry Type contains GEOS-Chem species, while maintaining existing WRF ones
# when possible.
#
# * To satisfy for the fact that WRF has some parts that call config_flags% of chem
# outside of the chem/ and this is beyond our control.
#
# This means that most options below "- maintained for compatibility reasons -"
# is "useless" to you and should be ignored, but note that you should set them to 0/
# default/null values so that the WRF code that uses them are neutral to your simulations.
#
# * Also, you should use a new chem_opt value (keep the ones in this file!)
# most are validated against in dyn_em/start_em.F to call sum_pm... we cannot control that.
#
# The "Agnostic" list has been carefully compiled by yours truly (H.P. Lin), 2018-03-27
# based on WRF v3.9.1.1 source code.
#
# Updated 2021-10-12 based on WRF v4.3 source code.
#
######################################################################################
################### - MAINTAINED FOR COMPATIBILITY REASONS - #########################
rconfig integer gsfcrad_gocart_coupling namelist,chem 1 2
rconfig integer gsfcgce_gocart_coupling namelist,chem 1 2
state real AOD_OUT ikj misc 1 - h "AOD_OUT" "Aerosol Optical Depth" " "
state real AOD2D_OUT ij misc 1 - h "AOD2D_OUT" "Aerosol Optical Depth, 2d" " "
state real ATOP2D_OUT ij misc 1 - h "ATOP2D_OUT" "Aerosol Optical Depth, top" " "
state real ICN_DIAG ikj misc 1 - h "ICN_DIAG" "Some chem thing, ICN_DIAG" " "
state real NC_DIAG ikj misc 1 - h "NC_DIAG" "Some chem thing, NC_DIAG" " "
# Chemistry Variables (all shared at this point)
#-----------------------------------------------------------------------------------------------------------------------------------------------------------------
rconfig character auxinput12_inname namelist,time_control 1 "wrf_chem_input" - "name of auxinput12 infile" "" ""
rconfig integer io_form_auxinput12 namelist,time_control 1 2
state real CLDFRA2 ikj misc 1 - h "CLDFRA2" "CLOUD FRACTION"
state real QV_B4MP ikj misc 1 - - "QV_B4MP" "WATER VAPOR BEFORE MICROPHYSICS" "kg kg-1"
state real QC_B4MP ikj misc 1 - - "QC_B4MP" "CLOUD WATER BEFORE MICROPHYSICS" "kg kg-1"
state real QI_B4MP ikj misc 1 - - "QI_B4MP" "CLOUD ICE BEFORE MICROPHYSICS" "kg kg-1"
state real QS_B4MP ikj misc 1 - - "QS_B4MP" "SNOW BEFORE MICROPHYSICS" "kg kg-1"
state real ph_cw ikj misc 1 - - "ph_cw" "pH of cloud water" "Unitless"
state real ph_aer01 ikj misc 1 - - "ph_aer01" "H+ of aerosol bin 1" "mol/kg"
state real ph_aer02 ikj misc 1 - - "ph_aer02" "H+ of aerosol bin 2" "mol/kg"
state real ph_aer03 ikj misc 1 - - "ph_aer03" "H+ of aerosol bin 3" "mol/kg"
state real ph_aer04 ikj misc 1 - - "ph_aer04" "H+ of aerosol bin 4" "mol/kg"
state real ccn1 ikj misc 1 - r "ccn1" "CCN concentration at S=0.02%" "#/cm3"
state real ccn2 ikj misc 1 - r "ccn2" "CCN concentration at S=0.05%" "#/cm3"
state real ccn3 ikj misc 1 - r "ccn3" "CCN concentration at S=0.1%" "#/cm3"
state real ccn4 ikj misc 1 - r "ccn4" "CCN concentration at S=0.2%" "#/cm3"
state real ccn5 ikj misc 1 - r "ccn5" "CCN concentration at S=0.5%" "#/cm3"
state real ccn6 ikj misc 1 - r "ccn6" "CCN concentration at S=1.0%" "#/cm3"
# cloud water fractional removal rate needed for wet scavenging
state real qlsink ikj misc 1 - rdu "qlsink" "CLOUD WATER SINK" "/S"
state real precr ikj misc 1 - rdu "precr" "RAIN PRECIPITATION RATE" "KG/M2/S"
state real preci ikj misc 1 - rdu "preci" "ICE PRECIPITATION RATE" "KG/M2/S"
state real precs ikj misc 1 - rdu "precs" "SNOW PRECIPITATION RATE" "KG/M2/S"
state real precg ikj misc 1 - rdu "precg" "GRAUPEL PRECIPITATION RATE" "KG/M2/S"
#
# Timing variables for chemistry
#
state integer ktauc - misc - - r "ktauc" "Number of chemistry time steps" ""
state integer last_chem_time_year - misc - - r "last_chem_time_year" "last call to chem mechanism through restarts" "4-digit year"
state integer last_chem_time_month - misc - - r "last_chem_time_month" "last call to chem mechanism through restarts" "2-digit month"
state integer last_chem_time_day - misc - - r "last_chem_time_day" "last call to chem mechanism through restarts" "2-digit day"
state integer last_chem_time_hour - misc - - r "last_chem_time_hour" "last call to chem mechanism through restarts" "2-digit hour"
state integer last_chem_time_minute - misc - - r "last_chem_time_minute" "last call to chem mechanism through restarts" "2-digit minute"
state integer last_chem_time_second - misc - - r "last_chem_time_second" "last call to chem mechanism through restarts" "2-digit second"
#
# Emissions variables
#
state integer emissframes - - - - - "emissframes" "" ""
state integer fireemissframes - - - - - "fireemissframes" "" ""
#
# Rain, evaporation rates
#
state real - ikjf wetscav_frcing - - - - "Rain,evap rates" "s-1"
state real RAINPROD ikjf wetscav_frcing 1 - h "RAINPROD" "TOTAL RAIN PRODUCTION RATE" "s-1"
state real EVAPPROD ikjf wetscav_frcing 1 - h "EVAPPROD" "RAIN EVAPORATION RATE" "s-1"
#
# Anthropogenic emissions
#
state real - i+jf emis_ant - - - - "Anthropogenic Emissions" ""
state real e_iso i+jf emis_ant 1 Z i5r "E_ISO" "Isoprene EMISSIONS (Anth. for RADM/RACM, Anth+Bio for CBMZ)" "mol km^-2 hr^-1"
# soiltexturef is texture category fraction for each grid cell
state real ust_t ij misc 1 - i012rh "UST_T" "Threshold Friction Velocity" "m s-1"
state real rough_cor ij misc 1 - rh "Rough_cor" "roughness elements correction" ""
state real smois_cor ij misc 1 - rh "Smois_cor" "soil moisture correction" ""
state real dustload_1 ij misc 1 - r "dustload_1" "dust loading for size 1" "ug/m2"
state real dustload_2 ij misc 1 - r "dustload_2" "dust loading for size 2" "ug/m2"
state real dustload_3 ij misc 1 - r "dustload_3" "dust loading for size 3" "ug/m2"
state real dustload_4 ij misc 1 - r "dustload_4" "dust loading for size 4" "ug/m2"
state real dustload_5 ij misc 1 - r "dustload_5" "total dust loading" "ug/m2"
state real depvelocity ij misc 1 - rh "drydepvel" "dust dry deposition velocity " "m/s"
state real setvel_1 ij misc 1 - r "setvel_1" "dust gravitational settling velocity for size 1" "m/s"
state real setvel_2 ij misc 1 - r "setvel_2" "dust gravitational settling velocity for size 2" "m/s"
state real setvel_3 ij misc 1 - r "setvel_3" "dust gravitational settling velocity for size 3" "m/s"
state real setvel_4 ij misc 1 - r "setvel_4" "dust gravitational settling velocity for size 4" "m/s"
state real setvel_5 ij misc 1 - r "setvel_5" "effective gravitational settling velocity for total" "m/s"
state real dustgraset_1 ij misc 1 - r "graset_1" "dust gravitational settling for size 1" "ug/m2/s"
state real dustgraset_2 ij misc 1 - r "graset_2" "dust gravitational settling for size 2" "ug/m2/s"
state real dustgraset_3 ij misc 1 - r "graset_3" "dust gravitational settling for size 3" "ug/m2/s"
state real dustgraset_4 ij misc 1 - r "graset_4" "dust gravitational settling for size 4" "ug/m2/s"
state real dustgraset_5 ij misc 1 - r "graset_5" "dust gravitational settling for size 5" "ug/m2/s"
state real dustdrydep_1 ij misc 1 - r "drydep_1" "dust dry deposition for size 1" "ug/m2/s"
state real dustdrydep_2 ij misc 1 - r "drydep_2" "dust dry deposition for size 2" "ug/m2/s"
state real dustdrydep_3 ij misc 1 - r "drydep_3" "dust dry deposition for size 3" "ug/m2/s"
state real dustdrydep_4 ij misc 1 - r "drydep_4" "dust dry deposition for size 4" "ug/m2/s"
state real dustdrydep_5 ij misc 1 - r "drydep_5" "dust dry deposition for size 5" "ug/m2/s"
state real dustwd_1 ikj misc 1 - r "dustwd_1" "dust loss by wet deposition for size 1" "ug/kg-dryair"
state real dustwd_2 ikj misc 1 - r "dustwd_2" "dust loss by wet deposition for size 2" "ug/kg-dryair"
state real dustwd_3 ikj misc 1 - r "dustwd_3" "dust loss by wet deposition for size 3" "ug/kg-dryair"
state real dustwd_4 ikj misc 1 - r "dustwd_4" "dust loss by wet deposition for size 4" "ug/kg-dryair"
state real dustwd_5 ikj misc 1 - r "dustwd_5" "dust loss by wet deposition for size 5" "ug/kg-dryair"
state real wetdep_1 ij misc 1 - r "wetdep_1" "dust wet deposition for size 1" "ug/m2/s"
state real wetdep_2 ij misc 1 - r "wetdep_2" "dust wet deposition for size 2" "ug/m2/s"
state real wetdep_3 ij misc 1 - r "wetdep_3" "dust wet deposition for size 3" "ug/m2/s"
state real wetdep_4 ij misc 1 - r "wetdep_4" "dust wet deposition for size 4" "ug/m2/s"
state real wetdep_5 ij misc 1 - r "wetdep_5" "dust wet deposition for size 5" "ug/m2/s"
state real dustwdload_1 ij misc 1 - r "dustwdload_1" "dustload loss by wet deposition for size 1" "ug/m2"
state real dustwdload_2 ij misc 1 - r "dustwdload_2" "dustload loss by wet deposition for size 2" "ug/m2"
state real dustwdload_3 ij misc 1 - r "dustwdload_3" "dustload loss by wet deposition for size 3" "ug/m2"
state real dustwdload_4 ij misc 1 - r "dustwdload_4" "dustload loss by wet deposition for size 4" "ug/m2"
state real dustwdload_5 ij misc 1 - r "dustwdload_5" "dustload loss by wet deposition for size 5" "ug/m2"
#SAPRCNOV additional emissions, automatically created using diff_mechEmiss_wrfRegistry.m script ([email protected])
state real e_c2h2 i+jf emis_ant 1 Z i5r "E_C2H2" "C2H2 emissions" "mol km^-2 hr^-1"
state real e_alk3 i+jf emis_ant 1 Z i5r "E_ALK3" "ALK3 emissions" "mol km^-2 hr^-1"
state real e_alk4 i+jf emis_ant 1 Z i5r "E_ALK4" "ALK4 emissions" "mol km^-2 hr^-1"
state real e_alk5 i+jf emis_ant 1 Z i5r "E_ALK5" "ALK5 emissions" "mol km^-2 hr^-1"
state real e_ethene i+jf emis_ant 1 Z i5r "E_ETHENE" "ETHENE emissions" "mol km^-2 hr^-1"
state real e_ole1 i+jf emis_ant 1 Z i5r "E_OLE1" "OLE1 emissions" "mol km^-2 hr^-1"
state real e_ole2 i+jf emis_ant 1 Z i5r "E_OLE2" "OLE2 emissions" "mol km^-2 hr^-1"
state real e_aro1 i+jf emis_ant 1 Z i5r "E_ARO1" "ARO1 emissions" "mol km^-2 hr^-1"
state real e_aro2 i+jf emis_ant 1 Z i5r "E_ARO2" "ARO2 emissions" "mol km^-2 hr^-1"
state real e_ccho i+jf emis_ant 1 Z i5r "E_CCHO" "CCHO emissions" "mol km^-2 hr^-1"
state real e_rcho i+jf emis_ant 1 Z i5r "E_RCHO" "RCHO emissions" "mol km^-2 hr^-1"
state real e_acet i+jf emis_ant 1 Z i5r "E_ACET" "ACET emissions" "mol km^-2 hr^-1"
state real e_isoprene i+jf emis_ant 1 Z i5r "E_ISOPRENE" "ISOPRENE emissions" "mol km^-2 hr^-1"
state real e_terp i+jf emis_ant 1 Z i5r "E_TERP" "TERP emissions" "mol km^-2 hr^-1"
state real e_sesq i+jf emis_ant 1 Z i5r "E_SESQ" "SESQUITERPENE emissions" "mol km^-2 hr^-1"
state real e_phen i+jf emis_ant 1 Z i5r "E_PHEN" "PHEN emissions" "mol km^-2 hr^-1"
state real e_cres i+jf emis_ant 1 Z i5r "E_CRES" "CRES emissions" "mol km^-2 hr^-1"
state real e_meoh i+jf emis_ant 1 Z i5r "E_MEOH" "MEOH emissions" "mol km^-2 hr^-1"
state real e_gly i+jf emis_ant 1 Z i5r "E_GLY" "GLY emissions" "mol km^-2 hr^-1"
state real e_mgly i+jf emis_ant 1 Z i5r "E_MGLY" "MGLY emissions" "mol km^-2 hr^-1"
state real e_bacl i+jf emis_ant 1 Z i5r "E_BACL" "BACL emissions" "mol km^-2 hr^-1"
state real e_isoprod i+jf emis_ant 1 Z i5r "E_ISOPROD" "ISOPROD emissions" "mol km^-2 hr^-1"
state real e_methacro i+jf emis_ant 1 Z i5r "E_METHACRO" "METHACRO emissions" "mol km^-2 hr^-1"
state real e_mvk i+jf emis_ant 1 Z i5r "E_MVK" "MVK emissions" "mol km^-2 hr^-1"
state real e_prod2 i+jf emis_ant 1 Z i5r "E_PROD2" "PROD2 emissions" "mol km^-2 hr^-1"
state real e_ch4 i+jf emis_ant 1 Z i5r "E_CH4" "CH4 emissions" "mol km^-2 hr^-1"
state real e_bald i+jf emis_ant 1 Z i5r "E_BALD" "BALD emissions" "mol km^-2 hr^-1"
state real e_hcooh i+jf emis_ant 1 Z i5r "E_HCOOH" "HCOOH emissions" "mol km^-2 hr^-1"
state real e_cco_oh i+jf emis_ant 1 Z i5r "E_CCO_OH" "CCO_OH emissions" "mol km^-2 hr^-1"
state real e_rco_oh i+jf emis_ant 1 Z i5r "E_RCO_OH" "RCO_OH emissions" "mol km^-2 hr^-1"
# GHG anthropogenic emissions
state real e_co2tst i+jf emis_ant 1 Z i5 "E_CO2TST" "Anthropogenic CO2 test fluxes" "mol km^-2 hr^-1"
state real e_cotst i+jf emis_ant 1 Z i5 "E_COTST" "Anthropogenic CO test fluxes" "mol km^-2 hr^-1"
state real e_ch4tst i+jf emis_ant 1 Z i5 "E_CH4TST" "Anthropogenic CH4 test fluxes" "mol km^-2 hr^-1"
# GHG emission variables
state real - ivjf eghg_bio - - - - "All biospheric GHG fluxes " ""
state real ebio_gee ivjf eghg_bio 1 Z - "EBIO_GEE" "biospheric VPRM CO2 uptake" "mol km^-2 hr^-1"
state real ebio_res ivjf eghg_bio 1 Z - "EBIO_RES" "biospheric VPRM CO2 release" "mol km^-2 hr^-1"
state real ebio_ch4wet ivjf eghg_bio 1 Z - "EBIO_CH4WET" "Biogenic CH4 wetland emissions" "mol km^-2 hr^-1"
state real ebio_ch4soil ivjf eghg_bio 1 Z - "EBIO_CH4SOIL" "CH4 soil uptake fluxes" "mol km^-2 hr^-1"
state real ebio_ch4term ivjf eghg_bio 1 Z - "EBIO_CH4TERM" "CH4 termite emissions" "mol km^-2 hr^-1"
#Additional CB05 emission variables
state real e_hcl i+jf emis_ant 1 Z i5 "E_HCL" "EMISSIONS HCL" "mol km^-2 hr^-1"
state real e_aldx i+jf emis_ant 1 Z i5 "E_ALDX" "EMISSIONS ALDX" "mol km^-2 hr^-1"
state real e_par i+jf emis_ant 1 Z i5 "E_PAR" "EMISSIONS PAR" "mol km^-2 hr^-1"
state real e_ole i+jf emis_ant 1 Z i5 "E_OLE" "EMISSIONS OLE" "mol km^-2 hr^-1"
state real e_iole i+jf emis_ant 1 Z i5 "E_IOLE" "EMISSIONS IOLE" "mol km^-2 hr^-1"
state real e_form i+jf emis_ant 1 Z i5 "E_FORM" "EMISSIONS FORM" "mol km^-2 hr^-1"
state real e_etha i+jf emis_ant 1 Z i5 "E_ETHA" "EMISSIONS ETHA" "mol km^-2 hr^-1"
state real e_etoh i+jf emis_ant 1 Z i5 "E_ETOH" "EMISSIONS ETOH" "mol km^-2 hr^-1"
state real e_ald2 i+jf emis_ant 1 Z i5 "E_ALD2" "EMISSIONS ALD2" "mol km^-2 hr^-1"
state real e_meo2 i+jf emis_ant 1 Z i5 "E_MEO2" "EMISSIONS MEO2" "mol km^-2 hr^-1"
state real e_psulf i+jf emis_ant 1 Z i5 "E_PSULF" "EMISSIONS PSULF" "mol km^-2 hr^-1"
state real e_ccooh i+jf emis_ant 1 Z i5 "E_CCOOH" "EMISSIONS CCOOH" "mol km^-2 hr^-1"
state real e_iprod i+jf emis_ant 1 Z i5 "E_IPROD" "EMISSIONS IPROD" "mol km^-2 hr^-1"
state real e_hg2 i+jf emis_ant 1 Z i5 "E_HG2" "EMISSIONS HG2" "mol km^-2 hr^-1"
state real e_hg0 i+jf emis_ant 1 Z i5 "E_HG0" "EMISSIONS HG0" "mol km^-2 hr^-1"
state real e_fmcl i+jf emis_ant 1 Z i5 "E_FMCL" "EMISSIONS FMCL" "mol km^-2 hr^-1"
state real e_hgp i+jf emis_ant 1 Z i5 "E_HGP" "EMISSIONS HGP" "ug/m3 m/s"
state real e_apin i+jf emis_ant 1 Z i5 "E_APIN" "EMISSIONS a-Pinene" "mol km^-2 hr^-1"
state real e_bpin i+jf emis_ant 1 Z i5 "E_BPIN" "EMISSIONS b-Pinene" "mol km^-2 hr^-1"
state real e_lim i+jf emis_ant 1 Z i5 "E_LIM" "EMISSIONS Limonene" "mol km^-2 hr^-1"
state real e_ter i+jf emis_ant 1 Z i5 "E_TER" "EMISSIONS Terpinene" "mol km^-2 hr^-1"
state real e_oci i+jf emis_ant 1 Z i5 "E_OCI" "EMISSIONS Ocimene" "mol km^-2 hr^-1"
state real e_hum i+jf emis_ant 1 Z i5 "E_HUM" "EMISSIONS Humulene" "mol km^-2 hr^-1"
# dust and seas emission arrays
state real - i{dust}jf emis_dust - - - - "Dust Emissions" ""
state real edust1 i{dust}jf emis_dust 1 Z - "EDUST1" "Accumulated DUST emissions bin1" "kg/m2"
state real edust2 i{dust}jf emis_dust 1 Z - "EDUST2" "Accumulated DUST emissions bin2" "kg/m2"
state real edust3 i{dust}jf emis_dust 1 Z - "EDUST3" "Accumulated DUST emissions bin3" "kg/m2"
state real edust4 i{dust}jf emis_dust 1 Z - "EDUST4" "Accumulated DUST emissions bin4" "kg/m2"
state real edust5 i{dust}jf emis_dust 1 Z - "EDUST5" "Accumulated DUST emissions bin5" "kg/m2"
state real - i{dust}jf emis_seas - - - - "Sea-Salt Emissions" ""
state real eseas1 i{dust}jf emis_seas 1 Z - "ESEAS1" "Sea-Salt emissions bin1 " ""
state real eseas2 i{dust}jf emis_seas 1 Z - "ESEAS2" "Sea-Salt emissions bin2 " ""
state real eseas3 i{dust}jf emis_seas 1 Z - "ESEAS3" "Sea-Salt emissions bin3 " ""
state real eseas4 i{dust}jf emis_seas 1 Z - "ESEAS4" "Sea-Salt emissions bin4 " ""
# seas emission diagnositic for seas_opt==2
state real - i{dust}jf emis_seas2 - - - - "Sea-Salt Emissions" ""
state real eseasj i{dust}jf emis_seas2 1 Z - "ESEASJ" "Sea-Salt emissions accu mode " "g/m2/s"
state real eseasc i{dust}jf emis_seas2 1 Z - "ESEASC" "Sea-Salt emissions coarse mode " "g/m2/s"
#
# volcanic ash emissions
#
state real - ikjf emis_vol - - - - "Volcanic Emissions" ""
state real e_vash1 ikjf emis_vol 1 Z i{13}hr "E_VASH1" "Volcanic Emissions, bin1" "ug/m2/s"
state real e_vash2 ikjf emis_vol 1 Z i{13}hr "E_VASH2" "Volcanic Emissions, bin2" "ug/m2/s"
state real e_vash3 ikjf emis_vol 1 Z i{13}r "E_VASH3" "Volcanic Emissions, bin3" "ug/m2/s"
state real e_vash4 ikjf emis_vol 1 Z i{13}r "E_VASH4" "Volcanic Emissions, bin4" "ug/m2/s"
state real e_vash5 ikjf emis_vol 1 Z i{13}r "E_VASH5" "Volcanic Emissions, bin5" "ug/m2/s"
state real e_vash6 ikjf emis_vol 1 Z i{13}r "E_VASH6" "Volcanic Emissions, bin6" "ug/m2/s"
state real e_vash7 ikjf emis_vol 1 Z i{13}r "E_VASH7" "Volcanic Emissions, bin7" "ug/m2/s"
state real e_vash8 ikjf emis_vol 1 Z i{13}r "E_VASH8" "Volcanic Emissions, bin8" "ug/m2/s"
state real e_vash9 ikjf emis_vol 1 Z i{13}r "E_VASH9" "Volcanic Emissions, bin9" "ug/m2/s"
state real e_vash10 ikjf emis_vol 1 Z i{13}r "E_VASH10" "Volcanic Emissions, bin10" "ug/m2/s"
state real e_vso2 ikjf emis_vol 1 Z i{13}r "E_VSO2" "Volcanic Emissions, SO2" "mol/m2/h"
#
# biomassburning emission arrays (used by fire plume rise)
state real - ikjf ebu - - - - "Biomass burnung Emissions" ""
state real ebu_no ikjf ebu 1 Z - "ebu_no" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_no2 ikjf ebu 1 Z - "ebu_no2" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_co ikjf ebu 1 Z - "ebu_co" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_co2 ikjf ebu 1 Z - "ebu_co2" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_eth ikjf ebu 1 Z - "ebu_eth" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hc3 ikjf ebu 1 Z - "ebu_hc3" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hc5 ikjf ebu 1 Z - "ebu_hc5" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hc8 ikjf ebu 1 Z - "ebu_hc8" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ete ikjf ebu 1 Z - "ebu_ete" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_olt ikjf ebu 1 Z - "ebu_olt" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_oli ikjf ebu 1 Z - "ebu_oli" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_pm25 ikjf ebu 1 Z - "ebu_pm25" "biomass burning emiss" "ug/m2/s"
state real ebu_pm10 ikjf ebu 1 Z - "ebu_pm10" "biomass burning emiss" "ug/m2/s"
state real ebu_dien ikjf ebu 1 Z - "ebu_dien" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_iso ikjf ebu 1 Z - "ebu_iso" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_api ikjf ebu 1 Z - "ebu_api" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_lim ikjf ebu 1 Z - "ebu_lim" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_tol ikjf ebu 1 Z - "ebu_tol" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_xyl ikjf ebu 1 Z - "ebu_xyl" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_csl ikjf ebu 1 Z - "ebu_csl" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hcho ikjf ebu 1 Z - "ebu_hcho" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ald ikjf ebu 1 Z - "ebu_ald" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ket ikjf ebu 1 Z - "ebu_ket" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_macr ikjf ebu 1 Z - "ebu_macr" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ora1 ikjf ebu 1 Z - "ebu_ora1" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ora2 ikjf ebu 1 Z - "ebu_ora2" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_nh3 ikjf ebu 1 Z - "ebu_nh3" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_so2 ikjf ebu 1 Z - "ebu_so2" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_dms ikjf ebu 1 Z - "ebu_dms" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_oc ikjf ebu 1 Z h "ebu_oc" "biomass burning emiss" "ug/m2/s"
state real ebu_bc ikjf ebu 1 Z - "ebu_bc" "biomass burning emiss" "ug/m2/s"
state real ebu_sulf ikjf ebu 1 Z - "ebu_sulf" "biomass burning emiss" "mol km^-2 hr^-1"
# additional arrays for mozcart biomass burning
state real ebu_bigalk ikjf ebu 1 Z - "ebu_bigalk" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_bigene ikjf ebu 1 Z - "ebu_bigene" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c2h4 ikjf ebu 1 Z - "ebu_c2h4" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c2h5oh ikjf ebu 1 Z - "ebu_c2h5oh" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c2h6 ikjf ebu 1 Z - "ebu_c2h6" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c3h6 ikjf ebu 1 Z - "ebu_c3h6" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c3h8 ikjf ebu 1 Z - "ebu_c3h8" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ch2o ikjf ebu 1 Z - "ebu_ch2o" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ch3cho ikjf ebu 1 Z - "ebu_ch3cho" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ch3coch3 ikjf ebu 1 Z - "ebu_ch3coch3" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ch3oh ikjf ebu 1 Z - "ebu_ch3oh" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_mek ikjf ebu 1 Z - "ebu_mek" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_toluene ikjf ebu 1 Z - "ebu_toluene" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_open ikjf ebu 1 Z - "ebu_open" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c10h16 ikjf ebu 1 Z - "ebu_c10h16" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_mgly ikjf ebu 1 Z - "ebu_mgly" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ch3cooh ikjf ebu 1 Z - "ebu_ch3cooh" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_cres ikjf ebu 1 Z - "ebu_cres" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_glyald ikjf ebu 1 Z - "ebu_glyald" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_gly ikjf ebu 1 Z - "ebu_gly" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_acetol ikjf ebu 1 Z - "ebu_acetol" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_isop ikjf ebu 1 Z - "ebu_isop" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_mvk ikjf ebu 1 Z - "ebu_mvk" "biomass burning emiss" "mol km^-2 hr^-1"
# additional arrays for t1_mozcart biomass burning
state real ebu_apin ikjf ebu 1 Z - "ebu_apin" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_benzene ikjf ebu 1 Z - "ebu_benzene" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_ch3cn ikjf ebu 1 Z - "ebu_ch3cn" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hcn ikjf ebu 1 Z - "ebu_hcn" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hcooh ikjf ebu 1 Z - "ebu_hcooh" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_c2h2 ikjf ebu 1 Z - "ebu_c2h2" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_hpald ikjf ebu 1 Z - "ebu_hpald" "biomass burning emiss" "mol km^-2 hr^-1"
state real ebu_xylenes ikjf ebu 1 Z - "ebu_xylenes" "biomass burning emiss" "mol km^-2 hr^-1"
# CH4 biomass burning emissions
state real ebu_ch4 ikjf ebu 1 Z h "ebu_ch4" "biomass burning emiss" "mol km^-2 hr^-1"
# additional arrays needed for biomass burning emissions input
state real - i]jf ebu_in - - - - "Biomass burnung input " ""
state real ebu_in_no i]jf ebu_in 1 - i07 "ebu_in_no" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_no2 i]jf ebu_in 1 - i07 "ebu_in_no2" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_co i]jf ebu_in 1 - i07 "ebu_in_co" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_co2 i]jf ebu_in 1 - i07 "ebu_in_co2" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_eth i]jf ebu_in 1 - i07 "ebu_in_eth" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hc3 i]jf ebu_in 1 - i07 "ebu_in_hc3" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hc5 i]jf ebu_in 1 - i07 "ebu_in_hc5" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hc8 i]jf ebu_in 1 - i07 "ebu_in_hc8" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ete i]jf ebu_in 1 - i07 "ebu_in_ete" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_olt i]jf ebu_in 1 - i07 "ebu_in_olt" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_oli i]jf ebu_in 1 - i07 "ebu_in_oli" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_pm25 i]jf ebu_in 1 - i07 "ebu_in_pm25" "EMISSIONS" "ug/m2/s"
state real ebu_in_pm10 i]jf ebu_in 1 - i07 "ebu_in_pm10" "EMISSIONS" "ug/m2/s"
state real ebu_in_dien i]jf ebu_in 1 - i07 "ebu_in_dien" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_iso i]jf ebu_in 1 - i07 "ebu_in_iso" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_api i]jf ebu_in 1 - i07 "ebu_in_api" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_lim i]jf ebu_in 1 - i07 "ebu_in_lim" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_tol i]jf ebu_in 1 - i07 "ebu_in_tol" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_xyl i]jf ebu_in 1 - i07 "ebu_in_xyl" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_csl i]jf ebu_in 1 - i07 "ebu_in_csl" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hcho i]jf ebu_in 1 - i07 "ebu_in_hcho" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ald i]jf ebu_in 1 - i07 "ebu_in_ald" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ket i]jf ebu_in 1 - i07 "ebu_in_ket" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_macr i]jf ebu_in 1 - i07 "ebu_in_macr" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ora1 i]jf ebu_in 1 - i07 "ebu_in_ora1" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ora2 i]jf ebu_in 1 - i07 "ebu_in_ora2" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_nh3 i]jf ebu_in 1 - i07 "ebu_in_nh3" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_so2 i]jf ebu_in 1 - i07 "ebu_in_so2" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_dms i]jf ebu_in 1 - i07 "ebu_in_dms" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_oc i]jf ebu_in 1 - i07 "ebu_in_oc" "EMISSIONS" "ug/m2/s"
state real ebu_in_bc i]jf ebu_in 1 - i07 "ebu_in_bc" "EMISSIONS" "ug/m2/s"
state real ebu_in_sulf i]jf ebu_in 1 - i07 "ebu_in_sulf" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ash i]jf ebu_in 1 - i07 "ebu_in_ash" "EMISSIONS" "ug/m2/s"
# additional arrays for mozcart biomass burning
state real ebu_in_bigalk i]jf ebu_in 1 - i07 "ebu_in_bigalk" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_bigene i]jf ebu_in 1 - i07 "ebu_in_bigene" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c2h4 i]jf ebu_in 1 - i07 "ebu_in_c2h4" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c2h5oh i]jf ebu_in 1 - i07 "ebu_in_c2h5oh" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c2h6 i]jf ebu_in 1 - i07 "ebu_in_c2h6" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c3h6 i]jf ebu_in 1 - i07 "ebu_in_c3h6" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c3h8 i]jf ebu_in 1 - i07 "ebu_in_c3h8" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ch2o i]jf ebu_in 1 - i07 "ebu_in_ch2o" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ch3cho i]jf ebu_in 1 - i07 "ebu_in_ch3cho" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ch3coch3 i]jf ebu_in 1 - i07 "ebu_in_ch3coch3" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ch3oh i]jf ebu_in 1 - i07 "ebu_in_ch3oh" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_mek i]jf ebu_in 1 - i07 "ebu_in_mek" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_toluene i]jf ebu_in 1 - i07 "ebu_in_toluene" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_open i]jf ebu_in 1 - i07 "ebu_in_open" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c10h16 i]jf ebu_in 1 - i07 "ebu_in_c10h16" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_mgly i]jf ebu_in 1 - i07 "ebu_in_mgly" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ch3cooh i]jf ebu_in 1 - i07 "ebu_in_ch3cooh" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_cres i]jf ebu_in 1 - i07 "ebu_in_cres" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_glyald i]jf ebu_in 1 - i07 "ebu_in_glyald" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_gly i]jf ebu_in 1 - i07 "ebu_in_gly" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_acetol i]jf ebu_in 1 - i07 "ebu_in_acetol" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_isop i]jf ebu_in 1 - i07 "ebu_in_isop" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_mvk i]jf ebu_in 1 - i07 "ebu_in_mvk" "EMISSIONS" "mol km^-2 hr^-1"
# additional arrays for t1_mozcart biomass burning
state real ebu_in_apin i]jf ebu_in 1 - i07 "ebu_in_apin" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_benzene i]jf ebu_in 1 - i07 "ebu_in_benzene" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_ch3cn i]jf ebu_in 1 - i07 "ebu_in_ch3cn" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hcn i]jf ebu_in 1 - i07 "ebu_in_hcn" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hcooh i]jf ebu_in 1 - i07 "ebu_in_hcooh" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_c2h2 i]jf ebu_in 1 - i07 "ebu_in_c2h2" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_hpald i]jf ebu_in 1 - i07 "ebu_in_hpald" "EMISSIONS" "mol km^-2 hr^-1"
state real ebu_in_xylenes i]jf ebu_in 1 - i07 "ebu_in_xylenes" "EMISSIONS" "mol km^-2 hr^-1"
# additional array for ch4 bbm emission
state real ebu_in_ch4 i]jf ebu_in 1 - i07 "ebu_in_ch4" "EMISSIONS" "mol km^-2 hr^-1"
#
state real mean_fct_agtf ij misc 1 - i07h "mean_fct_agtf" "mean fraction of tropical forest" "?"
state real mean_fct_agef ij misc 1 - i07h "mean_fct_agef" "mean fraction of extra tropical forest" "?"
state real mean_fct_agsv ij misc 1 - i07h "mean_fct_agsv" "mean fraction of savanna" "?"
state real mean_fct_aggr ij misc 1 - i07h "mean_fct_aggr" "mean fraction of grassland" "?"
state real firesize_agtf ij misc 1 - i07h "firesize_agtf" "mean firesize for tropical forest" "?"
state real firesize_agef ij misc 1 - i07h "firesize_agef" "mean firesize for extratropical forest" "?"
state real firesize_agsv ij misc 1 - i07h "firesize_agsv" "mean firesize for savanna" "?"
state real firesize_aggr ij misc 1 - i07h "firesize_aggr" "mean firesize for grassland" "?"
# track state filed
state real radfld i{tz}j{tr} misc 1 - - "radfld" "radfld" ""
state real adjcoe i{tz}j{tt} misc 1 - - "adjcoe" "adjcoe" ""
state real phrate i{tz}j{tt} misc 1 - - "phrate" "phrate" ""
# track output
state real track_chem {tc}{tl}k misc 1 - - "track_chem" "chem concentration" "ppmv"
state real track_o31d {tl}k misc 1 - - "photor_o31d" "O31D Photolysis Rate" "min{-1}"
state real track_o33p {tl}k misc 1 - - "photor_o33p" "O33P Photolysis Rate" "min{-1}"
state real track_no2 {tl}k misc 1 - - "photor_no2" "NO2 Photolysis Rate" "min{-1}"
state real track_hno2 {tl}k misc 1 - - "photor_hno2" "HNO2 Photolysis Rate" "min{-1}"
state real track_hno3 {tl}k misc 1 - - "photor_hno3" "HNO3 Photolysis Rate" "min{-1}"
state real track_h2o2 {tl}k misc 1 - - "photor_h2o2" "H2O2 Photolysis Rate" "min{-1}"
state real track_ch3o2h {tl}k misc 1 - - "photor_ch3o2h" "CH3O2H Photolysis Rate" "min{-1}"
state real track_radfld {tl}{tr}{tz} misc 1 - - "radfld" "radfld" ""
state real track_adjcoe {tl}{tt}{tz} misc 1 - - "adjcoe" "adjcoe" ""
state real track_phrate {tl}{tt}{tz} misc 1 - - "phrate" "phrate" ""
state real track_wc {tr} misc 1 - - "wc" "wavelength" ""
state real track_zref {tz} misc 1 - - "zref" "reference height" "km"
# Tropopause
state real tropo_p ij misc 1 - r "tropo_p" "Tropopause pressure" "Pa"
state real tropo_z ij misc 1 - r "tropo_z" "Tropopause height" "meters"
state integer tropo_lev ij misc 1 - r "tropo_lev" "Tropopause level" ""
# wetdep diagnostics
state real hno3_col_mdel ij misc 1 - - "HNO3_COL_MDEL" "hno3 column mass change" "kg"
#
# aircraft emissions
state integer aircraftemissframes - - - - - "aircraftemissframes" "" ""
state real - i{airc}jf emis_aircraft - - - - "Aircraft Emissions" ""
state real eac_so2 i{airc}jf emis_aircraft 1 Z i{14} "EAC_SO2" "EMISSIONS" "mol km^-2 hr^-1"
state real eac_no i{airc}jf emis_aircraft 1 Z i{14} "EAC_NO" "EMISSIONS" "mol km^-2 hr^-1"
state real eac_co i{airc}jf emis_aircraft 1 Z i{14} "EAC_CO" "EMISSIONS" "mol km^-2 hr^-1"
state real eac_ch4 i{airc}jf emis_aircraft 1 Z i{14} "EAC_CH4" "EMISSIONS" "mol km^-2 hr^-1"
#
state real - ikjf ext_coef - - - - "Extinction coefficients" ""
state real extcof3 ikjf ext_coef 1 Z - "EXTCOF3" "Extinction coefficients for .3um" "km^-1"
state real extcof55 ikjf ext_coef 1 Z h "EXTCOF55" "Extinction coefficients for .55um" "km^-1"
state real extcof106 ikjf ext_coef 1 Z - "EXTCOF106" "Extinction coefficients for 1.06um" "km^-1"
state real extcof3_5 ikjf ext_coef 1 Z - "EXTCOF3_5" "Band averaged extinction coefficients for 3-5um" "km^-1"
state real extcof8_12 ikjf ext_coef 1 Z - "EXTCOF8_12" "Band averaged extinction coefficients for 8-12um" "km^-1"
state real - ikjf bscat_coef - - - - "Scatter coefficients" ""
state real bscof3 ikjf bscat_coef 1 Z - "BSCOF3" "Scatter coefficients for .3um" "km^-1"
state real bscof55 ikjf bscat_coef 1 Z - "BSCOF5" "Scatter coefficients for .5um" "km^-1"
state real bscof106 ikjf bscat_coef 1 Z - "BSCOF106" "Scatter coefficients for 1.06um" "km^-1"
state real - ikjf asym_par - - - - "assymetry parameter" ""
state real asympar3 ikjf asym_par 1 Z - "ASYMPAR3" "assymetry parameter for .3um" "?"
state real asympar55 ikjf asym_par 1 Z - "ASYMPAR55" "assymetry parameter for .55um" "?"
state real asympar106 ikjf asym_par 1 Z - "ASYMPAR106" "assymetry parameter for 1.06um" "?"
#for dep outputs
state real ddlen ijo misc 1 Z rh "DRY_DEP_LEN" "dry deposition velocity" "cm/s"
state real ddflx ijo misc 1 Z r "DRY_DEP_FLUX" "dry deposition flux" "mol or ug m^-2"
state real wdflx ijo misc 1 Z r "WET_DEP_FLUX" "column wet scavening flux" "mmol or ug m^-2"
#
state real e_bio ijo misc 1 Z r "E_BIO" "EMISSIONS" "ppm m/min"
state real sebio_iso ij misc 1 - i06r "sebio_iso" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_oli ij misc 1 - i06r "sebio_oli" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_api ij misc 1 - i06r "sebio_api" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_lim ij misc 1 - i06r "sebio_lim" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_xyl ij misc 1 - i06r "sebio_xyl" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_hc3 ij misc 1 - i06r "sebio_hc3" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_ete ij misc 1 - i06r "sebio_ete" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_olt ij misc 1 - i06r "sebio_olt" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_ket ij misc 1 - i06r "sebio_ket" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_ald ij misc 1 - i06r "sebio_ald" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_hcho ij misc 1 - i06r "sebio_hcho" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_eth ij misc 1 - i06r "sebio_eth" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_ora2 ij misc 1 - i06r "sebio_ora2" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_co ij misc 1 - i06r "sebio_co" "Reference biog emiss" "mol km^-2 hr^-1"
state real sebio_nr ij misc 1 - i06r "sebio_nr" "Reference biog emiss" "mol km^-2 hr^-1"
state real noag_grow ij misc 1 - i06r "noag_grow" "Reference biog emiss" "mol km^-2 hr^-1"
state real noag_nongrow ij misc 1 - i06r "noag_nongrow" "Reference biog emiss" "mol km^-2 hr^-1"
state real nononag ij misc 1 - i06r "nononag" "Reference biog emiss" "mol km^-2 hr^-1"
state real slai ij misc 1 - i06r "slai" "Leaf area index isop" ""
state real ebio_iso ij misc 1 - rh "EBIO_ISO" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_oli ij misc 1 - r "ebio_oli" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_api ij misc 1 - rh "ebio_api" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_lim ij misc 1 - r "ebio_lim" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_xyl ij misc 1 - r "ebio_xyl" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_hc3 ij misc 1 - r "ebio_hc3" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ete ij misc 1 - r "ebio_ete" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_olt ij misc 1 - r "ebio_olt" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ket ij misc 1 - r "ebio_ket" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ald ij misc 1 - r "ebio_ald" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_hcho ij misc 1 - r "ebio_hcho" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_eth ij misc 1 - r "ebio_eth" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ora2 ij misc 1 - r "ebio_ora2" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_co ij misc 1 - r "ebio_co" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_nr ij misc 1 - r "ebio_nr" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_no ij misc 1 - r "ebio_no" "Actual biog emiss" "mol km^-2 hr^-1"
# saprc
state real ebio_alk3 ij misc 1 - - "ebio_alk3" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_alk4 ij misc 1 - - "ebio_alk4" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_alk5 ij misc 1 - - "ebio_alk5" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ole1 ij misc 1 - - "ebio_ole1" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ole2 ij misc 1 - - "ebio_ole2" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_aro1 ij misc 1 - - "ebio_aro1" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_aro2 ij misc 1 - - "ebio_aro2" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ccho ij misc 1 - - "ebio_ccho" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_meoh ij misc 1 - - "ebio_meoh" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ethene ij misc 1 - - "ebio_ethene" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_hcooh ij misc 1 - - "ebio_hcooh" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_terp ij misc 1 - - "ebio_terp" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_bald ij misc 1 - - "ebio_bald" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_cco_oh ij misc 1 - - "ebio_cco_oh" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_rco_oh ij misc 1 - - "ebio_rco_oh" "Actual biog emiss" "mol km^-2 hr^-1"
# mozcart megan2 bio emission species
state real ebio_c10h16 ij misc 1 - r "ebio_c10h16" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_tol ij misc 1 - r "ebio_tol" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_bigalk ij misc 1 - r "ebio_bigalk" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_bigene ij misc 1 - r "ebio_bigene" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ch3oh ij misc 1 - r "ebio_ch3oh" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_acet ij misc 1 - r "ebio_acet" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_nh3 ij misc 1 - r "ebio_nh3" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_no2 ij misc 1 - r "ebio_no2" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_c2h5oh ij misc 1 - r "ebio_c2h5oh" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ch3cooh ij misc 1 - r "ebio_ch3cooh" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_mek ij misc 1 - r "ebio_mek" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_c2h6 ij misc 1 - r "ebio_c2h6" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_c2h4 ij misc 1 - r "ebio_c2h4" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_c3h6 ij misc 1 - r "ebio_c3h6" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_c3h8 ij misc 1 - r "ebio_c3h8" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_so2 ij misc 1 - r "ebio_so2" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_dms ij misc 1 - r "ebio_dms" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_myrc ij misc 1 - r "ebio_myrc" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_bpi ij misc 1 - r "ebio_bpi" "Actual biog emiss" "mol km^-2 hr^-1"
# t1_mozcart megan2 bio emission species
state real ebio_hcn ij misc 1 - r "ebio_hcn" "Actual biog emiss" "mol km^-2 hr^-1"
# crimech megan2 bio emission species
state real ebio_c5h8 ij misc 1 - - "ebio_c5h8" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_apinene ij misc 1 - - "ebio_apinene" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_bpinene ij misc 1 - - "ebio_bpinene" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_toluene ij misc 1 - - "ebio_toluene" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ch3cho ij misc 1 - - "ebio_ch3cho" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_ch3co2h ij misc 1 - - "ebio_ch3co2h" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_tbut2ene ij misc 1 - - "ebio_tbut2ene" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_c2h5cho ij misc 1 - - "ebio_c2h5cho" "Actual biog emiss" "mol km^-2 hr^-1"
state real ebio_nc4h10 ij misc 1 - - "ebio_nc4h10" "Actual biog emiss" "mol km^-2 hr^-1"
# Ocean CO2 fluxes for the GHG options
state real ebio_co2oce ij misc 1 - i06rh "ebio_co2oce" "Ocean CO2 fluxes" "mol km^-2 hr^-1"
state real dust_flux ij misc 1 - rdu "dust_flux" "Dust flux from soil" "ug m^-2 s^-1"
state real seas_flux ij misc 1 - rdu "seas_flux" "Sea salt flux" "ug m^-2 s^-1"
# SESQ and MBO fluxes for the new SOA_VBS mechanism
state real sebio_sesq ij misc 1 - i06r "sebio_sesq" "Reference biog emiss" "mol km^-2 hr^-1"
state real ebio_sesq ij misc 1 - r "ebio_sesq" "Actual biog emiss" "mol km^-2 hr^-1"
state real sebio_mbo ij misc 1 - i06r "sebio_mbo" "Reference biog emiss" "mol km^-2 hr^-1"
state real ebio_mbo ij misc 1 - r "ebio_mbo" "Actual biog emiss" "mol km^-2 hr^-1"
# Output of selected biogenic emissions from model MEGAN v2
state real mebio_isop ij misc 1 - - "MEBIO_ISOP" "MEGAN2 isoprene emiss" "mol km^-2 hr^-1"
state real mebio_apin ij misc 1 - - "MEBIO_APIN" "MEGAN2 a-pinene emiss" "mol km^-2 hr^-1"
state real mebio_bpin ij misc 1 - - "MEBIO_BPIN" "MEGAN2 b-pinene emiss" "mol km^-2 hr^-1"
state real mebio_bcar ij misc 1 - - "MEBIO_BCAR" "MEGAN2 b-caryop emiss" "mol km^-2 hr^-2"
state real mebio_acet ij misc 1 - - "MEBIO_ACET" "MEGAN2 acetone emiss" "mol km^-2 hr^-2"
state real mebio_mbo ij misc 1 - - "MEBIO_MBO" "MEGAN2 MBO emiss" "mol km^-2 hr^-2"
state real mebio_no ij misc 1 - - "MEBIO_NO" "MEGAN2 NO emiss" "mol km^-2 hr^-2"
# Input for biogenic emissions model MEGAN v2
state real msebio_isop ij misc 1 - i06r "msebio_isop" "MEGAN2 isoprone emis fac" "mol km^-2 hr^-1"
state real mlai ijm misc 1 Z i06r "mlai" "Monthly Leaf area index for MEGAN2" ""
state real pftp_bt ij misc 1 - i06r "pftp_bt" "MEGAN2 PFT Broadleaf %" "%"
state real pftp_nt ij misc 1 - i06r "pftp_nt" "MEGAN2 PFT Needleleaf %" "%"
state real pftp_sb ij misc 1 - i06r "pftp_sb" "MEGAN2 PFT Shrub and Bush %" "%"
state real pftp_hb ij misc 1 - i06r "pftp_hb" "MEGAN2 PFT Herbs %" "%"
state real mtsa ijm misc 1 Z i06r "mtsa" "Monthly surface air temp" "K"
state real mswdown ijm misc 1 Z i06r "mswdown" "Monthly SWdown" "W/m2"
state real EFmegan ij{nm} misc 1 - - "EFmegan" "MEGAN2 Emis Factor" "ug m^-2 hr^-1"
# Input for GOCART: Background chemistry, erodible surface emissions map
state real backg_oh ikj misc 1 - i08r "BACKG_OH" "Background OH for Aerosol-GOcart option" "volume mixing ratio"
state real backg_h2o2 ikj misc 1 - i08r "BACKG_H2O2" "Background H2O2 for Aerosol-GOcart option" "volume mixing ratio"
state real backg_no3 ikj misc 1 - i08r "BACKG_NO3" "Background NO3 for Aerosol-GOcart option" "volume mixing ratio"
# AFWA GOCART Dust
state real erod_dri ij. misc 1 - i012rdu "EROD_DRI" "frac. of erodible surface in each grid cell (0-1); DRI" "none"
state real lai_vegmask ij misc 0 - i012rh "LAI_VEGMASK" "MODIS LAI vegetation mask for this date; 0=no dust produced (vegetation)" "none"
state real lai_veg_8day i^j dyn_em 1 Z i1 "LAI_VEG_8DAY" "eight-day MODIS LAI veg; 0=no dust produced (vegetation)" "0 - 1 fraction"
state real clayfrac ij misc 1 - i01r "CLAYFRAC" "Clay fraction in each grid cell (0-1)" "none"
state real sandfrac ij misc 1 - i01r "SANDFRAC" "Sand fraction in each grid cell (0-1)" "none"
state real clayfrac_nga ij misc 1 - i01r "CLAYFRAC_NGA" "Clay fraction in each grid cell (0-1)" "none"
state real sandfrac_nga ij misc 1 - i01r "SANDFRAC_NGA" "Sand fraction in each grid cell (0-1)" "none"
state real afwa_dustloft ij misc 1 - h02 "AFWA_DUSTLOFT" "AFWA Diagnostic dust lofting potential (U10-U10t)" "m s^-1"
state real tot_dust ikj misc 1 - h02 "TOT_DUST" "Total dust concentration (0.2-20 um)" "ug m^-3"
state real tot_edust ij misc 1 - h02 "TOT_EDUST" "Total accumulated dust emission (0.2-20 um)" "kg m^-2"
state real vis_dust ikj misc 1 - h02 "VIS_DUST" "Visibility due to dust only" "m"
# These 3D arrays are output from the SOA module for different purposes
state real br_rto ikj misc 1 - r "BRNCH_RTO" "branching ratio to determine NOx condition" "" "ug m^-3"
#
# following used for volcanic eruptions only
#
state real ash_fall ij misc 1 - r "ASH_FALL" "VOLCANIC ASH FALL" "kg/m2"
state real erup_beg ij misc 1 - i{13} "ERUP_BEG" "START TIME OF ERUPTION" "?"
state real erup_end ij misc 1 - i{13} "ERUP_END" "END TIME OF ERUPTION" "?"
#
# following used for output to look at all kinds of stuff
state real dep_vel_o3 ij misc 1 - - "DEP_VEL" "deposition velocities for o3" "?"
state real cu_co_ten ikj misc 1 - - "CU_CO_TEN" "CONV. TRANSPORT FOR CO" "?"
# Tendency diagnostics for chemistry (chemdiag)
#
# Currently index references to chem array is done within the code and requires
# code-level modification to add or remove diagnostics. Rearranging is OK, but
# order among conv_ct,chem_ct,vmix_ct and advh_ct,advz_ct must be consistent within
# the two groups. The two files need to be modified are:
# Search for "modify tendncy list here"
#-------------------------------------------------------------------------------
state real - ikjf conv_ct 1 - - -
state real conv_co ikjf conv_ct 1 - r "conv_co" "ACCUMULATED CONV TRANSPORT FOR CO" "ppmv"
state real conv_o3 ikjf conv_ct 1 - r "conv_o3" "ACCUMULATED CONV TRANSPORT FOR O3" "ppmv"
state real conv_no ikjf conv_ct 1 - r "conv_no" "ACCUMULATED CONV TRANSPORT FOR NO" "ppmv"
state real conv_no2 ikjf conv_ct 1 - r "conv_no2" "ACCUMULATED CONV TRANSPORT FOR NO2" "ppmv"
state real conv_hno3 ikjf conv_ct 1 - r "conv_hno3" "ACCUMULATED CONV TRANSPORT FOR HNO3" "ppmv"
state real conv_iso ikjf conv_ct 1 - r "conv_iso" "ACCUMULATED CONV TRANSPORT FOR ISO" "ppmv"
state real conv_ho ikjf conv_ct 1 - r "conv_ho" "ACCUMULATED CONV TRANSPORT FOR HO" "ppmv"
state real conv_ho2 ikjf conv_ct 1 - r "conv_ho2" "ACCUMULATED CONV TRANSPORT FOR HO2" "ppmv"
state real - ikjf chem_ct 1 - - -
state real chem_co ikjf chem_ct 1 - r "chem_co" "ACCUMULATED CHEM TENDENCY FOR CO" "ppmv"
state real chem_o3 ikjf chem_ct 1 - r "chem_o3" "ACCUMULATED CHEM TENDENCY FOR O3" "ppmv"
state real chem_no ikjf chem_ct 1 - r "chem_no" "ACCUMULATED CHEM TENDENCY FOR NO" "ppmv"
state real chem_no2 ikjf chem_ct 1 - r "chem_no2" "ACCUMULATED CHEM TENDENCY FOR NO2" "ppmv"
state real chem_hno3 ikjf chem_ct 1 - r "chem_hno3" "ACCUMULATED CHEM TENDENCY FOR HNO3" "ppmv"
state real chem_iso ikjf chem_ct 1 - r "chem_iso" "ACCUMULATED CHEM TENDENCY FOR ISO" "ppmv"
state real chem_ho ikjf chem_ct 1 - r "chem_ho" "ACCUMULATED CHEM TENDENCY FOR HO" "ppmv"
state real chem_ho2 ikjf chem_ct 1 - r "chem_ho2" "ACCUMULATED CHEM TENDENCY FOR HO2" "ppmv"
state real - ikjf vmix_ct 1 - - -
state real vmix_co ikjf vmix_ct 1 - r "vmix_co" "ACCUMULATED TENDENCY FOR CO BY VERTICAL MIXING" "ppmv"
state real vmix_o3 ikjf vmix_ct 1 - r "vmix_o3" "ACCUMULATED TENDENCY FOR O3 BY VERTICAL MIXING" "ppmv"
state real vmix_no ikjf vmix_ct 1 - r "vmix_no" "ACCUMULATED TENDENCY FOR NO BY VERTICAL MIXING" "ppmv"
state real vmix_no2 ikjf vmix_ct 1 - r "vmix_no2" "ACCUMULATED TENDENCY FOR NO2 BY VERTICAL MIXING" "ppmv"
state real vmix_hno3 ikjf vmix_ct 1 - r "vmix_hno3" "ACCUMULATED TENDENCY FOR HNO3 BY VERTICAL MIXING" "ppmv"
state real vmix_iso ikjf vmix_ct 1 - r "vmix_iso" "ACCUMULATED TENDENCY FOR ISO BY VERTICAL MIXING" "ppmv"
state real vmix_ho ikjf vmix_ct 1 - r "vmix_ho" "ACCUMULATED TENDENCY FOR HO BY VERTICAL MIXING" "ppmv"
state real vmix_ho2 ikjf vmix_ct 1 - r "vmix_ho2" "ACCUMULATED TENDENCY FOR HO2 BY VERTICAL MIXING" "ppmv"
state real - ikjf advh_ct 1 - - -
state real advh_co ikjf advh_ct 1 - r "advh_co" "ACCUMULATED TENDENCY FOR CO BY HORIZONTAL ADVECTION" "ppmv"
state real advh_o3 ikjf advh_ct 1 - r "advh_o3" "ACCUMULATED TENDENCY FOR O3 BY HORIZONTAL ADVECTION" "ppmv"
state real advh_no ikjf advh_ct 1 - r "advh_no" "ACCUMULATED TENDENCY FOR NO BY HORIZONTAL ADVECTION" "ppmv"
state real advh_no2 ikjf advh_ct 1 - r "advh_no2" "ACCUMULATED TENDENCY FOR NO2 BY HORIZONTAL ADVECTION" "ppmv"
state real advh_hno3 ikjf advh_ct 1 - r "advh_hno3" "ACCUMULATED TENDENCY FOR HNO3 BY HORIZONTAL ADVECTION" "ppmv"
state real advh_iso ikjf advh_ct 1 - r "advh_iso" "ACCUMULATED TENDENCY FOR ISO BY HORIZONTAL ADVECTION" "ppmv"
state real advh_ho ikjf advh_ct 1 - r "advh_ho" "ACCUMULATED TENDENCY FOR HO BY HORIZONTAL ADVECTION" "ppmv"
state real advh_ho2 ikjf advh_ct 1 - r "advh_ho2" "ACCUMULATED TENDENCY FOR HO2 BY HORIZONTAL ADVECTION" "ppmv"
state real - ikjf advz_ct 1 - - -
state real advz_co ikjf advz_ct 1 - r "advz_co" "ACCUMULATED TENDENCY FOR CO BY VERTICAL ADVECTION" "ppmv"
state real advz_o3 ikjf advz_ct 1 - r "advz_o3" "ACCUMULATED TENDENCY FOR O3 BY VERTICAL ADVECTION" "ppmv"
state real advz_no ikjf advz_ct 1 - r "advz_no" "ACCUMULATED TENDENCY FOR NO BY VERTICAL ADVECTION" "ppmv"
state real advz_no2 ikjf advz_ct 1 - r "advz_no2" "ACCUMULATED TENDENCY FOR NO2 BY VERTICAL ADVECTION" "ppmv"
state real advz_hno3 ikjf advz_ct 1 - r "advz_hno3" "ACCUMULATED TENDENCY FOR HNO3 BY VERTICAL ADVECTION" "ppmv"
state real advz_iso ikjf advz_ct 1 - r "advz_iso" "ACCUMULATED TENDENCY FOR ISO BY VERTICAL ADVECTION" "ppmv"
state real advz_ho ikjf advz_ct 1 - r "advz_ho" "ACCUMULATED TENDENCY FOR HO BY VERTICAL ADVECTION" "ppmv"
state real advz_ho2 ikjf advz_ct 1 - r "advz_ho2" "ACCUMULATED TENDENCY FOR HO2 BY VERTICAL ADVECTION" "ppmv"
# deposition velocities for diagnostic package, feel free to add if you like!
#
state real - i%jf dvel - - - - "deposition velocities" ""
state real dvel_o3 i%jf dvel 1 - rh "dvel_o3" "O3 deposition velocity " "cm/s"
state real dvel_no i%jf dvel 1 - - "dvel_no" "NO deposition velocity " "cm/s"
state real dvel_no2 i%jf dvel 1 - - "dvel_no2" "NO2 deposition velocity " "cm/s"
state real dvel_nh3 i%jf dvel 1 - - "dvel_nh3" "NH3 deposition velocity " "cm/s"
state real dvel_hno3 i%jf dvel 1 - - "dvel_hno3" "HNO3 deposition velocity " "cm/s"
state real dvel_hno4 i%jf dvel 1 - - "dvel_hno4" "HNO4 deposition velocity " "cm/s"
state real dvel_h2o2 i%jf dvel 1 - - "dvel_h2o2" "H2O2 deposition velocity " "cm/s"
state real dvel_co i%jf dvel 1 - - "dvel_co" "CO deposition velocity " "cm/s"
state real dvel_ch3ooh i%jf dvel 1 - - "dvel_ch3ooh" "CH3OOH deposition velocity " "cm/s"
state real dvel_hcho i%jf dvel 1 - - "dvel_hcho" "HCHO deposition velocity " "cm/s"
state real dvel_ch3oh i%jf dvel 1 - - "dvel_ch3oh" "CH3OH deposition velocity " "cm/s"
state real dvel_eo2 i%jf dvel 1 - - "dvel_eo2" "EO2 deposition velocity " "cm/s"
state real dvel_ald i%jf dvel 1 - - "dvel_ald" "ALD deposition velocity " "cm/s"
state real dvel_ch3cooh i%jf dvel 1 - - "dvel_ch3cooh" "CH3COOH deposition velocity " "cm/s"
state real dvel_acet i%jf dvel 1 - - "dvel_acet" "ACET deposition velocity " "cm/s"
state real dvel_mgly i%jf dvel 1 - - "dvel_mgly" "MGLY deposition velocity " "cm/s"
state real dvel_gly i%jf dvel 1 - - "dvel_gly" "GLY deposition velocity " "cm/s"
state real dvel_paa i%jf dvel 1 - - "dvel_paa" "PAA deposition velocity " "cm/s"
state real dvel_pooh i%jf dvel 1 - - "dvel_pooh" "POOH deposition velocity " "cm/s"
state real dvel_pan i%jf dvel 1 - - "dvel_pan" "PAN deposition velocity " "cm/s"
state real dvel_mpan i%jf dvel 1 - - "dvel_mpan" "MPAN deposition velocity " "cm/s"
state real dvel_mco3 i%jf dvel 1 - - "dvel_mco3" "MCO3 deposition velocity " "cm/s"
state real dvel_mvkooh i%jf dvel 1 - - "dvel_mvkooh" "MVKOOH deposition velocity " "cm/s"
state real dvel_c2h5oh i%jf dvel 1 - - "dvel_c2h5oh" "C2H5OH deposition velocity " "cm/s"
state real dvel_etooh i%jf dvel 1 - - "dvel_etooh" "ETOOH deposition velocity " "cm/s"
state real dvel_prooh i%jf dvel 1 - - "dvel_prooh" "PROOH deposition velocity " "cm/s"
state real dvel_acetp i%jf dvel 1 - - "dvel_acetp" "ACETP deposition velocity " "cm/s"
state real dvel_onit i%jf dvel 1 - - "dvel_onit" "ONIT deposition velocity " "cm/s"
state real dvel_onitr i%jf dvel 1 - - "dvel_onitr" "ONITR deposition velocity " "cm/s"
state real dvel_isooh i%jf dvel 1 - - "dvel_isooh" "ISOOH deposition velocity " "cm/s"
state real dvel_acetol i%jf dvel 1 - - "dvel_acetol" "ACETOL deposition velocity " "cm/s"
state real dvel_glyald i%jf dvel 1 - - "dvel_glyald" "GLYALD deposition velocity " "cm/s"
state real dvel_hydrald i%jf dvel 1 - - "dvel_hydrald" "HYDRALD deposition velocity " "cm/s"
state real dvel_alkooh i%jf dvel 1 - - "dvel_alkooh" "ALKOOH deposition velocity " "cm/s"
state real dvel_mekooh i%jf dvel 1 - - "dvel_mekooh" "MEKOOH deposition velocity " "cm/s"
state real dvel_tolooh i%jf dvel 1 - - "dvel_tolooh" "TOLOOH deposition velocity " "cm/s"
state real dvel_xooh i%jf dvel 1 - - "dvel_xooh" "XOOH deposition velocity " "cm/s"
state real dvel_so2 i%jf dvel 1 - - "dvel_so2" "SO2 deposition velocity " "cm/s"
state real dvel_so4 i%jf dvel 1 - - "dvel_so4" "SO4 deposition velocity " "cm/s"
state real dvel_terpooh i%jf dvel 1 - - "dvel_terpooh" "TERPOOH deposition velocity " "cm/s"
state real dvel_cvasoaX i%jf dvel 1 - - "dvel_cvasoaX" "CVASOAX deposition velocity " "cm/s"
state real dvel_cvasoa1 i%jf dvel 1 - - "dvel_cvasoa1" "CVASOA1 deposition velocity " "cm/s"
state real dvel_cvasoa2 i%jf dvel 1 - - "dvel_cvasoa2" "CVASOA2 deposition velocity " "cm/s"
state real dvel_cvasoa3 i%jf dvel 1 - - "dvel_cvasoa3" "CVASOA3 deposition velocity " "cm/s"
state real dvel_cvasoa4 i%jf dvel 1 - - "dvel_cvasoa4" "CVASOA4 deposition velocity " "cm/s"
state real dvel_cvbsoaX i%jf dvel 1 - - "dvel_cvbsoaX" "CVBSOAX deposition velocity " "cm/s"
state real dvel_cvbsoa1 i%jf dvel 1 - - "dvel_cvbsoa1" "CVBSOA1 deposition velocity " "cm/s"
state real dvel_cvbsoa2 i%jf dvel 1 - - "dvel_cvbsoa2" "CVBSOA2 deposition velocity " "cm/s"
state real dvel_cvbsoa3 i%jf dvel 1 - - "dvel_cvbsoa3" "CVBSOA3 deposition velocity " "cm/s"
state real dvel_cvbsoa4 i%jf dvel 1 - - "dvel_cvbsoa4" "CVBSOA4 deposition velocity " "cm/s"
# accumulated dry deposition
state real ddmass_o3 i%jf dvel 1 - rdu "ddmass_o3" "O3 dry deposition, accumulated " "mol/m2"
state real ddmass_no i%jf dvel 1 - rdu "ddmass_no" "NO dry deposition, accumulated " "mol/m2"
state real ddmass_no2 i%jf dvel 1 - rdu "ddmass_no2" "NO2 dry deposition, accumulated" "mol/m2"
state real ddmass_nh3 i%jf dvel 1 - rdu "ddmass_nh3" "NH3 dry deposition, accumulated" "mol/m2"
state real ddmass_hno3 i%jf dvel 1 - rdu "ddmass_hno3" "HNO3 dry deposition, accumulated" "mol/m2"
state real ddmass_hno4 i%jf dvel 1 - rdu "ddmass_hno4" "HNO4 dry deposition, accumulated" "mol/m2"
state real ddmass_h2o2 i%jf dvel 1 - rdu "ddmass_h2o2" "H2O2 dry deposition, accumulated" "mol/m2"
state real ddmass_co i%jf dvel 1 - rdu "ddmass_co" "CO dry deposition, accumulated " "mol/m2"
state real ddmass_ch3ooh i%jf dvel 1 - rdu "ddmass_ch3ooh" "CH3OOH dry deposition, accumulated " "mol/m2"
state real ddmass_hcho i%jf dvel 1 - rdu "ddmass_hcho" "HCHO dry deposition, accumulated" "mol/m2"
state real ddmass_ch3oh i%jf dvel 1 - rdu "ddmass_ch3oh" "CH3OH dry deposition, accumulated " "mol/m2"
state real ddmass_eo2 i%jf dvel 1 - rdu "ddmass_eo2" "EO2 dry deposition, accumulated" "mol/m2"
state real ddmass_ald i%jf dvel 1 - rdu "ddmass_ald" "ALD dry deposition, accumulated" "mol/m2"
state real ddmass_ch3cooh i%jf dvel 1 - rdu "ddmass_ch3cooh" "CH3COOH dry deposition, accumulated " "mol/m2"
state real ddmass_acet i%jf dvel 1 - rdu "ddmass_acet" "ACET dry deposition, accumulated" "mol/m2"
state real ddmass_mgly i%jf dvel 1 - rdu "ddmass_mgly" "MGLY dry deposition, accumulated" "mol/m2"
state real ddmass_gly i%jf dvel 1 - rdu "ddmass_gly" "GLY dry deposition, accumulated" "mol/m2"
state real ddmass_paa i%jf dvel 1 - rdu "ddmass_paa" "PAA dry deposition, accumulated" "mol/m2"
state real ddmass_pooh i%jf dvel 1 - rdu "ddmass_pooh" "POOH dry deposition, accumulated" "mol/m2"
state real ddmass_pan i%jf dvel 1 - rdu "ddmass_pan" "PAN dry deposition, accumulated" "mol/m2"
state real ddmass_mpan i%jf dvel 1 - rdu "ddmass_mpan" "MPAN dry deposition, accumulated" "mol/m2"
state real ddmass_mco3 i%jf dvel 1 - rdu "ddmass_mco3" "MCO3 dry deposition, accumulated" "mol/m2"
state real ddmass_mvkooh i%jf dvel 1 - rdu "ddmass_mvkooh" "MVKOOH dry deposition, accumulated " "mol/m2"
state real ddmass_c2h5oh i%jf dvel 1 - rdu "ddmass_c2h5oh" "C2H5OH dry deposition, accumulated " "mol/m2"
state real ddmass_etooh i%jf dvel 1 - rdu "ddmass_etooh" "ETOOH dry deposition, accumulated " "mol/m2"
state real ddmass_prooh i%jf dvel 1 - rdu "ddmass_prooh" "PROOH dry deposition, accumulated " "mol/m2"
state real ddmass_acetp i%jf dvel 1 - rdu "ddmass_acetp" "ACETP dry deposition, accumulated " "mol/m2"
state real ddmass_onit i%jf dvel 1 - rdu "ddmass_onit" "ONIT dry deposition, accumulated" "mol/m2"
state real ddmass_onitr i%jf dvel 1 - rdu "ddmass_onitr" "ONITR dry deposition, accumulated " "mol/m2"
state real ddmass_isooh i%jf dvel 1 - rdu "ddmass_isooh" "ISOOH dry deposition, accumulated " "mol/m2"
state real ddmass_acetol i%jf dvel 1 - rdu "ddmass_acetol" "ACETOL dry deposition, accumulated " "mol/m2"
state real ddmass_glyald i%jf dvel 1 - rdu "ddmass_glyald" "GLYALD dry deposition, accumulated " "mol/m2"
state real ddmass_hydrald i%jf dvel 1 - rdu "ddmass_hydrald" "HYDRALD dry deposition, accumulated " "mol/m2"
state real ddmass_alkooh i%jf dvel 1 - rdu "ddmass_alkooh" "ALKOOH dry deposition, accumulated " "mol/m2"
state real ddmass_mekooh i%jf dvel 1 - rdu "ddmass_mekooh" "MEKOOH dry deposition, accumulated " "mol/m2"
state real ddmass_tolooh i%jf dvel 1 - rdu "ddmass_tolooh" "TOLOOH dry deposition, accumulated " "mol/m2"
state real ddmass_xooh i%jf dvel 1 - rdu "ddmass_xooh" "XOOH dry deposition, accumulated" "mol/m2"
state real ddmass_so2 i%jf dvel 1 - rdu "ddmass_so2" "SO2 dry deposition, accumulated" "mol/m2"
state real ddmass_so4 i%jf dvel 1 - rdu "ddmass_so4" "SO4 dry deposition, accumulated" "mol/m2"
state real ddmass_terpooh i%jf dvel 1 - rdu "ddmass_terpooh" "TERPOOH dry deposition, accumulated" "mol/m2"
state real ddmass_cvasoaX i%jf dvel 1 - rdu "ddmass_cvasoaX" "CVASOAX dry deposition, accumulated" "mol/m2"
state real ddmass_cvasoa1 i%jf dvel 1 - rdu "ddmass_cvasoa1" "CVASOA1 dry deposition, accumulated" "mol/m2"
state real ddmass_cvasoa2 i%jf dvel 1 - rdu "ddmass_cvasoa2" "CVASOA2 dry deposition, accumulated" "mol/m2"
state real ddmass_cvasoa3 i%jf dvel 1 - rdu "ddmass_cvasoa3" "CVASOA3 dry deposition, accumulated" "mol/m2"
state real ddmass_cvasoa4 i%jf dvel 1 - rdu "ddmass_cvasoa4" "CVASOA4 dry deposition, accumulated" "mol/m2"
state real ddmass_cvbsoaX i%jf dvel 1 - rdu "ddmass_cvbsoaX" "CVBSOAX dry deposition, accumulated" "mol/m2"
state real ddmass_cvbsoa1 i%jf dvel 1 - rdu "ddmass_cvbsoa1" "CVBSOA1 dry deposition, accumulated" "mol/m2"
state real ddmass_cvbsoa2 i%jf dvel 1 - rdu "ddmass_cvbsoa2" "CVBSOA2 dry deposition, accumulated" "mol/m2"
state real ddmass_cvbsoa3 i%jf dvel 1 - rdu "ddmass_cvbsoa3" "CVBSOA3 dry deposition, accumulated" "mol/m2"
state real ddmass_cvbsoa4 i%jf dvel 1 - rdu "ddmass_cvbsoa4" "CVBSOA4 dry deposition, accumulated" "mol/m2"
#CB05/VBS/SORG
state real ddmass_so4aj i%jf dvel 1 - rhdu "ddmass_so4aj" "so4aj dry deposition, accumulated" "ug/m2"
state real ddmass_so4ai i%jf dvel 1 - rhdu "ddmass_so4ai" "so4ai dry deposition, accumulated" "ug/m2"
state real ddmass_no3aj i%jf dvel 1 - rhdu "ddmass_no3aj" "no3aj dry deposition, accumulated" "ug/m2"
state real ddmass_no3ai i%jf dvel 1 - rhdu "ddmass_no3ai" "no3ai dry deposition, accumulated" "ug/m2"
state real ddmass_nh4aj i%jf dvel 1 - rhdu "ddmass_nh4aj" "nh4aj dry deposition, accumulated" "ug/m2"
state real ddmass_nh4ai i%jf dvel 1 - rhdu "ddmass_nh4ai" "nh4ai dry deposition, accumulated" "ug/m2"
state real ddmass_so4_a01 i%jf dvel 1 - rdu "ddmass_so4_a01" "so4_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_a01 i%jf dvel 1 - rdu "ddmass_no3_a01" "no3_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_a01 i%jf dvel 1 - rdu "ddmass_cl_a01" "cl_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_a01 i%jf dvel 1 - rdu "ddmass_nh4_a01" "nh4_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_na_a01 i%jf dvel 1 - rdu "ddmass_na_a01" "na_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_a01 i%jf dvel 1 - rdu "ddmass_oin_a01" "oin_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_a01 i%jf dvel 1 - rdu "ddmass_oc_a01" "oc_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_a01 i%jf dvel 1 - rdu "ddmass_bc_a01" "bc_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_a01 i%jf dvel 1 - rdu "ddmass_smpa_a01" "smpa_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_a01 i%jf dvel 1 - rdu "ddmass_smpbb_a01" "smpbb_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_a01 i%jf dvel 1 - rdu "ddmass_glysoa_a01" "glysoa_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_a01 i%jf dvel 1 - rdu "ddmass_biog1_c_a01" "biog1_c_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_a01 i%jf dvel 1 - rdu "ddmass_biog1_o_a01" "biog1_o_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_a01 i%jf dvel 1 - rdu "ddmass_asoaX_a01" "asoaX_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_a01 i%jf dvel 1 - rdu "ddmass_asoa1_a01" "asoa1_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_a01 i%jf dvel 1 - rdu "ddmass_asoa2_a01" "asoa2_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_a01 i%jf dvel 1 - rdu "ddmass_asoa3_a01" "asoa3_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_a01 i%jf dvel 1 - rdu "ddmass_asoa4_a01" "asoa4_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_a01 i%jf dvel 1 - rdu "ddmass_bsoaX_a01" "bsoaX_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_a01 i%jf dvel 1 - rdu "ddmass_bsoa1_a01" "bsoa1_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_a01 i%jf dvel 1 - rdu "ddmass_bsoa2_a01" "bsoa2_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_a01 i%jf dvel 1 - rdu "ddmass_bsoa3_a01" "bsoa3_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_a01 i%jf dvel 1 - rdu "ddmass_bsoa4_a01" "bsoa4_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_a02 i%jf dvel 1 - rdu "ddmass_so4_a02" "so4_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_a02 i%jf dvel 1 - rdu "ddmass_no3_a02" "no3_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_a02 i%jf dvel 1 - rdu "ddmass_cl_a02" "cl_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_a02 i%jf dvel 1 - rdu "ddmass_nh4_a02" "nh4_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_na_a02 i%jf dvel 1 - rdu "ddmass_na_a02" "na_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_a02 i%jf dvel 1 - rdu "ddmass_oin_a02" "oin_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_a02 i%jf dvel 1 - rdu "ddmass_oc_a02" "oc_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_a02 i%jf dvel 1 - rdu "ddmass_bc_a02" "bc_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_a02 i%jf dvel 1 - rdu "ddmass_smpa_a02" "smpa_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_a02 i%jf dvel 1 - rdu "ddmass_smpbb_a02" "smpbb_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_a02 i%jf dvel 1 - rdu "ddmass_glysoa_a02" "glysoa_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_a02 i%jf dvel 1 - rdu "ddmass_biog1_c_a02" "biog1_c_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_a02 i%jf dvel 1 - rdu "ddmass_biog1_o_a02" "biog1_o_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_a02 i%jf dvel 1 - rdu "ddmass_asoaX_a02" "asoaX_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_a02 i%jf dvel 1 - rdu "ddmass_asoa1_a02" "asoa1_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_a02 i%jf dvel 1 - rdu "ddmass_asoa2_a02" "asoa2_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_a02 i%jf dvel 1 - rdu "ddmass_asoa3_a02" "asoa3_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_a02 i%jf dvel 1 - rdu "ddmass_asoa4_a02" "asoa4_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_a02 i%jf dvel 1 - rdu "ddmass_bsoaX_a02" "bsoaX_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_a02 i%jf dvel 1 - rdu "ddmass_bsoa1_a02" "bsoa1_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_a02 i%jf dvel 1 - rdu "ddmass_bsoa2_a02" "bsoa2_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_a02 i%jf dvel 1 - rdu "ddmass_bsoa3_a02" "bsoa3_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_a02 i%jf dvel 1 - rdu "ddmass_bsoa4_a02" "bsoa4_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_a03 i%jf dvel 1 - rdu "ddmass_so4_a03" "so4_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_a03 i%jf dvel 1 - rdu "ddmass_no3_a03" "no3_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_a03 i%jf dvel 1 - rdu "ddmass_cl_a03" "cl_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_a03 i%jf dvel 1 - rdu "ddmass_nh4_a03" "nh4_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_na_a03 i%jf dvel 1 - rdu "ddmass_na_a03" "na_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_a03 i%jf dvel 1 - rdu "ddmass_oin_a03" "oin_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_a03 i%jf dvel 1 - rdu "ddmass_oc_a03" "oc_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_a03 i%jf dvel 1 - rdu "ddmass_bc_a03" "bc_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_a03 i%jf dvel 1 - rdu "ddmass_smpa_a03" "smpa_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_a03 i%jf dvel 1 - rdu "ddmass_smpbb_a03" "smpbb_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_a03 i%jf dvel 1 - rdu "ddmass_glysoa_a03" "glysoa_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_a03 i%jf dvel 1 - rdu "ddmass_biog1_c_a03" "biog1_c_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_a03 i%jf dvel 1 - rdu "ddmass_biog1_o_a03" "biog1_o_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_a03 i%jf dvel 1 - rdu "ddmass_asoaX_a03" "asoaX_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_a03 i%jf dvel 1 - rdu "ddmass_asoa1_a03" "asoa1_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_a03 i%jf dvel 1 - rdu "ddmass_asoa2_a03" "asoa2_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_a03 i%jf dvel 1 - rdu "ddmass_asoa3_a03" "asoa3_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_a03 i%jf dvel 1 - rdu "ddmass_asoa4_a03" "asoa4_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_a03 i%jf dvel 1 - rdu "ddmass_bsoaX_a03" "bsoaX_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_a03 i%jf dvel 1 - rdu "ddmass_bsoa1_a03" "bsoa1_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_a03 i%jf dvel 1 - rdu "ddmass_bsoa2_a03" "bsoa2_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_a03 i%jf dvel 1 - rdu "ddmass_bsoa3_a03" "bsoa3_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_a03 i%jf dvel 1 - rdu "ddmass_bsoa4_a03" "bsoa4_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_a04 i%jf dvel 1 - rdu "ddmass_so4_a04" "so4_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_a04 i%jf dvel 1 - rdu "ddmass_no3_a04" "no3_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_a04 i%jf dvel 1 - rdu "ddmass_cl_a04" "cl_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_a04 i%jf dvel 1 - rdu "ddmass_nh4_a04" "nh4_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_na_a04 i%jf dvel 1 - rdu "ddmass_na_a04" "na_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_a04 i%jf dvel 1 - rdu "ddmass_oin_a04" "oin_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_a04 i%jf dvel 1 - rdu "ddmass_oc_a04" "oc_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_a04 i%jf dvel 1 - rdu "ddmass_bc_a04" "bc_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_a04 i%jf dvel 1 - rdu "ddmass_smpa_a04" "smpa_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_a04 i%jf dvel 1 - rdu "ddmass_smpbb_a04" "smpbb_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_a04 i%jf dvel 1 - rdu "ddmass_glysoa_a04" "glysoa_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_a04 i%jf dvel 1 - rdu "ddmass_biog1_c_a04" "biog1_c_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_a04 i%jf dvel 1 - rdu "ddmass_biog1_o_a04" "biog1_o_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_a04 i%jf dvel 1 - rdu "ddmass_asoaX_a04" "asoaX_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_a04 i%jf dvel 1 - rdu "ddmass_asoa1_a04" "asoa1_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_a04 i%jf dvel 1 - rdu "ddmass_asoa2_a04" "asoa2_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_a04 i%jf dvel 1 - rdu "ddmass_asoa3_a04" "asoa3_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_a04 i%jf dvel 1 - rdu "ddmass_asoa4_a04" "asoa4_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_a04 i%jf dvel 1 - rdu "ddmass_bsoaX_a04" "bsoaX_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_a04 i%jf dvel 1 - rdu "ddmass_bsoa1_a04" "bsoa1_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_a04 i%jf dvel 1 - rdu "ddmass_bsoa2_a04" "bsoa2_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_a04 i%jf dvel 1 - rdu "ddmass_bsoa3_a04" "bsoa3_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_a04 i%jf dvel 1 - rdu "ddmass_bsoa4_a04" "bsoa4_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_a01 i%jf dvel 1 - rdu "ddmass_ca_a01" "ca_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_a02 i%jf dvel 1 - rdu "ddmass_ca_a02" "ca_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_a03 i%jf dvel 1 - rdu "ddmass_ca_a03" "ca_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_a04 i%jf dvel 1 - rdu "ddmass_ca_a04" "ca_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_a01 i%jf dvel 1 - rdu "ddmass_co3_a01" "co3_a01 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_a02 i%jf dvel 1 - rdu "ddmass_co3_a02" "co3_a02 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_a03 i%jf dvel 1 - rdu "ddmass_co3_a03" "co3_a03 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_a04 i%jf dvel 1 - rdu "ddmass_co3_a04" "co3_a04 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_cw01 i%jf dvel 1 - rdu "ddmass_so4_cw01" "so4_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_cw01 i%jf dvel 1 - rdu "ddmass_no3_cw01" "no3_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_cw01 i%jf dvel 1 - rdu "ddmass_cl_cw01" "cl_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_cw01 i%jf dvel 1 - rdu "ddmass_nh4_cw01" "nh4_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_na_cw01 i%jf dvel 1 - rdu "ddmass_na_cw01" "na_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_cw01 i%jf dvel 1 - rdu "ddmass_oin_cw01" "oin_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_cw01 i%jf dvel 1 - rdu "ddmass_oc_cw01" "oc_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_cw01 i%jf dvel 1 - rdu "ddmass_bc_cw01" "bc_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_cw01 i%jf dvel 1 - rdu "ddmass_smpa_cw01" "smpa_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_cw01 i%jf dvel 1 - rdu "ddmass_smpbb_cw01" "smpbb_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_cw01 i%jf dvel 1 - rdu "ddmass_glysoa_cw01" "glysoa_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_cw01 i%jf dvel 1 - rdu "ddmass_biog1_c_cw01" "biog1_c_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_cw01 i%jf dvel 1 - rdu "ddmass_biog1_o_cw01" "biog1_o_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_cw01 i%jf dvel 1 - rdu "ddmass_asoaX_cw01" "asoaX_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_cw01 i%jf dvel 1 - rdu "ddmass_asoa1_cw01" "asoa1_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_cw01 i%jf dvel 1 - rdu "ddmass_asoa2_cw01" "asoa2_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_cw01 i%jf dvel 1 - rdu "ddmass_asoa3_cw01" "asoa3_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_cw01 i%jf dvel 1 - rdu "ddmass_asoa4_cw01" "asoa4_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_cw01 i%jf dvel 1 - rdu "ddmass_bsoaX_cw01" "bsoaX_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_cw01 i%jf dvel 1 - rdu "ddmass_bsoa1_cw01" "bsoa1_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_cw01 i%jf dvel 1 - rdu "ddmass_bsoa2_cw01" "bsoa2_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_cw01 i%jf dvel 1 - rdu "ddmass_bsoa3_cw01" "bsoa3_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_cw01 i%jf dvel 1 - rdu "ddmass_bsoa4_cw01" "bsoa4_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_cw02 i%jf dvel 1 - rdu "ddmass_so4_cw02" "so4_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_cw02 i%jf dvel 1 - rdu "ddmass_no3_cw02" "no3_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_cw02 i%jf dvel 1 - rdu "ddmass_cl_cw02" "cl_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_cw02 i%jf dvel 1 - rdu "ddmass_nh4_cw02" "nh4_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_na_cw02 i%jf dvel 1 - rdu "ddmass_na_cw02" "na_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_cw02 i%jf dvel 1 - rdu "ddmass_oin_cw02" "oin_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_cw02 i%jf dvel 1 - rdu "ddmass_oc_cw02" "oc_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_cw02 i%jf dvel 1 - rdu "ddmass_bc_cw02" "bc_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_cw02 i%jf dvel 1 - rdu "ddmass_smpa_cw02" "smpa_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_cw02 i%jf dvel 1 - rdu "ddmass_smpbb_cw02" "smpbb_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_cw02 i%jf dvel 1 - rdu "ddmass_glysoa_cw02" "glysoa_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_cw02 i%jf dvel 1 - rdu "ddmass_biog1_c_cw02" "biog1_c_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_cw02 i%jf dvel 1 - rdu "ddmass_biog1_o_cw02" "biog1_o_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_cw02 i%jf dvel 1 - rdu "ddmass_asoaX_cw02" "asoaX_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_cw02 i%jf dvel 1 - rdu "ddmass_asoa1_cw02" "asoa1_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_cw02 i%jf dvel 1 - rdu "ddmass_asoa2_cw02" "asoa2_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_cw02 i%jf dvel 1 - rdu "ddmass_asoa3_cw02" "asoa3_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_cw02 i%jf dvel 1 - rdu "ddmass_asoa4_cw02" "asoa4_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_cw02 i%jf dvel 1 - rdu "ddmass_bsoaX_cw02" "bsoaX_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_cw02 i%jf dvel 1 - rdu "ddmass_bsoa1_cw02" "bsoa1_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_cw02 i%jf dvel 1 - rdu "ddmass_bsoa2_cw02" "bsoa2_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_cw02 i%jf dvel 1 - rdu "ddmass_bsoa3_cw02" "bsoa3_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_cw02 i%jf dvel 1 - rdu "ddmass_bsoa4_cw02" "bsoa4_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_cw03 i%jf dvel 1 - rdu "ddmass_so4_cw03" "so4_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_cw03 i%jf dvel 1 - rdu "ddmass_no3_cw03" "no3_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_cw03 i%jf dvel 1 - rdu "ddmass_cl_cw03" "cl_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_cw03 i%jf dvel 1 - rdu "ddmass_nh4_cw03" "nh4_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_na_cw03 i%jf dvel 1 - rdu "ddmass_na_cw03" "na_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_cw03 i%jf dvel 1 - rdu "ddmass_oin_cw03" "oin_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_cw03 i%jf dvel 1 - rdu "ddmass_oc_cw03" "oc_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_cw03 i%jf dvel 1 - rdu "ddmass_bc_cw03" "bc_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_cw03 i%jf dvel 1 - rdu "ddmass_smpa_cw03" "smpa_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_cw03 i%jf dvel 1 - rdu "ddmass_smpbb_cw03" "smpbb_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_cw03 i%jf dvel 1 - rdu "ddmass_glysoa_cw03" "glysoa_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_cw03 i%jf dvel 1 - rdu "ddmass_biog1_c_cw03" "biog1_c_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_cw03 i%jf dvel 1 - rdu "ddmass_biog1_o_cw03" "biog1_o_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_cw03 i%jf dvel 1 - rdu "ddmass_asoaX_cw03" "asoaX_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_cw03 i%jf dvel 1 - rdu "ddmass_asoa1_cw03" "asoa1_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_cw03 i%jf dvel 1 - rdu "ddmass_asoa2_cw03" "asoa2_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_cw03 i%jf dvel 1 - rdu "ddmass_asoa3_cw03" "asoa3_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_cw03 i%jf dvel 1 - rdu "ddmass_asoa4_cw03" "asoa4_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_cw03 i%jf dvel 1 - rdu "ddmass_bsoaX_cw03" "bsoaX_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_cw03 i%jf dvel 1 - rdu "ddmass_bsoa1_cw03" "bsoa1_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_cw03 i%jf dvel 1 - rdu "ddmass_bsoa2_cw03" "bsoa2_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_cw03 i%jf dvel 1 - rdu "ddmass_bsoa3_cw03" "bsoa3_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_cw03 i%jf dvel 1 - rdu "ddmass_bsoa4_cw03" "bsoa4_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_so4_cw04 i%jf dvel 1 - rdu "ddmass_so4_cw04" "so4_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_no3_cw04 i%jf dvel 1 - rdu "ddmass_no3_cw04" "no3_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_cl_cw04 i%jf dvel 1 - rdu "ddmass_cl_cw04" "cl_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_nh4_cw04 i%jf dvel 1 - rdu "ddmass_nh4_cw04" "nh4_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_na_cw04 i%jf dvel 1 - rdu "ddmass_na_cw04" "na_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_oin_cw04 i%jf dvel 1 - rdu "ddmass_oin_cw04" "oin_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_oc_cw04 i%jf dvel 1 - rdu "ddmass_oc_cw04" "oc_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_bc_cw04 i%jf dvel 1 - rdu "ddmass_bc_cw04" "bc_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_smpa_cw04 i%jf dvel 1 - rdu "ddmass_smpa_cw04" "smpa_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_smpbb_cw04 i%jf dvel 1 - rdu "ddmass_smpbb_cw04" "smpbb_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_glysoa_cw04 i%jf dvel 1 - rdu "ddmass_glysoa_cw04" "glysoa_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_c_cw04 i%jf dvel 1 - rdu "ddmass_biog1_c_cw04" "biog1_c_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_biog1_o_cw04 i%jf dvel 1 - rdu "ddmass_biog1_o_cw04" "biog1_o_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoaX_cw04 i%jf dvel 1 - rdu "ddmass_asoaX_cw04" "asoaX_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa1_cw04 i%jf dvel 1 - rdu "ddmass_asoa1_cw04" "asoa1_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa2_cw04 i%jf dvel 1 - rdu "ddmass_asoa2_cw04" "asoa2_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa3_cw04 i%jf dvel 1 - rdu "ddmass_asoa3_cw04" "asoa3_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_asoa4_cw04 i%jf dvel 1 - rdu "ddmass_asoa4_cw04" "asoa4_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoaX_cw04 i%jf dvel 1 - rdu "ddmass_bsoaX_cw04" "bsoaX_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa1_cw04 i%jf dvel 1 - rdu "ddmass_bsoa1_cw04" "bsoa1_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa2_cw04 i%jf dvel 1 - rdu "ddmass_bsoa2_cw04" "bsoa2_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa3_cw04 i%jf dvel 1 - rdu "ddmass_bsoa3_cw04" "bsoa3_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_bsoa4_cw04 i%jf dvel 1 - rdu "ddmass_bsoa4_cw04" "bsoa4_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_cw01 i%jf dvel 1 - rdu "ddmass_ca_cw01" "ca_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_cw02 i%jf dvel 1 - rdu "ddmass_ca_cw02" "ca_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_cw03 i%jf dvel 1 - rdu "ddmass_ca_cw03" "ca_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_ca_cw04 i%jf dvel 1 - rdu "ddmass_ca_cw04" "ca_cw04 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_cw01 i%jf dvel 1 - rdu "ddmass_co3_cw01" "co3_cw01 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_cw02 i%jf dvel 1 - rdu "ddmass_co3_cw02" "co3_cw02 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_cw03 i%jf dvel 1 - rdu "ddmass_co3_cw03" "co3_cw03 dry deposition, accumulated" "ug/m2"
state real ddmass_co3_cw04 i%jf dvel 1 - rdu "ddmass_co3_cw04" "co3_cw04 dry deposition, accumulated" "ug/m2"
# aerosol surface area diagnostic
state real - ikjf aero_srf_area 1 - - -
state real sulf_srf_area ikjf aero_srf_area 1 - - "sulf_srf_area" "Sulfate aerosol srf area" "cm^2"
state real oc_srf_area ikjf aero_srf_area 1 - - "oc_srf_area" "Hydrophylic organic carbon aerosol srf area" "cm^2"
state real bc_srf_area ikjf aero_srf_area 1 - - "bc_srf_area" "Hydrophylic black carbon aerosol srf area" "cm^2"
# deposition velocities for diagnostic package, feel free to add if you like!
#
state real dep_vel i{kdv}j{ndv} misc 1 Z r "DEP_VEL" "deposition velocity" "cm/s"