Changeset 22272
- Timestamp:
- 11/22/17 13:14:23 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/WriteData.py
r22267 r22272 45 45 scale = options.getfieldvalue('scale') 46 46 if np.size(data) > 1 and np.ndim(data) > 1 and np.size(data,0)==timeserieslength: 47 data[0:- 1,:] = scale*data[0:-1,:]47 data[0:-2,:] = scale*data[0:-2,:] 48 48 else: 49 49 data = scale*data -
issm/trunk-jpl/test/NightlyRun/test1108.py
r21411 r22272 8 8 from setflowequation import * 9 9 from solve import * 10 from squaremesh import * 10 11 11 12 from PythonFuncs import * … … 16 17 """ 17 18 19 #L_list=[5000.,10000.,20000.,40000.,80000.,160000.] 18 20 L_list=[80000.] 19 21 results=[] … … 35 37 md.stressbalance.spcvz=np.nan*np.ones((md.mesh.numberofvertices)) 36 38 37 pos=np.nonzero(logical_and.reduce_n(md.mesh.vertexonbase,np.logical_or.reduce(md.mesh.x==0.,md.mesh.x==np.max(md.mesh.x)),np.logical_or.reduce(md.mesh.y==0.,md.mesh.y==np.max(md.mesh.y)))) 39 maxx = max(md.mesh.x) 40 maxy = max(md.mesh.y) 41 posA = np.where(md.mesh.vertexonbase) 42 posB = np.unique(np.concatenate((np.where(md.mesh.x==0.), np.where(md.mesh.x==maxx)))) 43 posC = np.unique(np.concatenate((np.where(md.mesh.y==0.), np.where(md.mesh.y==maxy)))) 44 pos = np.intersect1d(np.intersect1d(posA,posB),posC) 45 38 46 md.stressbalance.spcvx[pos]=0. 39 47 md.stressbalance.spcvy[pos]=0. … … 44 52 posx2=np.nonzero(md.mesh.x==np.max(md.mesh.x))[0] 45 53 46 posy=np. nonzero(logical_and.reduce_n(md.mesh.y==0.,md.mesh.x!=0.,md.mesh.x!=np.max(md.mesh.x)))[0] #Don't take the same nodes two times47 posy2=np. nonzero(logical_and.reduce_n(md.mesh.y==np.max(md.mesh.y),md.mesh.x!=0.,md.mesh.x!=np.max(md.mesh.x)))[0]54 posy=np.intersect1d(np.intersect1d(np.where(md.mesh.y==0.),np.where(md.mesh.x!=0.)),np.where(md.mesh.x!=np.max(md.mesh.x)))[0] #Don't take the same nodes two times 55 posy2=np.intersect1d(np.intersect1d(np.where(md.mesh.y==np.max(md.mesh.y)),np.where(md.mesh.x!=0.)),np.where(md.mesh.x!=np.max(md.mesh.x)))[0] 48 56 49 57 md.stressbalance.vertex_pairing=np.vstack((np.hstack((posx.reshape(-1,1)+1,posx2.reshape(-1,1)+1)),np.hstack((posy.reshape(-1,1)+1,posy2.reshape(-1,1)+1))))
Note:
See TracChangeset
for help on using the changeset viewer.