forked from psu-inversion/WRF_boundary_coupling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrfchembc_CT_pkg.tar
1559 lines (1191 loc) · 70 KB
/
wrfchembc_CT_pkg.tar
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
wrfchembc_CT_pkg/ 0002755 0055126 0072770 00000000000 13227734107 012632 5 ustar mpb186 abl wrfchembc_CT_pkg/main_bc_wrfchem_CT.f90 0000644 0055126 0072770 00000031504 13227731622 016643 0 ustar mpb186 abl program main_bc_wrfchem_CT
!<DESCRIPTION>
!
! Program wrfchembc.
!
! Original source of unknown date:
! Authors: Rainer Schmitz (University of Chile - Santiago, Chile)
! Steven Peckham (NOAA/ESRL/GSD - Boulder, CO)
!
! This code has been liberally adapted at Penn State to support the 'nesting' of
! a WRF domain within a global model, for the purpose of populating the boundaries
! (in wrfbdy) with a tracer from the global model.
! wrfchembc has versions specific to the global model being used for the problem.
! wrfchembc is executed once for each tracer to be populated.
! Code can also be used to initialize tracers with a constant value
! (options now are 300 ppm or 0 ppm, assuming the tracer is CO2)
! Use the 300 ppm option when the tracer will be used for surface fluxes
! with both source and sink values to avoid 'losing' tracer.
!
! Assumes existence of a wrfinput file and matching wrfbdy file populated with
! meteorological values from real.exe with both of these files having the
! tracers already defined. (It is possible to add the tracers to the
! wrfbdy file if they do not already exist, but this is not recommended.)
!
! This is the main program of WRF/Chem global boundary condition generation code, and is
! specific to the global model being used. The tracer for each execution is provided in
! the 'control' namelist. This code calls procedures in the module for the global model
! and in the separate module dealing with wrf procedures.
! Only the wrfbdy file tracers are updated in this code.
!
! The global file consists of a two-month concatenation of source data.
! Sourcing begins at the time-step within the 2-month file that corresponds
! to the beginning date of the wrfinput/wrfbdy files.
! It is up to the user to specify the correct 2-month global source file
! in the namelist control.
! For the TM5 and GEOS-Chem based files, the global file time increment (dt_g) is 3 hours.
! The wrfbdy time increment (dt_w) is 6 hours.
! Appropriate global file time incrments will be averaged to the wrfbdy time step.
! This code can accommodate either 00 UTC or 12 UTC start times.
!
! The options for global models at this time are:
! CarbonTracker (other TM5 based global models, such as those from Sourish Basu,
! will use this as a model, with some modifications)
! GEOS-Chem (a CMS-Flux system version, which will also be used as a model for
! files from Andrew Schuh, with some modifications)
! PCTM (a PCTM system version, which requires re-orienting PCTM files
! to surface-top before use)
! The wrfchembc package consists of this 'main' code plus:
! module_CT_lib.f90: but, use the module specific to global model
! currently either module_GEOS_lib.f90 or module_CT_lib.f90
! Most procedures in the global model module will be referred to as 'global'
! module_wrfchem_lib.f90: This contains wrf specific procedures and should not need to be modified.
! wrfchembc_namelist.input
! Makefile
!
! The namelist input data file for the program is structured as follows with examples:
! &control
!
! dir_wrf = '/data/wrfchem_data/' ! Directory containing the wrfinput and wrfbdy files
! fnb_wrf = 'wrfbdy_d01' ! WRF boundary condition data file
! fni_wrf = 'wrfinput_d01' ! WRF initial condition data file
!
! chem_bc_opt = 1 (or 2 or 3) ! 1=global model, 2=fixed constant, 3=zero
!
! specname = 'tracer_8' ! identification of the tracer to be updated in wrfbdy
! ! specname = 'tracer_n' where n is the tracer number
! ! tracer name must match the variable name in wrfbdy file
!
! ! The following are used only for chem_bc_opt = 1
! ! and may be omitted for options 2 and 3
! dir_global = '/data/global_data/' ! Global model data directory example
! fn_global = 'CT2016_2010-0607.nc' ! Global model data file name example
!
!
! /
!
! To compile, type "make". The make file is set-up to compile the code for a
! single processor using the Intel compiler (We assume you are using a
! linux cluster). The Makefile will need to be modified to work with other
! computer systems.
! Makefile in this directory is specific to PSU Meteorology Linux cluster use
!
! To execute the program, type
!
! wrfchembc_CT < wrfchembc_namelist.input
!
!</DESCRIPTION>
use netcdf
use module_wrfchem_lib
use module_CT_lib
implicit none
! parameters - modify to suit
integer, parameter :: maxsize = 100 ! for directories and filenames (and total length of dir + filename)
integer, parameter :: litsize = 20 ! for tracer names
integer, parameter :: dt_w = 6 ! the wrfbdy time increment in hours
integer, parameter :: dt_g = 3 ! the global model source time increment in hours
integer, parameter :: gincr = 8 ! number of global model time increments per day
! control variables (provided in namelist)
character(len=maxsize) :: dir_global, dir_wrf
character(len=maxsize) :: fnb_wrf, fni_wrf, fn_global
integer :: chem_bc_opt
character(len=litsize) :: specname
namelist /control/ dir_wrf, fnb_wrf, fni_wrf, &
chem_bc_opt, specname, dir_global, fn_global
! boundary conditions
real, allocatable :: bcxs(:,:,:)
real, allocatable :: bcxe(:,:,:)
real, allocatable :: bcys(:,:,:)
real, allocatable :: bcye(:,:,:)
! boundary condition tendencies
real, allocatable :: btxs(:,:,:)
real, allocatable :: btxe(:,:,:)
real, allocatable :: btys(:,:,:)
real, allocatable :: btye(:,:,:)
! saved boundary conditions (for computing tendencies)
real, allocatable :: bcxso(:,:,:)
real, allocatable :: bcxeo(:,:,:)
real, allocatable :: bcyso(:,:,:)
real, allocatable :: bcyeo(:,:,:)
! other public working variables
! it_bdy is the 'time step' in the wrfbdy output file
! it_glob is the 'time step' in the source global file (from file beginning)
integer :: it_bdy, it_glob
character(len=maxsize) :: fnb, fni, fng ! full names of files
print *,"******************************************************"
print *,"* PROGRAM: WRF/CHEM GLOBAL BOUNDARIES *"
print *,"* FOR WRF/CHEM VERSION 3.6.1 *"
print *,"* *"
print *,"* PLEASE REPORT ANY BUGS TO us at PSU *"
print *,"* *"
print *,"* [email protected] *"
print *,"* *"
print *,"******************************************************"
! read control variables
read( 5, nml=control )
! intialize module_wrfchem_lib
fnb = trim(dir_wrf)//adjustl(fnb_wrf) !wrfbdy
fni = trim(dir_wrf)//adjustl(fni_wrf) !wrfinput
write(*,*) 'call to init_wrfchem_lib'
! open the wrf files, retrieving dimension data
! (will create boundary variables for this tracer in wrfbdy for this tracer if necessary)
! ntime (returned) is the total number of time increments in the wrfbdy file
! Other returned variables will be used in the interpolation routines
call init_wrfchem_lib( fnb, fni, specname, ntime, ptop_wrf, znu, xlon, xlat )
! initialize global data module (if populating this tracer with global values)
! and compute horizontal and vertical interpolation coefficients
if(chem_bc_opt == 1) then
fng = trim(dir_global)//adjustl(fn_global)
call init_CT_lib( fng, ptop_wrf, xlon, xlat, znu, nx, ny, nz, day_start, hour_start, gincr )
print*,'call to initialize global model'
endif
! given the proper dimensions, allocate the boundary and tendency variables
allocate( bcxs(ny,nz,nw) )
allocate( bcxe(ny,nz,nw) )
allocate( bcys(nx,nz,nw) )
allocate( bcye(nx,nz,nw) )
allocate( btxs(ny,nz,nw) )
allocate( btxe(ny,nz,nw) )
allocate( btys(nx,nz,nw) )
allocate( btye(nx,nz,nw) )
! initialize tendencies as part of solution to problem
! encountered if only one time step in wrfbdy
btxs = 0.
btxe = 0.
btys = 0.
btye = 0.
! these only needed for chem_bc_opt 1
if(chem_bc_opt == 1) then
allocate( bcxso(ny,nz,nw) )
allocate( bcxeo(ny,nz,nw) )
allocate( bcyso(nx,nz,nw) )
allocate( bcyeo(nx,nz,nw) )
endif
!---------------------------------------------------------------------------------------------------
! do the time stepping
!---------------------------------------------------------------------------------------------------
! Variable 'it_bdy' represents the time increment in wrfbdy; 'it_glob' represents a time increment in
! the global model 2-month consolidated files
! Note that time stepping logic is dependent on the time resolution of the global model source
! relative to the wrfbdy time step.
do it_bdy = 1, ntime
write(*,*) 'Time step number of wrfbdy : ',it_bdy
if(chem_bc_opt == 1) then
if (it_bdy .eq. 1) then
it_glob = (day_start - 1)*gincr+1
else
it_glob = (day_start - 1)*gincr+(it_bdy-1)*2
endif
if (hour_start == 12) then
it_glob = it_glob + gincr/2
endif
write(*,*) 'Time increment of global model : ',it_glob
call global_interpolate4d( specname, bcxs, bcxe, bcys, &
bcye, nx, ny, nz, nw, it_bdy, it_glob, dt_w, dt_g )
endif
! use option 2 to avoid losing sink flux signals (subtract this value in postprocessing)
if(chem_bc_opt == 2) then
bcxs(:,:,:)=300.
bcxe(:,:,:)=300.
bcys(:,:,:)=300.
bcye(:,:,:)=300.
endif
! use option 3 only for tracers with positive definite flux
if(chem_bc_opt == 3) then
bcxs(:,:,:)=0.
bcxe(:,:,:)=0.
bcys(:,:,:)=0.
bcye(:,:,:)=0.
endif
! [PSU] tendencies for options 2 and 3 updated December 2015
! These were set at 1e-5 which is not nearly small enough,
! and introduced 0.036 ppm 'leaks' per tracer in waves on inflows on the walls,
! for an annual run, this amounts to approximately 0.1 ppm per tracer (option 2 and 3) in the interior.
! Tendencies changed to 0, which seems to be interpreted as approximately 1.e-15.
if (it_bdy >=2) then
! Compute Tendencies
if(chem_bc_opt == 1) then
btxs = ( bcxs - bcxso )/(float(dt_w)*3600.)
btxe = ( bcxe - bcxeo )/(float(dt_w)*3600.)
btys = ( bcys - bcyso )/(float(dt_w)*3600.)
btye = ( bcye - bcyeo )/(float(dt_w)*3600.)
endif
if(chem_bc_opt == 2) then
btxs = 0.
btxe = 0.
btys = 0.
btye = 0.
endif
if(chem_bc_opt == 3) then
btxs = 0.
btxe = 0.
btys = 0.
btye = 0.
endif
endif
! save current bc's for next tendency computationn
if (chem_bc_opt == 1) then
bcxso = bcxs
bcxeo = bcxe
bcyso = bcys
bcyeo = bcye
end if
write(*,*) 'Write the boundary conditions variables in wrfbdy file for time increment ', it_bdy
call wrfchem_write4d( specname, bcxs, bcxe, bcys, bcye, btxs, btxe, btys, btye, it_bdy )
end do
! exit from libs
call exit_wrfchem_lib( )
if(chem_bc_opt == 1) then
call exit_global_lib( )
endif
! deallocate memory space
if( allocated( znu ) ) deallocate( znu )
if( allocated( xlon ) ) deallocate( xlon )
if( allocated( xlat ) ) deallocate( xlat )
if( allocated( bcxs ) ) deallocate( bcxs )
if( allocated( bcxe ) ) deallocate( bcxe )
if( allocated( bcys ) ) deallocate( bcys )
if( allocated( bcye ) ) deallocate( bcye )
if( allocated( btxs ) ) deallocate( btxs )
if( allocated( btxe ) ) deallocate( btxe )
if( allocated( btys ) ) deallocate( btys )
if( allocated( btye ) ) deallocate( btye )
if( allocated( bcxso ) ) deallocate( bcxso )
if( allocated( bcxeo ) ) deallocate( bcxeo )
if( allocated( bcyso ) ) deallocate( bcyso )
if( allocated( bcyeo ) ) deallocate( bcyeo )
write(*,*) 'bc_wrfchem completed successfully'
end program main_bc_wrfchem_CT