Changeset 22271


Ignore:
Timestamp:
11/20/17 17:59:06 (7 years ago)
Author:
kruegern
Message:

FIX: fixed tests 119 and 514, removed 703 as it is incomplete

Location:
issm/trunk-jpl
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/bamg.py

    r22267 r22271  
    11import os.path
    22import numpy as  np
     3from mesh2d import *
    34from mesh2dvertical import *
     5from mesh3dsurface import *
    46from collections import OrderedDict
    57from pairoptions import pairoptions
     
    9294
    9395                        #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]):
    9597                                raise RuntimeError("bamg error message: all contours provided in ''domain'' should be closed")
    9698
    9799                        #Checks that all holes are INSIDE the principle domain outline
    98100                        if i:
    99                                 flags=ContourToNodes(domaini.x,domaini.y,domainfile,0)[0]
     101                                flags=ContourToNodes(domaini['x'],domaini['y'],domainfile,0)[0]
    100102                                if np.any(np.logical_not(flags)):
    101103                                        raise RuntimeError("bamg error message: All holes should be strictly inside the principal domain")
    102104
    103105                        #Add all points to bamg_geometry
    104                         nods=domaini.nods-1    #the domain are closed 0=end
    105                         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))
    106108                        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))
    107109                        if i:
Note: See TracChangeset for help on using the changeset viewer.