Changeset 21614


Ignore:
Timestamp:
03/16/17 02:50:05 (8 years ago)
Author:
bdef
Message:

BUG: fixing tests 1601, 1602 and adding referential in the python runme possibilities

Location:
issm/trunk-jpl/test/NightlyRun
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/runme.py

    r21412 r21614  
    5353        #Process options
    5454        #GET benchmark {{{
    55         if not benchmark in ['all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc','slr']:
     55        if not benchmark in ['all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc','slr','referential']:
    5656                print("runme warning: benchmark '{}' not supported, defaulting to test 'nightly'.".format(benchmark))
    5757                benchmark='nightly'
  • issm/trunk-jpl/test/NightlyRun/test1601.py

    r21411 r21614  
    1818md.initialization.vx[:]=0.
    1919md.initialization.vy[:]=0.
    20 md.initialization.vel=np.zeros_like(md.initialization.vx)
     20md.initialization.vel=np.zeros((md.mesh.numberofvertices))
    2121
    2222md.cluster=generic('name',gethostname(),'np',2)
     
    3030md.mesh.y=np.sin(theta)*x+np.cos(theta)*y
    3131
    32 md.stressbalance.referential[:,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(md.mesh.numberofvertices))
    33 md.stressbalance.referential[:,3: ]=np.tile([0,0,1],(md.mesh.numberofvertices))
     32rotation_array=np.array([np.cos(theta),np.sin(theta),0])
     33md.stressbalance.referential[:,0:3]=(np.tile(rotation_array,(md.mesh.numberofvertices,1)))
     34md.stressbalance.referential[:,3: ]=np.tile([0,0,1],(md.mesh.numberofvertices,1))
    3435md=solve(md,'Stressbalance')
    3536vel1=md.results.StressbalanceSolution.Vel
     
    3940
    4041#Now, put CS back to normal except on the side where the spc are applied
    41 pos=np.nonzero(np.logical_or.reduce(x==0.,x==1000000.))[0]
     42pos=np.where(np.logical_or(x==0.,x==1000000.))[0]
    4243md.stressbalance.referential[:]=np.nan
    43 md.stressbalance.referential[pos,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(len(pos)))
    44 md.stressbalance.referential[pos,3: ]=np.tile([0,0,1],(len(pos)))
     44md.stressbalance.referential[pos,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(len(pos),1))
     45md.stressbalance.referential[pos,3: ]=np.tile([0,0,1],(len(pos),1))
    4546md=solve(md,'Stressbalance')
    4647vel2=md.results.StressbalanceSolution.Vel
     
    5253field_names     =['vel1','vel2']
    5354field_tolerances=[1e-11,1e-11]
    54 field_values=[\
    55         vel1, \
    56         vel2, \
    57         ]
     55field_values=[vel1,vel2]
  • issm/trunk-jpl/test/NightlyRun/test1602.py

    r21411 r21614  
    3131md.mesh.y=np.sin(theta)*x+np.cos(theta)*y
    3232
    33 md.stressbalance.referential[:,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(md.mesh.numberofvertices))
    34 md.stressbalance.referential[:,3: ]=np.tile([0,0,1],(md.mesh.numberofvertices))
     33md.stressbalance.referential[:,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(md.mesh.numberofvertices,1))
     34md.stressbalance.referential[:,3: ]=np.tile([0,0,1],(md.mesh.numberofvertices,1))
    3535md=solve(md,'Stressbalance')
    3636vel1=md.results.StressbalanceSolution.Vel
     
    4242field_names     =['vel1']
    4343field_tolerances=[1e-9]
    44 field_values=[\
    45         vel1, \
    46         ]
     44field_values=[vel1]
  • issm/trunk-jpl/test/NightlyRun/test201.py

    r21408 r21614  
    2020field_names     =['Vx','Vy','Vel','Pressure']
    2121field_tolerances=[1e-13,1e-13,1e-13,1e-13]
    22 field_values=[\
    23         md.results.StressbalanceSolution.Vx,\
    24         md.results.StressbalanceSolution.Vy,\
    25         md.results.StressbalanceSolution.Vel,\
    26         md.results.StressbalanceSolution.Pressure,\
    27         ]
     22field_values=[md.results.StressbalanceSolution.Vx,
     23                                                        md.results.StressbalanceSolution.Vy,
     24                                                        md.results.StressbalanceSolution.Vel,
     25                                                        md.results.StressbalanceSolution.Pressure]
Note: See TracChangeset for help on using the changeset viewer.