Changeset 22216
- Timestamp:
- 11/02/17 16:07:10 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/mesh/bamg.py
r21864 r22216 72 72 bamg_mesh=bamgmesh() 73 73 74 subdomain_ref = 1 75 hole_ref = 1 76 74 77 # Bamg Geometry parameters {{{ 75 78 if options.exist('domain'): … … 99 102 bamg_geometry.Vertices=np.vstack((bamg_geometry.Vertices,np.vstack((domaini['x'][0:nods],domaini['y'][0:nods],np.ones((nods)))).T)) 100 103 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)) 101 if i: 102 bamg_geometry.SubDomains=np.vstack((bamg_geometry.SubDomains,[2,count+1,1,1])) 104 if i: 105 bamg_geometry.SubDomains=np.vstack((bamg_geometry.SubDomains,[2,count+1,1,-subdomain_ref])) 106 subdomain_ref = subdomain_ref+1; 107 else: 108 bamg_geometry.SubDomains=np.vstack((bamg_geometry.SubDomains,[2,count+1,1,0])) 103 109 104 110 # bamg_geometry.Vertices=np.hstack((bamg_geometry.Vertices,np.vstack((domaini['x'][0:nods].reshape(-1),domaini['y'][0:nods].reshape(-1),np.ones((nods)))))) -
issm/trunk-jpl/test/NightlyRun/test514.py
r21877 r22216 58 58 field_names =['x1','y1','x2','y2','x3','y3','x4','y4','x5','y5','x6','y6','x7','y7'] 59 59 field_tolerances = [2e-10,7e-10,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13] 60 field_values=[x1, y1, y2, y2, y3, y3, y4, y4, y5, y5, y6, y6, y7, y7]60 field_values=[x1, y1,x2, y2, x3, y3, x4, y4, x5, y5, x6, y6, x7, y7]
Note:
See TracChangeset
for help on using the changeset viewer.