Changeset 22271
- Timestamp:
- 11/20/17 17:59:06 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/mesh/bamg.py
r22267 r22271 1 1 import os.path 2 2 import numpy as np 3 from mesh2d import * 3 4 from mesh2dvertical import * 5 from mesh3dsurface import * 4 6 from collections import OrderedDict 5 7 from pairoptions import pairoptions … … 92 94 93 95 #Check that the domain is closed 94 if (domaini .x[0]!=domaini.x[-1] or domaini.y[0]!=domaini.y[-1]):96 if (domaini['x'][0]!=domaini['x'][-1] or domaini['y'][0]!=domaini['y'][-1]): 95 97 raise RuntimeError("bamg error message: all contours provided in ''domain'' should be closed") 96 98 97 99 #Checks that all holes are INSIDE the principle domain outline 98 100 if i: 99 flags=ContourToNodes(domaini .x,domaini.y,domainfile,0)[0]101 flags=ContourToNodes(domaini['x'],domaini['y'],domainfile,0)[0] 100 102 if np.any(np.logical_not(flags)): 101 103 raise RuntimeError("bamg error message: All holes should be strictly inside the principal domain") 102 104 103 105 #Add all points to bamg_geometry 104 nods=domaini .nods-1 #the domain are closed 0=end105 bamg_geometry.Vertices=np.vstack((bamg_geometry.Vertices,np.vstack((domaini .x[0:nods],domaini.y[0:nods],np.ones((nods)))).T))106 nods=domaini['nods']-1 #the domain are closed 0=end 107 bamg_geometry.Vertices=np.vstack((bamg_geometry.Vertices,np.vstack((domaini['x'][0:nods],domaini['y'][0:nods],np.ones((nods)))).T)) 106 108 bamg_geometry.Edges =np.vstack((bamg_geometry.Edges,np.vstack((np.arange(count+1,count+nods+1),np.hstack((np.arange(count+2,count+nods+1),count+1)),1.*np.ones((nods)))).T)) 107 109 if i:
Note:
See TracChangeset
for help on using the changeset viewer.