Changeset 26842
- Timestamp:
- 01/31/22 17:18:22 (3 years ago)
- Location:
- issm/trunk-jpl/test
- Files:
-
- 1 added
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test2002.m
r26809 r26842 3 3 %mesh earth: 4 4 md=model; 5 load ../Data/SlcTestMesh.mat; 5 6 % %Generate and save mesh 7 % SlcMesh=gmshplanet('radius',6.371012*10^3,'resolution',700.); 8 % save('../Data/SlcTestMesh.mat','SlcMesh'); 9 % md.mesh=SlcMesh; 10 11 %Load precomputed mesh 12 load('../Data/SlcTestMesh.mat'); 6 13 md.mesh=SlcMesh; %700 km resolution mesh 7 14 -
issm/trunk-jpl/test/NightlyRun/test2002.py
r26840 r26842 1 1 #Test Name: EarthSlc 2 2 import numpy as np 3 4 from gmshplanet import *3 import pickle 4 #from gmshplanet import * 5 5 from gmtmask import * 6 6 from lovenumbers import * … … 12 12 13 13 md = model() 14 md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700.) # 700 km resolution mesh 14 15 ## Generate and save mesh (need to uncomment import of gmshplanet as well) 16 # md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700.) # 700 km resolution mesh 17 # with open('../Data/SlcTestMesh.pkl', 'wb') as slc_test_mesh_file: 18 # pickle.dump(md.mesh, slc_test_mesh_file) 19 20 # Load precomputed mesh 21 with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file: 22 md.mesh = pickle.load(slc_test_mesh_file) 15 23 16 24 # Geometry for the bed, arbitrary thickness of 100 -
issm/trunk-jpl/test/NightlyRun/test2003.py
r26638 r26842 1 1 #Test Name: EarthSlc_rotationalFeedback 2 2 import numpy as np 3 import pickle 3 4 from socket import gethostname 4 from gmshplanet import *5 5 from gmtmask import * 6 6 from lovenumbers import * … … 12 12 13 13 md = model() 14 md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700.) # 700 km resolution mesh 14 15 # Load precomputed mesh 16 with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file: 17 md.mesh = pickle.load(slc_test_mesh_file) 15 18 16 19 # Geometry for the bed, arbitrary thickness of 100 -
issm/trunk-jpl/test/NightlyRun/test2005.py
r26358 r26842 1 1 #Test Name: EarthSlc 2 2 import numpy as np 3 4 from gmshplanet import * 3 import pickle 5 4 from gmtmask import * 6 5 from lovenumbers import * … … 14 13 # Mesh earth 15 14 md = model() 16 md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700.) #700 km resolution mesh 15 16 # Load precomputed mesh 17 with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file: 18 md.mesh = pickle.load(slc_test_mesh_file) 17 19 18 20 # Geometry for the bed, arbitrary thickness of 100 -
issm/trunk-jpl/test/NightlyRun/test2006.py
r26638 r26842 1 1 #Test Name: EarthSlc Dakota Sampling glaciers 2 2 import numpy as np 3 import pickle 3 4 from socket import gethostname 4 5 from dmeth_params_set import * 5 from gmshplanet import *6 6 from gmtmask import * 7 7 from lovenumbers import * … … 18 18 md = model() 19 19 md.cluster = generic('name', gethostname(), 'np', 5) 20 md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700.) #700 km resolution mesh 20 21 # Load precomputed mesh 22 with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file: 23 md.mesh = pickle.load(slc_test_mesh_file) 21 24 22 25 # Geometry for the bed, arbitrary thickness of 100 -
issm/trunk-jpl/test/NightlyRun/test2010.py
r26840 r26842 1 1 #Test Name: MomentOfIntertia 2 2 import numpy as np 3 import pickle 3 4 from socket import gethostname 4 from gmshplanet import *5 5 from gmtmask import * 6 6 from lovenumbers import * … … 12 12 # Mesh earth 13 13 md = model() 14 md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700.) #700 km resolution mesh 14 15 # Load precomputed mesh 16 with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file: 17 md.mesh = pickle.load(slc_test_mesh_file) 15 18 16 19 # Geometry for the bed, arbitrary thickness of 100 -
issm/trunk-jpl/test/NightlyRun/test2101.py
r26358 r26842 1 1 #Test Name: EarthEsa 2 2 #Elastostatic adjustment for an elemental ice unloading 3 import numpy as np 4 import pickle 3 5 from socket import gethostname 4 5 import numpy as np6 7 from gmshplanet import *8 6 from gmtmask import * 9 7 from lovenumbers import * … … 15 13 #mesh earth: 16 14 md = model() 17 md.mesh = gmshplanet('radius', 6.371012 * 1e3, 'resolution', 700) 15 16 # Load precomputed mesh 17 with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file: 18 md.mesh = pickle.load(slc_test_mesh_file) 18 19 19 20 #define load
Note:
See TracChangeset
for help on using the changeset viewer.