Changeset 22272 for issm/trunk-jpl/test/NightlyRun/test1108.py
- Timestamp:
- 11/22/17 13:14:23 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.