Changeset 21614
- Timestamp:
- 03/16/17 02:50:05 (8 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/runme.py
r21412 r21614 53 53 #Process options 54 54 #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']: 56 56 print("runme warning: benchmark '{}' not supported, defaulting to test 'nightly'.".format(benchmark)) 57 57 benchmark='nightly' -
issm/trunk-jpl/test/NightlyRun/test1601.py
r21411 r21614 18 18 md.initialization.vx[:]=0. 19 19 md.initialization.vy[:]=0. 20 md.initialization.vel=np.zeros _like(md.initialization.vx)20 md.initialization.vel=np.zeros((md.mesh.numberofvertices)) 21 21 22 22 md.cluster=generic('name',gethostname(),'np',2) … … 30 30 md.mesh.y=np.sin(theta)*x+np.cos(theta)*y 31 31 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)) 32 rotation_array=np.array([np.cos(theta),np.sin(theta),0]) 33 md.stressbalance.referential[:,0:3]=(np.tile(rotation_array,(md.mesh.numberofvertices,1))) 34 md.stressbalance.referential[:,3: ]=np.tile([0,0,1],(md.mesh.numberofvertices,1)) 34 35 md=solve(md,'Stressbalance') 35 36 vel1=md.results.StressbalanceSolution.Vel … … 39 40 40 41 #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]42 pos=np.where(np.logical_or(x==0.,x==1000000.))[0] 42 43 md.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) ))44 md.stressbalance.referential[pos,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(len(pos),1)) 45 md.stressbalance.referential[pos,3: ]=np.tile([0,0,1],(len(pos),1)) 45 46 md=solve(md,'Stressbalance') 46 47 vel2=md.results.StressbalanceSolution.Vel … … 52 53 field_names =['vel1','vel2'] 53 54 field_tolerances=[1e-11,1e-11] 54 field_values=[\ 55 vel1, \ 56 vel2, \ 57 ] 55 field_values=[vel1,vel2] -
issm/trunk-jpl/test/NightlyRun/test1602.py
r21411 r21614 31 31 md.mesh.y=np.sin(theta)*x+np.cos(theta)*y 32 32 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 ))33 md.stressbalance.referential[:,0:3]=np.tile([np.cos(theta),np.sin(theta),0],(md.mesh.numberofvertices,1)) 34 md.stressbalance.referential[:,3: ]=np.tile([0,0,1],(md.mesh.numberofvertices,1)) 35 35 md=solve(md,'Stressbalance') 36 36 vel1=md.results.StressbalanceSolution.Vel … … 42 42 field_names =['vel1'] 43 43 field_tolerances=[1e-9] 44 field_values=[\ 45 vel1, \ 46 ] 44 field_values=[vel1] -
issm/trunk-jpl/test/NightlyRun/test201.py
r21408 r21614 20 20 field_names =['Vx','Vy','Vel','Pressure'] 21 21 field_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 ] 22 field_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.