Changeset 20910
- Timestamp:
- 07/14/16 10:07:53 (9 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/boundaryconditions/SetIceShelfBC.py
r19527 r20910 26 26 if not os.path.exists(icefrontfile): 27 27 raise IOError("SetIceShelfBC error message: ice front file '%s' not found." % icefrontfile) 28 [nodeinsideicefront,dum]=ContourToMesh(md.mesh.elements,md.mesh.x,md.mesh.y,icefrontfile,'node',2)28 nodeinsideicefront=ContourToMesh(md.mesh.elements,md.mesh.x,md.mesh.y,icefrontfile,'node',2) 29 29 nodeonicefront=numpy.logical_and(md.mesh.vertexonboundary,nodeinsideicefront.reshape(-1)) 30 30 else: -
issm/trunk-jpl/src/m/boundaryconditions/SetMarineIceSheetBC.py
r19527 r20910 28 28 if not os.path.exists(icefrontfile): 29 29 raise IOError("SetMarineIceSheetBC error message: ice front file '%s' not found." % icefrontfile) 30 [incontour,dum]=ContourToMesh(md.mesh.elements,md.mesh.x,md.mesh.y,icefrontfile,'node',2)30 incontour=ContourToMesh(md.mesh.elements,md.mesh.x,md.mesh.y,icefrontfile,'node',2) 31 31 vertexonicefront=numpy.logical_and(md.mesh.vertexonboundary,incontour.reshape(-1)) 32 32 else: -
issm/trunk-jpl/src/m/classes/adinversion.py
r20896 r20910 73 73 return 74 74 75 if not IssmConfig('_HAVE_M1QN3_') :75 if not IssmConfig('_HAVE_M1QN3_')[0]: 76 76 md = checkmessage(md,['M1QN3 has not been installed, ISSM needs to be reconfigured and recompiled with AD']) 77 77 -
issm/trunk-jpl/src/m/classes/dependent.py
r20002 r20910 44 44 #process the file and retrieve segments 45 45 mesh=options.getfieldvalue('mesh') 46 self.segments=MeshProfileIntersection(mesh.elements,mesh.x,mesh.y,self.exp) 46 self.segments=MeshProfileIntersection(mesh.elements,mesh.x,mesh.y,self.exp)[0] 47 47 # }}} 48 48 def __repr__(self): # {{{ -
issm/trunk-jpl/src/m/classes/model.py
r20785 r20910 395 395 #recreate segments 396 396 if md1.mesh.__class__.__name__=='mesh2d': 397 [md2.mesh.vertexconnectivity]=NodeConnectivity(md2.mesh.elements,md2.mesh.numberofvertices)398 [md2.mesh.elementconnectivity]=ElementConnectivity(md2.mesh.elements,md2.mesh.vertexconnectivity)397 md2.mesh.vertexconnectivity=NodeConnectivity(md2.mesh.elements,md2.mesh.numberofvertices)[0] 398 md2.mesh.elementconnectivity=ElementConnectivity(md2.mesh.elements,md2.mesh.vertexconnectivity)[0] 399 399 md2.mesh.segments=contourenvelope(md2) 400 400 md2.mesh.vertexonboundary=numpy.zeros(numberofvertices2,bool) … … 402 402 else: 403 403 #First do the connectivity for the contourenvelope in 2d 404 [md2.mesh.vertexconnectivity]=NodeConnectivity(md2.mesh.elements2d,md2.mesh.numberofvertices2d)405 [md2.mesh.elementconnectivity]=ElementConnectivity(md2.mesh.elements2d,md2.mesh.vertexconnectivity)404 md2.mesh.vertexconnectivity=NodeConnectivity(md2.mesh.elements2d,md2.mesh.numberofvertices2d)[0] 405 md2.mesh.elementconnectivity=ElementConnectivity(md2.mesh.elements2d,md2.mesh.vertexconnectivity)[0] 406 406 segments=contourenvelope(md2) 407 407 md2.mesh.vertexonboundary=numpy.zeros(numberofvertices2/md2.mesh.numberoflayers,bool) … … 409 409 md2.mesh.vertexonboundary=numpy.tile(md2.mesh.vertexonboundary,md2.mesh.numberoflayers) 410 410 #Then do it for 3d as usual 411 [md2.mesh.vertexconnectivity]=NodeConnectivity(md2.mesh.elements,md2.mesh.numberofvertices)412 [md2.mesh.elementconnectivity]=ElementConnectivity(md2.mesh.elements,md2.mesh.vertexconnectivity)411 md2.mesh.vertexconnectivity=NodeConnectivity(md2.mesh.elements,md2.mesh.numberofvertices)[0] 412 md2.mesh.elementconnectivity=ElementConnectivity(md2.mesh.elements,md2.mesh.vertexconnectivity)[0] 413 413 414 414 #Boundary conditions: Dirichlets on new boundary -
issm/trunk-jpl/src/m/classes/taoinversion.py
r20896 r20910 90 90 91 91 #minimization algorithm 92 PETSCMAJOR = IssmConfig('_PETSC_MAJOR_') 93 PETSCMINOR = IssmConfig('_PETSC_MINOR_') 92 PETSCMAJOR = IssmConfig('_PETSC_MAJOR_')[0] 93 PETSCMINOR = IssmConfig('_PETSC_MINOR_')[0] 94 94 if(PETSCMAJOR>3 or (PETSCMAJOR==3 and PETSCMINOR>=5)): 95 95 self.algorithm = 'blmvm'; … … 122 122 if not self.control: 123 123 return md 124 if not IssmConfig('_HAVE_TAO_') :124 if not IssmConfig('_HAVE_TAO_')[0]: 125 125 md = checkmessage(md,['TAO has not been installed, ISSM needs to be reconfigured and recompiled with TAO']) 126 126 … … 141 141 142 142 143 PETSCMAJOR = IssmConfig('_PETSC_MAJOR_') 144 PETSCMINOR = IssmConfig('_PETSC_MINOR_') 143 PETSCMAJOR = IssmConfig('_PETSC_MAJOR_')[0] 144 PETSCMINOR = IssmConfig('_PETSC_MINOR_')[0] 145 145 if(PETSCMAJOR>3 or (PETSCMAJOR==3 and PETSCMINOR>=5)): 146 146 md = checkfield(md,'fieldname','inversion.algorithm','values',{'blmvm','cg','lmvm'}) -
issm/trunk-jpl/src/m/classes/toolkits.py
r20045 r20910 48 48 49 49 #Convert analysis from enum to string 50 [analysis]=EnumToString(analysis)50 analysis=EnumToString(analysis)[0] 51 51 52 52 #Create dynamic property if property does not exist yet -
issm/trunk-jpl/src/m/geometry/FlagElements.py
r17480 r20910 47 47 else: 48 48 #ok, flag elements 49 [flag,dum]=ContourToMesh(md.mesh.elements[:,0:3].copy(),md.mesh.x,md.mesh.y,region,'element',1)49 flag=ContourToMesh(md.mesh.elements[:,0:3].copy(),md.mesh.x,md.mesh.y,region,'element',1) 50 50 flag=flag.astype(bool) 51 51 -
issm/trunk-jpl/src/m/interp/SectionValues.py
r19865 r20910 127 127 128 128 #Interpolation of data on specified points 129 data_interp=InterpFromMeshToMesh3d(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.z,data,X3,Y3,Z3,npy.nan) 129 data_interp=InterpFromMeshToMesh3d(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.z,data,X3,Y3,Z3,npy.nan)[0] 130 130 131 131 #build outputs -
issm/trunk-jpl/src/m/mesh/bamg.py
r20907 r20910 93 93 #Checks that all holes are INSIDE the principle domain outline 94 94 if i: 95 flags=ContourToNodes(domaini['x'],domaini['y'],domainfile,0) 95 flags=ContourToNodes(domaini['x'],domaini['y'],domainfile,0)[0] 96 96 if numpy.any(numpy.logical_not(flags)): 97 97 raise RuntimeError("bamg error message: All holes should be strictly inside the principal domain") … … 119 119 120 120 #detect whether all points of the rift are inside the domain 121 flags=ContourToNodes(rifti['x'],rifti['y'],domain[0],0) 121 flags=ContourToNodes(rifti['x'],rifti['y'],domain[0],0)[0] 122 122 if numpy.all(numpy.logical_not(flags)): 123 123 raise RuntimeError("one rift has all its points outside of the domain outline") … … 231 231 232 232 #only keep those inside 233 flags=ContourToNodes(track[:,0],track[:,1],domainfile,0) 233 flags=ContourToNodes(track[:,0],track[:,1],domainfile,0)[0] 234 234 track=track[numpy.nonzero(flags),:] 235 235 … … 251 251 252 252 #only keep those inside 253 flags=ContourToNodes(requiredvertices[:,0],requiredvertices[:,1],domainfile,0) 253 flags=ContourToNodes(requiredvertices[:,0],requiredvertices[:,1],domainfile,0)[0] 254 254 requiredvertices=requiredvertices[numpy.nonzero(flags)[0],:] 255 255 #Add all points to bamg_geometry … … 313 313 314 314 #call Bamg 315 [bamgmesh_out,bamggeom_out]=BamgMesher(bamg_mesh.__dict__,bamg_geometry.__dict__,bamg_options)315 bamgmesh_out,bamggeom_out=BamgMesher(bamg_mesh.__dict__,bamg_geometry.__dict__,bamg_options) 316 316 317 317 # plug results onto model -
issm/trunk-jpl/src/m/mesh/rifts/meshprocessrifts.py
r17558 r20910 22 22 23 23 #Call MEX file 24 [md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.segments,md.mesh.segmentmarkers,md.rifts.riftstruct]=TriMeshProcessRifts(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.segments,md.mesh.segmentmarkers)24 md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.segments,md.mesh.segmentmarkers,md.rifts.riftstruct=TriMeshProcessRifts(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.segments,md.mesh.segmentmarkers) 25 25 md.mesh.elements=md.mesh.elements.astype(int) 26 26 md.mesh.x=md.mesh.x.reshape(-1) … … 44 44 45 45 #In case we have rifts that open up the domain outline, we need to open them: 46 [flags,dum]=ContourToMesh(md.mesh.elements,md.mesh.x,md.mesh.y,domainoutline,'node',0)46 flags=ContourToMesh(md.mesh.elements,md.mesh.x,md.mesh.y,domainoutline,'node',0) 47 47 found=0 48 48 for rift in md.rifts.riftstruct: -
issm/trunk-jpl/src/m/mesh/squaremesh.py
r18005 r20910 71 71 72 72 #Now, build the connectivity tables for this mesh. 73 [md.mesh.vertexconnectivity]=NodeConnectivity(md.mesh.elements,md.mesh.numberofvertices)74 [md.mesh.elementconnectivity]=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity)73 md.mesh.vertexconnectivity=NodeConnectivity(md.mesh.elements,md.mesh.numberofvertices)[0] 74 md.mesh.elementconnectivity=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity)[0] 75 75 76 76 return md -
issm/trunk-jpl/src/m/mesh/triangle.py
r17558 r20910 45 45 #Mesh using TriMesh 46 46 md.mesh=mesh2d() 47 [md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.segments,md.mesh.segmentmarkers]=TriMesh(domainname,riftname,area)47 md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.segments,md.mesh.segmentmarkers=TriMesh(domainname,riftname,area) 48 48 md.mesh.elements=md.mesh.elements.astype(int) 49 49 md.mesh.segments=md.mesh.segments.astype(int) … … 57 57 58 58 #Now, build the connectivity tables for this mesh. 59 [md.mesh.vertexconnectivity] = NodeConnectivity(md.mesh.elements, md.mesh.numberofvertices)60 [md.mesh.elementconnectivity] = ElementConnectivity(md.mesh.elements, md.mesh.vertexconnectivity)59 md.mesh.vertexconnectivity = NodeConnectivity(md.mesh.elements, md.mesh.numberofvertices)[0] 60 md.mesh.elementconnectivity = ElementConnectivity(md.mesh.elements, md.mesh.vertexconnectivity)[0] 61 61 62 62 return md -
issm/trunk-jpl/src/m/parameterization/contourenvelope.py
r17687 r20910 41 41 #Computing connectivity 42 42 if numpy.size(md.mesh.vertexconnectivity,axis=0)!=md.mesh.numberofvertices and numpy.size(md.mesh.vertexconnectivity,axis=0)!=md.mesh.numberofvertices2d: 43 [md.mesh.vertexconnectivity]=NodeConnectivity(md.mesh.elements,md.mesh.numberofvertices)43 md.mesh.vertexconnectivity=NodeConnectivity(md.mesh.elements,md.mesh.numberofvertices)[0] 44 44 if numpy.size(md.mesh.elementconnectivity,axis=0)!=md.mesh.numberofelements and numpy.size(md.mesh.elementconnectivity,axis=0)!=md.mesh.numberofelements2d: 45 [md.mesh.elementconnectivity]=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity)45 md.mesh.elementconnectivity=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity)[0] 46 46 47 47 #get nodes inside profile -
issm/trunk-jpl/src/m/parameterization/setmask.py
r17868 r20910 64 64 raise IOError("setmask error message: ice domain file '%s' not found." % icedomainfile) 65 65 #use contourtomesh to set ice values inside ice domain 66 [vertexinsideicedomain,elementinsideicedomain]=ContourToMesh(elements,x,y,icedomainfile,'node',1)66 vertexinsideicedomain,elementinsideicedomain=ContourToMesh(elements,x,y,icedomainfile,'node',1) 67 67 md.mask.ice_levelset[numpy.nonzero(vertexinsideicedomain)[0]] = -1. 68 68 else: -
issm/trunk-jpl/src/m/solve/loadresultsfromdisk.py
r20900 r20910 60 60 61 61 if not isinstance(md.private.solution,(str,unicode)): 62 [md.private.solution]=EnumToString(md.private.solution)62 md.private.solution=EnumToString(md.private.solution)[0] 63 63 md=postqmu(md) 64 64 os.chdir('..') -
issm/trunk-jpl/src/m/solve/solve.py
r20120 r20910 87 87 if solutionenum == FlaimSolutionEnum(): 88 88 md=flaim_sol(md,options) 89 [md.private.solution]=EnumToString(solutionenum)89 md.private.solution=EnumToString(solutionenum)[0] 90 90 return md 91 91
Note:
See TracChangeset
for help on using the changeset viewer.