-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ochsner, David
committed
Jun 20, 2019
1 parent
cd2b14a
commit a93fad0
Showing
34 changed files
with
2,283 additions
and
1,745 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,43 @@ | ||
# "constant" paths and values for TNO | ||
#tnoCamsPath = "/project/hjm/CHE/TNO_Anthropogenic_emissions/v1_1_2018_12/TNO_6x6_GHGco_v1_1/TNO_GHGco_v1_1_year2015.nc" | ||
# tnoCamsPath = "/project/hjm/CHE/TNO_Anthropogenic_emissions/v1_1_2018_12/TNO_6x6_GHGco_v1_1/TNO_GHGco_v1_1_year2015.nc" | ||
tnoCamsPath = "/input/TNOMACC/TNO_GHGco/Future_years_emissions/TNO_GHGco_v1_1_CIRCE_BAU_year2030.nc" | ||
tnoMACCIIIPath = tnoCamsPath | ||
tno_xmin = -30. | ||
tno_xmax = 60. | ||
tno_ymin = 30. | ||
tno_ymax = 72. | ||
tno_dx = 1/10. | ||
tno_dy = 1/20. | ||
tno_xmin = -30.0 | ||
tno_xmax = 60.0 | ||
tno_ymin = 30.0 | ||
tno_ymax = 72.0 | ||
tno_dx = 1 / 10.0 | ||
tno_dy = 1 / 20.0 | ||
|
||
#case specific parameters | ||
species = ['CO2']#,'CH4','CO','NOX','NMVOC'] | ||
# case specific parameters | ||
species = ["CO2"] # ,'CH4','CO','NOX','NMVOC'] | ||
|
||
cat_kind="NFR_BAU" | ||
snap = [ "A", "B", "C", "D", "E", "F", | ||
"G", "H", "I", "J", "K", "L" ] | ||
cat_kind = "NFR_BAU" | ||
snap = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L"] | ||
# snap = [ "J", "L" ] | ||
#tno_snap = [ "A", "B", "C", "D", "E", "F1","F2","F3", | ||
# tno_snap = [ "A", "B", "C", "D", "E", "F1","F2","F3", | ||
# "G", "H", "I", "J", "K", "L" ] | ||
tno_snap = [ "A", "B", "C", "D", "E", "F1","F2","F3", | ||
"G", "H", "I", "J", "L" ] | ||
tno_snap = ["A", "B", "C", "D", "E", "F1", "F2", "F3", "G", "H", "I", "J", "L"] | ||
year = 2030 | ||
gridname = 'Europe_BAU' | ||
output_path ="./testdata/CHE_TNO_v1_1_2018_12/CHE_TNO_online/" | ||
gridname = "Europe_BAU" | ||
output_path = "./testdata/CHE_TNO_v1_1_2018_12/CHE_TNO_online/" | ||
|
||
offline=False | ||
offline = False | ||
|
||
# Domain | ||
#CHE_Europe domain | ||
# CHE_Europe domain | ||
dx = 0.05 | ||
dy = 0.05 | ||
pollon = -170.0 | ||
pollat = 43.0 | ||
|
||
if not offline: | ||
xmin = -17#-2*dx | ||
ymin = -11#-2*dy | ||
nx = 760#+4 | ||
ny = 610#+4 | ||
xmin = -17 # -2*dx | ||
ymin = -11 # -2*dy | ||
nx = 760 # +4 | ||
ny = 610 # +4 | ||
else: | ||
xmin = -17-2*dx | ||
ymin = -11-2*dy | ||
nx = 760+4 | ||
ny = 610+4 | ||
|
||
xmin = -17 - 2 * dx | ||
ymin = -11 - 2 * dy | ||
nx = 760 + 4 | ||
ny = 610 + 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.