Changeset 13238


Ignore:
Timestamp:
09/04/12 14:35:50 (13 years ago)
Author:
jschierm
Message:

CHG: Changed python par file to use nc data file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/Par/SquareShelfConstrained.py

    r13070 r13238  
     1import os.path
     2import inspect
     3import netCDF4
    14from numpy import *
    25from verbose import *
    3 import scipy.io as matio
    46from InterpFromMeshToMesh2d import InterpFromMeshToMesh2d
    5 from paterson import  *
     7from paterson import *
    68from SetIceShelfBC import *
    7 import inspect
    8 import os.path
    99
    1010#Start defining model parameters here
     
    1616
    1717md.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;
     18md.geometry.bed=-md.materials.rho_ice/md.materials.rho_water*md.geometry.thickness
    1919md.geometry.surface = md.geometry.bed+md.geometry.thickness
    2020
    2121#Initial velocity
    22 mat=matio.loadmat('../Data/SquareShelfConstrained.data')
     22f = netCDF4.Dataset('../Data/SquareShelfConstrained.nc','r')
    2323#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']
     24x=reshape(f.variables['x'][:],(-1))
     25y=reshape(f.variables['y'][:],(-1))
     26vx=f.variables['vx'][:]
     27vy=f.variables['vy'][:]
    2828#deal with 'F' oriented matlab matrices!
    29 index=mat['index'].astype(float)
     29index=f.variables['index'][:].astype(float)
    3030index=reshape(index.T,(len(index),3),order='F')
     31f.close()
    3132
    3233[md.initialization.vx] = InterpFromMeshToMesh2d(index, x, y, vx, md.mesh.x, md.mesh.y)
Note: See TracChangeset for help on using the changeset viewer.