-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read in ak, bk coefficients #36
Changes from 61 commits
f973613
1b55098
d93a45d
a6cc76e
59c8308
aebcdba
327bd10
95c3bfd
b6227d5
b571feb
a2513d3
56e9293
406497c
362eb55
c0a5fc2
6bde165
ed5846e
a6b8998
4b22fc3
eb8d88d
63bdef3
a2ff82d
92dda5a
1d0bb25
c7f0b07
07a55ae
10af092
1314117
4c72d51
d650ed0
a8a7df4
6624a92
ba79aa1
c23aa18
7a192fa
e740271
60c1805
b26acef
38b9536
b9f966a
72010c5
1abe716
af6d431
13e1529
57d99f5
461802d
16086a5
2d920b7
62dbdb9
0335342
1f09546
d263bc2
cb57fbd
b805d44
6ff18fb
d22719e
bf469e4
85fefdc
f6084ba
b5ca33e
bde31a4
0644ad3
42fda95
c2f2acf
7780c8f
870bc87
2ff869a
4eb4fc2
a127680
f2bed7f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "2c056479", | ||
"metadata": { | ||
"lines_to_next_cell": 0 | ||
}, | ||
"outputs": [], | ||
"source": [] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "8c96fbff", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import netCDF4 as nc\n", | ||
"import numpy as np" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "6827b1b5", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"\"\"\"\n", | ||
"This notebook uses the python netCDF4 module\n", | ||
"to create an eta_file containg\n", | ||
"ak and bk coefficients for km=79\n", | ||
"\"\"\"" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "45d4a704", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#create a Dataset instance\n", | ||
"coefficients = nc.Dataset(\"eta79.nc\", \"w\", format=\"NETCDF4\")" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "b964a014", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Set dimensionsion\n", | ||
"km = coefficients.createDimension(\"km\", 80)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "d51c395f", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Create ak and bk variables\n", | ||
"ak = coefficients.createVariable(\"ak\", np.float64, (\"km\"))\n", | ||
"bk = coefficients.createVariable(\"bk\", np.float64, (\"km\"))\n", | ||
"ak.units=\"\"\n", | ||
"bk.units=\"\"" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "6723352e", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Assign and write out values of ak\n", | ||
"ak[:] = np.array(\n", | ||
" [ 3.000000e+02, 6.467159e+02, 1.045222e+03, 1.469188e+03, 1.897829e+03,\n", | ||
" 2.325385e+03, 2.754396e+03, 3.191294e+03, 3.648332e+03, 4.135675e+03,\n", | ||
" 4.668282e+03, 5.247940e+03, 5.876271e+03, 6.554716e+03, 7.284521e+03,\n", | ||
" 8.066738e+03, 8.902188e+03, 9.791482e+03, 1.073499e+04, 1.162625e+04,\n", | ||
" 1.237212e+04, 1.299041e+04, 1.349629e+04, 1.390277e+04, 1.422098e+04,\n", | ||
" 1.446058e+04, 1.462993e+04, 1.473633e+04, 1.478617e+04, 1.478511e+04,\n", | ||
" 1.473812e+04, 1.464966e+04, 1.452370e+04, 1.436382e+04, 1.417324e+04,\n", | ||
" 1.395491e+04, 1.371148e+04, 1.344540e+04, 1.315890e+04, 1.285407e+04,\n", | ||
" 1.253280e+04, 1.219685e+04, 1.184788e+04, 1.148739e+04, 1.111682e+04,\n", | ||
" 1.073748e+04, 1.035062e+04, 9.957395e+03, 9.558875e+03, 9.156069e+03,\n", | ||
" 8.749922e+03, 8.341315e+03, 7.931065e+03, 7.519942e+03, 7.108648e+03,\n", | ||
" 6.698281e+03, 6.290007e+03, 5.884984e+03, 5.484372e+03, 5.089319e+03,\n", | ||
" 4.700960e+03, 4.320421e+03, 3.948807e+03, 3.587201e+03, 3.236666e+03,\n", | ||
" 2.898237e+03, 2.572912e+03, 2.261667e+03, 1.965424e+03, 1.685079e+03,\n", | ||
" 1.421479e+03, 1.175419e+03, 9.476516e+02, 7.388688e+02, 5.497130e+02,\n", | ||
" 3.807626e+02, 2.325417e+02, 1.054810e+02, -8.381903e-04, 0.000000e+00] )" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "195c9ef5", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Assign and write out values of bk \n", | ||
"bk[:] = np.array(\n", | ||
" [ 0., 0., 0., 0., 0., 0.,\n", | ||
" 0., 0., 0., 0., 0., 0.,\n", | ||
" 0., 0., 0., 0., 0., 0.,\n", | ||
" 0., 0.00106595, 0.00412866, 0.00900663, 0.01554263, 0.02359921,\n", | ||
" 0.03305481, 0.0438012, 0.05574095, 0.06878554, 0.08285347, 0.09786981,\n", | ||
" 0.1137643, 0.130471, 0.1479275, 0.1660746, 0.1848558, 0.2042166,\n", | ||
" 0.2241053, 0.2444716, 0.2652672, 0.286445, 0.3079604, 0.3297701,\n", | ||
" 0.351832, 0.3741062, 0.3965532, 0.4191364, 0.4418194, 0.4645682,\n", | ||
" 0.48735, 0.5101338, 0.5328897, 0.5555894, 0.5782067, 0.6007158,\n", | ||
" 0.6230936, 0.6452944, 0.6672683, 0.6889648, 0.7103333, 0.7313231,\n", | ||
" 0.7518838, 0.7719651, 0.7915173, 0.8104913, 0.828839, 0.846513,\n", | ||
" 0.8634676, 0.8796583, 0.8950421, 0.9095779, 0.9232264, 0.9359506,\n", | ||
" 0.9477157, 0.9584892, 0.9682413, 0.9769447, 0.9845753, 0.9911126,\n", | ||
" 0.9965372, 1. ] )" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "c0f3bd9d", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Close netcdf file\n", | ||
"coefficients.close()" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"jupytext": { | ||
"cell_metadata_filter": "-all", | ||
"executable": "/usr/bin/env python3", | ||
"main_language": "python", | ||
"notebook_metadata_filter": "-all" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the other notebook ¯_(ツ)_/¯ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "6dc5fe4c", | ||
"metadata": { | ||
"lines_to_next_cell": 0 | ||
}, | ||
"outputs": [], | ||
"source": [] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "81be9a15", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import numpy as np\n", | ||
"import xarray as xr" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "c74c6c07", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"\"\"\"\n", | ||
"This notebook uses the python xarray module\n", | ||
"to create an eta_file containg\n", | ||
"ak and bk coefficients for km=79\n", | ||
"\"\"\"" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "f72c5d5b", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Assign ak data\n", | ||
"ak=np.array(\n", | ||
" [ 3.000000e+02, 6.467159e+02, 1.045222e+03, 1.469188e+03, 1.897829e+03,\n", | ||
" 2.325385e+03, 2.754396e+03, 3.191294e+03, 3.648332e+03, 4.135675e+03,\n", | ||
" 4.668282e+03, 5.247940e+03, 5.876271e+03, 6.554716e+03, 7.284521e+03,\n", | ||
" 8.066738e+03, 8.902188e+03, 9.791482e+03, 1.073499e+04, 1.162625e+04,\n", | ||
" 1.237212e+04, 1.299041e+04, 1.349629e+04, 1.390277e+04, 1.422098e+04,\n", | ||
" 1.446058e+04, 1.462993e+04, 1.473633e+04, 1.478617e+04, 1.478511e+04,\n", | ||
" 1.473812e+04, 1.464966e+04, 1.452370e+04, 1.436382e+04, 1.417324e+04,\n", | ||
" 1.395491e+04, 1.371148e+04, 1.344540e+04, 1.315890e+04, 1.285407e+04,\n", | ||
" 1.253280e+04, 1.219685e+04, 1.184788e+04, 1.148739e+04, 1.111682e+04,\n", | ||
" 1.073748e+04, 1.035062e+04, 9.957395e+03, 9.558875e+03, 9.156069e+03,\n", | ||
" 8.749922e+03, 8.341315e+03, 7.931065e+03, 7.519942e+03, 7.108648e+03,\n", | ||
" 6.698281e+03, 6.290007e+03, 5.884984e+03, 5.484372e+03, 5.089319e+03,\n", | ||
" 4.700960e+03, 4.320421e+03, 3.948807e+03, 3.587201e+03, 3.236666e+03,\n", | ||
" 2.898237e+03, 2.572912e+03, 2.261667e+03, 1.965424e+03, 1.685079e+03,\n", | ||
" 1.421479e+03, 1.175419e+03, 9.476516e+02, 7.388688e+02, 5.497130e+02,\n", | ||
" 3.807626e+02, 2.325417e+02, 1.054810e+02, -8.381903e-04, 0.000000e+00] )" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "f5b85c7e", | ||
"metadata": { | ||
"lines_to_next_cell": 2 | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"#Assign bk data\n", | ||
"bk=np.array(\n", | ||
" [ 0., 0., 0., 0., 0., 0.,\n", | ||
" 0., 0., 0., 0., 0., 0.,\n", | ||
" 0., 0., 0., 0., 0., 0.,\n", | ||
" 0., 0.00106595, 0.00412866, 0.00900663, 0.01554263, 0.02359921,\n", | ||
" 0.03305481, 0.0438012, 0.05574095, 0.06878554, 0.08285347, 0.09786981,\n", | ||
" 0.1137643, 0.130471, 0.1479275, 0.1660746, 0.1848558, 0.2042166,\n", | ||
" 0.2241053, 0.2444716, 0.2652672, 0.286445, 0.3079604, 0.3297701,\n", | ||
" 0.351832, 0.3741062, 0.3965532, 0.4191364, 0.4418194, 0.4645682,\n", | ||
" 0.48735, 0.5101338, 0.5328897, 0.5555894, 0.5782067, 0.6007158,\n", | ||
" 0.6230936, 0.6452944, 0.6672683, 0.6889648, 0.7103333, 0.7313231,\n", | ||
" 0.7518838, 0.7719651, 0.7915173, 0.8104913, 0.828839, 0.846513,\n", | ||
" 0.8634676, 0.8796583, 0.8950421, 0.9095779, 0.9232264, 0.9359506,\n", | ||
" 0.9477157, 0.9584892, 0.9682413, 0.9769447, 0.9845753, 0.9911126,\n", | ||
" 0.9965372, 1. ] )" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "c5450f7f", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Create a Dataset instance\n", | ||
"coefficients = xr.Dataset(\n", | ||
" { \"ak\": ([\"km1\"], ak),\n", | ||
" \"bk\": ([\"km1\"], bk) \n", | ||
" })" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "5a0e5487", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Set attributes for each variable\n", | ||
"coefficients[\"ak\"].attrs[\"units\"]=\"\"\n", | ||
"coefficients[\"bk\"].attrs[\"units\"]=\"\"" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "612b0134", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"#Write netcdf file\n", | ||
"coefficients.to_netcdf(\"eta79.nc\")" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"jupytext": { | ||
"cell_metadata_filter": "-all", | ||
"executable": "/usr/bin/env python3", | ||
"main_language": "python", | ||
"notebook_metadata_filter": "-all" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,6 +126,8 @@ def __init__( | |
metric_terms = pace.util.grid.MetricTerms( | ||
quantity_factory=quantity_factory, communicator=self.communicator | ||
) | ||
metric_terms._eta_file = namelist["grid_config"]["config"]["eta_file"] | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't the eta file go in the metric terms init? |
||
grid_data = pace.util.grid.GridData.new_from_metric_terms(metric_terms) | ||
|
||
stencil_config = pace.dsl.stencil.StencilConfig( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,11 +66,14 @@ def test_restart_save_to_disk(): | |
sizer=sizer, backend=backend | ||
) | ||
|
||
eta_file = driver_config.grid_config.config.eta_file | ||
( | ||
damping_coefficients, | ||
driver_grid_data, | ||
grid_data, | ||
) = pace.driver.GeneratedGridConfig().get_grid(quantity_factory, communicator) | ||
) = pace.driver.GeneratedGridConfig(eta_file=eta_file).get_grid( | ||
quantity_factory, communicator | ||
) | ||
Comment on lines
-73
to
+76
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm surprised the serial restart test uses a generated grid and not a serialized one but ¯_(ツ)_/¯ |
||
init = AnalyticInit() | ||
driver_state = init.get_driver_state( | ||
quantity_factory=quantity_factory, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if this needs to be a notebook but I don't think it has to not be a notebook ¯_(ツ)_/¯