Changeset 26842 for issm/trunk-jpl/test/NightlyRun/test2006.py
- Timestamp:
- 01/31/22 17:18:22 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.