-
Notifications
You must be signed in to change notification settings - Fork 29
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
1 parent
73fc1cc
commit 6f8182b
Showing
3 changed files
with
134 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
{ | ||
"Ensembles" : { | ||
"nMembers" : 1}, | ||
|
||
"Debug" : { | ||
"iVerbose" : 0, | ||
"iFunctionVerbose" : { | ||
"Grid::create_altitudes": 0}, | ||
"dt" : 10.0, | ||
"check_for_nans" : false | ||
}, | ||
|
||
"EndTime" : [2011, 3, 20, 0, 10, 0], | ||
|
||
"GeoBlockSize" : { | ||
"nLons" : 20, | ||
"nLats" : 20, | ||
"nAlts" : 50}, | ||
|
||
"CubeSphere" : { | ||
"is" : true}, | ||
|
||
"Electrodynamics" : { | ||
"Potential" : "Weimer05", | ||
"DiffuseAurora" : "fta", | ||
"Dir" : "UA/inputs/ext/ie/", | ||
"File" : ""}, | ||
|
||
"GeoGrid" : { | ||
"dAlt" : 0.25, | ||
"IsUniformAlt" : false}, | ||
|
||
"OmniwebFiles" : ["UA/inputs/omni_20110319.txt"], | ||
|
||
"Outputs" : { | ||
"type" : ["states"], | ||
"dt" : [900] }, | ||
|
||
"DoCalcBulkIonTemp" : false, | ||
|
||
"PlanetFile" : "UA/inputs/earth.in" | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
{ | ||
"Ensembles" : { | ||
"nMembers" : 1}, | ||
|
||
"Debug" : { | ||
"iVerbose" : 0, | ||
"iFunctionVerbose" : { | ||
"Grid::create_altitudes": 0}, | ||
"dt" : 10.0, | ||
"check_for_nans" : false | ||
}, | ||
|
||
"EndTime" : [2011, 3, 20, 0, 10, 0], | ||
|
||
"GeoBlockSize" : { | ||
"nLons" : 22, | ||
"nLats" : 18, | ||
"nAlts" : 50}, | ||
|
||
"CubeSphere" : { | ||
"is" : false}, | ||
|
||
"Electrodynamics" : { | ||
"Potential" : "Weimer05", | ||
"DiffuseAurora" : "fta", | ||
"Dir" : "UA/inputs/ext/ie/", | ||
"File" : ""}, | ||
|
||
"GeoGrid" : { | ||
"dAlt" : 0.25, | ||
"IsUniformAlt" : false}, | ||
|
||
"OmniwebFiles" : ["UA/inputs/omni_20110319.txt"], | ||
|
||
"Outputs" : { | ||
"type" : ["states"], | ||
"dt" : [900] }, | ||
|
||
"DoCalcBulkIonTemp" : false, | ||
|
||
"PlanetFile" : "UA/inputs/earth.in" | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/sh | ||
|
||
# remove old directories: | ||
rm -rf build run.* | ||
|
||
# make code WITH Fortran: | ||
mkdir build | ||
cd build | ||
cmake -DUSE_FORTRAN=Y ../../.. | ||
make -j4 | ||
cd .. | ||
cp -R ../../share/run ./run.ie | ||
cd run.ie | ||
|
||
# run IE with spherical | ||
cp ../aether.json.sphere.ie_test ./aether.json | ||
mpirun -np 4 ./aether | ||
cd UA/output | ||
../../../../../srcPython/postAether.py -rm | ||
# This assumes aetherpy is installed and the plotter is in the bin directory: | ||
~/bin/run_plot_block_model_results.py -var=Temperature -alt=20 3DALL_20110320_001500.nc | ||
~/bin/run_plot_block_model_results.py -var=Potential -alt=20 3DALL_20110320_001500.nc | ||
# into UA directory | ||
cd .. | ||
mv output output.ie_sphere | ||
mkdir output | ||
# into run directory | ||
cd .. | ||
|
||
# run with MSIS (this should be different from the other three runs!): | ||
cp ../aether.json.cube.ie_test ./aether.json | ||
mpirun -np 6 ./aether | ||
cd UA/output | ||
../../../../../srcPython/postAether.py -rm | ||
# This assumes aetherpy is installed and the plotter is in the bin directory: | ||
~/bin/run_plot_block_model_results.py -var=Temperature -alt=20 3DALL_20110320_001500.nc | ||
~/bin/run_plot_block_model_results.py -var=Potential -alt=20 3DALL_20110320_001500.nc | ||
# into UA directory | ||
cd .. | ||
mv output output.ie_sphere | ||
mkdir output | ||
# into run directory | ||
cd .. | ||
|
||
|
||
|