Changeset 26669
- Timestamp:
- 11/26/21 07:05:08 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/stochasticforcing.py
r26667 r26669 108 108 if (checkdefaults): 109 109 md = checkfield(md, 'fieldname', 'stochasticforcing.defaultdimension', 'numel', 1, 'NaN', 1, 'Inf', 1, '>', 0) 110 md = checkfield(md, 'fieldname', 'stochasticforcing.default_id', 'Inf', 1, '>=', 0, '<=', self.defaultdimension, 'size', [md.mesh.numberofelements , 1])110 md = checkfield(md, 'fieldname', 'stochasticforcing.default_id', 'Inf', 1, '>=', 0, '<=', self.defaultdimension, 'size', [md.mesh.numberofelements]) 111 111 return md 112 112 # }}} -
issm/trunk-jpl/test/NightlyRun/test543.py
r26668 r26669 27 27 if md.mesh.elements[ii][vertex] - 1 in iid1: # one vertex in basin 1; NOTE: offset because of 1-based vertex indexing 28 28 idb_tf[ii] = 1 29 if idb asin[ii] == 0: # no vertex was found in basin 129 if idb_tf[ii] == 0: # no vertex was found in basin 1 30 30 for vertex in range(3): 31 31 idb_tf[ii] = 2 … … 37 37 if md.mesh.elements[ii][vertex] - 1 in iid1: # one vertex in basin 1; NOTE: offset because of 1-based vertex indexing 38 38 idb_df[ii] = 1 39 if idb asin[ii] == 0: # no vertex was found in basin 139 if idb_df[ii] == 0: # no vertex was found in basin 1 40 40 for vertex in range(3): 41 41 idb_df[ii] = 2 … … 69 69 covclv[0,0] = 1/10*covclv[0,0] 70 70 covflmlt = 0.05*np.identity(nb_flmlt) 71 #covglob = np.zeros([6,6])72 #covglob[0:2,0:2] = covtf73 #covglob[2:4,2:4] = covclv74 #covglob[4:6,4:6] = covflmlt71 covglob = np.zeros([6,6]) 72 covglob[0:2,0:2] = covtf 73 covglob[2:4,2:4] = covclv 74 covglob[4:6,4:6] = covflmlt 75 75 76 #Hard-coding covariance matrix because python is complaining77 covglob = np.array([[1e-4,0.,0.,0.,0.,0.],[0.,1e-4,0.,0.,0.,0.],[0.,0.,1e-2,0.,0.,0.],[0.,0.,0.,1e-1,0.,0.],[0.,0.,0.,0.,0.05,0.],[0.,0.,0.,0.,0.,0.05]])78 76 testchol = np.linalg.cholesky(covglob) 79 77 print(testchol) … … 82 80 md.stochasticforcing.isstochasticforcing = 1 83 81 md.stochasticforcing.fields = ['FrontalForcingsRignotAutoregression','DefaultCalving','FloatingMeltRate'] 84 md.stochasticforcing.defaul dimension = 285 md.stochasticforcing.default_id = idb_df86 md.stochasticforcing.covariance = covglob # global covariance among- and between-fields87 md.stochasticforcing.randomflag = 0 # determines true/false randomness82 md.stochasticforcing.defaultdimension = 2 83 md.stochasticforcing.default_id = idb_df-1 #NOTE: offset because of 1-based vertex indexing 84 md.stochasticforcing.covariance = covglob # global covariance among- and between-fields 85 md.stochasticforcing.randomflag = 0 # determines true/false randomness 88 86 89 87 md.transient.ismovingfront = 1
Note:
See TracChangeset
for help on using the changeset viewer.