Changeset 22216


Ignore:
Timestamp:
11/02/17 16:07:10 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing python

Location:
issm/trunk-jpl
Files:
2 edited

Legend:

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

    r21864 r22216  
    7272        bamg_mesh=bamgmesh()
    7373
     74        subdomain_ref = 1
     75        hole_ref = 1
     76
    7477        # Bamg Geometry parameters {{{
    7578        if options.exist('domain'):
     
    99102                        bamg_geometry.Vertices=np.vstack((bamg_geometry.Vertices,np.vstack((domaini['x'][0:nods],domaini['y'][0:nods],np.ones((nods)))).T))
    100103                        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]))
    103109
    104110                        # 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  
    5858field_names     =['x1','y1','x2','y2','x3','y3','x4','y4','x5','y5','x6','y6','x7','y7']
    5959field_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]
     60field_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.