Changeset 22272


Ignore:
Timestamp:
11/22/17 13:14:23 (7 years ago)
Author:
kruegern
Message:

ADD: added/fixed python tests 1108, 1109, and 1110. Made a minor change to src/m/solve/WriteData.py to match it with the .m version. If this caused a problem it should have been fixed immediately (see scale option, data[0:-2,:], -2 vs -1).

Location:
issm/trunk-jpl
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/solve/WriteData.py

    r22267 r22272  
    4545                scale = options.getfieldvalue('scale')
    4646                if np.size(data) > 1 and np.ndim(data) > 1 and np.size(data,0)==timeserieslength:
    47                         data[0:-1,:] = scale*data[0:-1,:]
     47                        data[0:-2,:] = scale*data[0:-2,:]
    4848                else:
    4949                        data  = scale*data
  • issm/trunk-jpl/test/NightlyRun/test1108.py

    r21411 r22272  
    88from setflowequation import *
    99from solve import *
     10from squaremesh import *
    1011
    1112from PythonFuncs import *
     
    1617"""
    1718
     19#L_list=[5000.,10000.,20000.,40000.,80000.,160000.]
    1820L_list=[80000.]
    1921results=[]
     
    3537        md.stressbalance.spcvz=np.nan*np.ones((md.mesh.numberofvertices))
    3638       
    37         pos=np.nonzero(logical_and.reduce_n(md.mesh.vertexonbase,np.logical_or.reduce(md.mesh.x==0.,md.mesh.x==np.max(md.mesh.x)),np.logical_or.reduce(md.mesh.y==0.,md.mesh.y==np.max(md.mesh.y))))
     39        maxx = max(md.mesh.x)
     40        maxy = max(md.mesh.y)
     41        posA = np.where(md.mesh.vertexonbase)
     42        posB = np.unique(np.concatenate((np.where(md.mesh.x==0.), np.where(md.mesh.x==maxx))))
     43        posC = np.unique(np.concatenate((np.where(md.mesh.y==0.), np.where(md.mesh.y==maxy))))
     44        pos = np.intersect1d(np.intersect1d(posA,posB),posC)
     45
    3846        md.stressbalance.spcvx[pos]=0.
    3947        md.stressbalance.spcvy[pos]=0.
     
    4452        posx2=np.nonzero(md.mesh.x==np.max(md.mesh.x))[0]
    4553
    46         posy=np.nonzero(logical_and.reduce_n(md.mesh.y==0.,md.mesh.x!=0.,md.mesh.x!=np.max(md.mesh.x)))[0]    #Don't take the same nodes two times
    47         posy2=np.nonzero(logical_and.reduce_n(md.mesh.y==np.max(md.mesh.y),md.mesh.x!=0.,md.mesh.x!=np.max(md.mesh.x)))[0]
     54        posy=np.intersect1d(np.intersect1d(np.where(md.mesh.y==0.),np.where(md.mesh.x!=0.)),np.where(md.mesh.x!=np.max(md.mesh.x)))[0]    #Don't take the same nodes two times
     55        posy2=np.intersect1d(np.intersect1d(np.where(md.mesh.y==np.max(md.mesh.y)),np.where(md.mesh.x!=0.)),np.where(md.mesh.x!=np.max(md.mesh.x)))[0]
    4856
    4957        md.stressbalance.vertex_pairing=np.vstack((np.hstack((posx.reshape(-1,1)+1,posx2.reshape(-1,1)+1)),np.hstack((posy.reshape(-1,1)+1,posy2.reshape(-1,1)+1))))
Note: See TracChangeset for help on using the changeset viewer.