- Timestamp:
- 10/18/19 06:52:19 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/boundaryconditions/SetIceShelfBC.py ¶
r24255 r24256 28 28 raise IOError("SetIceShelfBC error message: ice front file '%s' not found." % icefrontfile) 29 29 nodeinsideicefront = ContourToMesh(md.mesh.elements, md.mesh.x, md.mesh.y, icefrontfile, 'node', 2) 30 nodeonicefront = np.logical_and(md.mesh.vertexonboundary, nodeinsideicefront.reshape(- 30 nodeonicefront = np.logical_and(md.mesh.vertexonboundary, nodeinsideicefront.reshape(-1)) 31 31 else: 32 32 nodeonicefront = np.zeros((md.mesh.numberofvertices), bool) … … 68 68 #reshape to rank - 2 if necessary to match spc arrays 69 69 if np.ndim(md.inversion.vx_obs) == 1: 70 md.inversion.vx_obs = md.inversion.vx_obs.reshape(- 70 md.inversion.vx_obs = md.inversion.vx_obs.reshape(-1, ) 71 71 if np.ndim(md.inversion.vy_obs) == 1: 72 md.inversion.vy_obs = md.inversion.vy_obs.reshape(- 72 md.inversion.vy_obs = md.inversion.vy_obs.reshape(-1, ) 73 73 print(" boundary conditions for stressbalance model: spc set as observed velocities") 74 74 md.stressbalance.spcvx[pos] = md.inversion.vx_obs[pos]
Note:
See TracChangeset
for help on using the changeset viewer.