Changeset 13238
- Timestamp:
- 09/04/12 14:35:50 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/Par/SquareShelfConstrained.py
r13070 r13238 1 import os.path 2 import inspect 3 import netCDF4 1 4 from numpy import * 2 5 from verbose import * 3 import scipy.io as matio4 6 from InterpFromMeshToMesh2d import InterpFromMeshToMesh2d 5 from paterson import 7 from paterson import * 6 8 from SetIceShelfBC import * 7 import inspect8 import os.path9 9 10 10 #Start defining model parameters here … … 16 16 17 17 md.geometry.thickness = hmax+(hmin-hmax)*(md.mesh.y-ymin)/(ymax-ymin) 18 md.geometry.bed=-md.materials.rho_ice/md.materials.rho_water*md.geometry.thickness ;18 md.geometry.bed=-md.materials.rho_ice/md.materials.rho_water*md.geometry.thickness 19 19 md.geometry.surface = md.geometry.bed+md.geometry.thickness 20 20 21 21 #Initial velocity 22 mat=matio.loadmat('../Data/SquareShelfConstrained.data')22 f = netCDF4.Dataset('../Data/SquareShelfConstrained.nc','r') 23 23 #Reshape as Rank-1 arrays 24 x=reshape( mat['x'],(-1))25 y=reshape( mat['y'],(-1))26 vx= mat['vx']27 vy= mat['vy']24 x=reshape(f.variables['x'][:],(-1)) 25 y=reshape(f.variables['y'][:],(-1)) 26 vx=f.variables['vx'][:] 27 vy=f.variables['vy'][:] 28 28 #deal with 'F' oriented matlab matrices! 29 index= mat['index'].astype(float)29 index=f.variables['index'][:].astype(float) 30 30 index=reshape(index.T,(len(index),3),order='F') 31 f.close() 31 32 32 33 [md.initialization.vx] = InterpFromMeshToMesh2d(index, x, y, vx, md.mesh.x, md.mesh.y)
Note:
See TracChangeset
for help on using the changeset viewer.