Changeset 17462


Ignore:
Timestamp:
03/18/14 14:01:03 (11 years ago)
Author:
jbondzio
Message:

CHG: relaxing tolerances, adding slope in y direction for geometry

Location:
issm/trunk-jpl/test
Files:
9 edited

Legend:

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

    r17451 r17462  
    3131                'Vx2','Vy2','Vel2','Pressure2','Thickness2','Surface2','MaskIceLevelset2',\
    3232                'Vx3','Vy3','Vel3','Pressure3','Thickness3','Surface3','MaskIceLevelset3']
    33 field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,\
    34                 1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,\
    35                 1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13]
     33field_tolerances=[1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,\
     34                1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,\
     35                1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12]
    3636field_values=[\
    3737        md.results.TransientSolution[0].Vx,\
  • issm/trunk-jpl/test/NightlyRun/test802.py

    r17451 r17462  
    3434                'Vx2','Vy2','Vel2','Pressure2','Thickness2','Surface2','MaskIceLevelset2','Temperature2',\
    3535                'Vx3','Vy3','Vel3','Pressure3','Thickness3','Surface3','MaskIceLevelset3','Temperature3']
    36 field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,\
     36field_tolerances=[1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,\
    3737                1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,\
    3838                1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10]
  • issm/trunk-jpl/test/NightlyRun/test805.py

    r17454 r17462  
    3737                'Vx2','Vy2','Vel2','Pressure2','Thickness2','Surface2','MaskIceLevelset2','Enthalpy2','Watercolumn2',\
    3838                'Vx3','Vy3','Vel3','Pressure3','Thickness3','Surface3','MaskIceLevelset3','Enthalpy3','Watercolumn3']
    39 field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,\
     39field_tolerances=[1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,\
    4040                1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,\
    4141                1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10]
  • issm/trunk-jpl/test/Par/ValleyGlacierShelf.py

    r17452 r17462  
    2525
    2626alpha=2./3.
    27 slope = (bmin-bmax)*(x-xmin)/(Lx*alpha) + bmax
     27slope = 0.9*(bmin-bmax)*(x-xmin)/(Lx*alpha) + 0.1*(bmin-bmax)*(y-ymin)/(Ly) + bmax
    2828md.geometry.surface= (thk_center+bmax) + slope
    2929md.geometry.bed=bmax + slope + 4./Ly**2*(thk_center-thk_margin)*(numpy.power(y-ym,2))
Note: See TracChangeset for help on using the changeset viewer.