forked from USEPA/CMAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_sitecmp_SEARCH_Hourly.csh
More file actions
executable file
·171 lines (136 loc) · 6.92 KB
/
Copy pathrun_sitecmp_SEARCH_Hourly.csh
File metadata and controls
executable file
·171 lines (136 loc) · 6.92 KB
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
#! /bin/csh -f
# ===================== SITECMP_v5.3.X Run Script ==================
# Usage: run.sitecmp.csh >&! sitecmp.log &
#
# To report problems or request help with this script/program:
# http://www.epa.gov/cmaq (EPA CMAQ Website)
# http://www.cmascenter.org
# ===================================================================
# ==================================================================
#> Runtime Environment Options
# ==================================================================
#> Choose compiler and set up CMAQ environment with correct
#> libraries using config.cmaq. Options: intel | gcc | pgi
setenv compiler intel
cd ../../..
source ./config_cmaq.csh
#> Set General Parameters for Configuring the Simulation
set VRSN = v532 #> Code Version
set PROC = mpi #> serial or mpi
set MECH = cb6r3_ae7_aq #> Mechanism ID
set APPL = Bench_2016_12SE1 #> Application Name (e.g. Gridname)
#> Define RUNID as any combination of parameters above or others. By default,
#> this information will be collected into this one string, $RUNID, for easy
#> referencing in output binaries and log files as well as in other scripts.
set RUNID = ${VRSN}_${compilerString}_${APPL}
#> Set the build directory if this was not set above
#> (this is where the executable is located by default).
if ( ! $?BINDIR ) then
set BINDIR = ${CMAQ_HOME}/POST/sitecmp/scripts/BLD_sitecmp_${VRSN}_${compilerString}
endif
#> Set the name of the executable.
set EXEC = sitecmp_${VRSN}.exe
#> Set output directory
set POSTDIR = ${CMAQ_DATA}/POST #> Location where sitecmp file will be written
if ( ! -e $POSTDIR ) then
mkdir $POSTDIR
endif
# =====================================================================
#> SITECMP Configuration Options
# =====================================================================
# ~~~~~~~~~~~~ START NETWORK SPECIFIC SECTION ~~~~~~~~~~~~~~~~~~~~~~~~~
#> The following environment variables will change depending on what
#> observation network is being matched with CMAQ output.
#> See the README.md file in this folder for the settings to use for
#> the following networks: IMPROVE, CASTNET, CSN (formally STN), NADP
#> SEARCH, AIRMON
#> Set TABLE TYPE
setenv TABLE_TYPE CASTNET
#> Specify the variable names used in your observation inputs
#> and model output files for each of the species you are analyzing below.
#>
#> variable format:
#> Obs_expression, Obs_units, [Mod_expression], [Mod_unit], [Variable_name]
#>
#> The expression is in the form:
#> [factor1]*Obs_name1 [+][-] [factor2]*Obs_name2 ...
setenv AERO_1 "Average O3[ppb],ppb,O3,,O3"
setenv AERO_2 "Average CO[ppb],ppb,CO,,CO"
setenv AERO_3 "Average SO2[ppb],ppb,SO2,,SO2"
setenv AERO_4 "Average NO[ppb],ppb,NO,,NO"
setenv AERO_5 "Average NO2[ppb],ppb,NO2,,NO2"
setenv AERO_6 "Average NOy[ppb],ppb,NOY,ppb,NOY"
setenv AERO_7 "Average HNO3[ppb],ppb,HNO3,ppb,HNO3"
setenv AERO_8 "Average NH3[ppb],ug/m3,NH3,,NH3"
setenv AERO_9 "Average WSP[m/s],m/s,WSPD10,m/s,WSPD10"
setenv AERO_10 "Average WDR[Deg],m/s,WDIR10,m/s,WDIR10"
setenv AERO_11 "Average RH[%],%,RH,%,RH"
setenv AERO_12 "Average TEMP[Deg C],C,SFC_TMP,C,SFC_TMP"
setenv AERO_13 "25.4*Average RAINFALL[Inches],mm,precip,mm,precip"
setenv AERO_14 "Average SR[W/m2],w/m2,SOL_RAD,watts/m2,Solar_Rad"
setenv AERO_15 "Average OptEC[ug/m3],ug/m3,PM25_EC,ug/m3,PM25_EC"
setenv AERO_16 "Average OC[ug/m3],ug/m3,PM25_OC,ug/m3,PM25_OC"
setenv AERO_17 "Average TC[ug/m3],ug/m3,PM25_EC+PM25_OC,ug/m3,PM25_TC"
setenv AERO_18 "Average NH4[ug/m3],ug/m3,PM25_NH4,,PM25_NH4"
setenv AERO_19 "Average NO3[ug/m3],ug/m3,PM25_NO3,,PM25_NO3"
setenv AERO_20 "Average SO4[ug/m3],ug/m3,PM25_SO4,,PM25_SO4"
#> End Species List ###
# ~~~~~~~~~~~~ END NETWORK SPECIFIC SECTION ~~~~~~~~~~~~~~~~~~~~~~~~~
#> define time window
set SDATE = "2016-07-01" #> beginning date (July 1, 2016)
set EDATE = "2016-07-14" #> ending date (July 14, 2016)
setenv START_TIME 0
setenv END_TIME 230000
#> Convert SDATE and EDATE to Julian day.
#> (required format for sitecmp START_DATE and END_DATE environment variables)
setenv START_DATE `date -ud "${SDATE}" +%Y%j`
setenv END_DATE `date -ud "${EDATE}" +%Y%j`
#> define the PRECIP variable
setenv PRECIP RT
#> adjust for daylight savings
setenv APPLY_DLS N
#> set missing value string
setenv MISSING '-999'
#> Projection sphere type (use type 20 to match WRF/CMAQ)
setenv IOAPI_ISPH 20
#> Number of hours to add when retrieving time steps from M3_FILE_n files during processing.
#> This should only be non-zero if the M3_FILE_n files were pre-processed with a utility like m3tshift (default 0).
setenv TIME_SHIFT 0
#############################################################
# Input files
#############################################################
#> ioapi input files containing VNAMES (max of 10)
setenv M3_FILE_1 ${CMAQ_DATA}/POST/COMBINE_ACONC_${RUNID}_201607.nc
#[Add location of input file, e.g. COMBINE_ACONC file.]
#> SITE FILE containing site-id, longitude, latitude, and optionally
#> GMT offset, state, county, and elevation (csv format)
#> The column headings for the required variables need to be
#> stat_id, lon, and lat (case insensitive)
#> The column headings for the optional variables need to be
#> gmt_offset, state, county, and elevation (case insensitive)
#> This file can be downloaded from
#> https://github.com/USEPA/AMET/tree/master/obs/AQ/site_metadata_files
setenv SITE_FILE SEARCH_full_site_list.csv
#> On EPA system:
# setenv SITE_FILE /work/MOD3EVAL/aq_obs/routine/site_metadata_files/SEARCH_full_site_list.csv
#> input table containing site-id, time-period, and data fields
#> AQS obs data in the format needed for sitecmp are available
#> from the CMAS Center Data clearinghouse under the heading "2000-2014 North American Air Quality Observation Data":
#> https://www.cmascenter.org/download/data.cfm
#> Hourly AQS observations are located in AMET12_OBSDATA_YYYY.tar.gz for year YYYY.
setenv IN_TABLE SEARCH_hourly_data_2016.csv
#> One EPA system:
# setenv IN_TABLE /work/MOD3EVAL/aq_obs/routine/2016/SEARCH_hourly_data_2016.csv
#############################################################
# Output files
#############################################################
#> output table (comma delimited text file importable to Excel)
setenv OUT_TABLE ${POSTDIR}/SEARCH_Hourly_CMAQ_${RUNID}_201607.csv
#> Executable call:
${BINDIR}/${EXEC}
set progstat = ${status}
if ( ${progstat} ) then
echo "ERROR ${progstat} in $BINDIR/$EXEC"
exit( ${progstat} )
endif
exit()