Changeset 16472
- Timestamp:
- 10/21/13 07:49:01 (11 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test120.m
r16075 r16472 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.timestepping.time_step=0; 7 md.cluster=generic('name',oshostname(),'np',3);8 7 md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1); 9 8 md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1); 10 md=solve(md,EnthalpySolutionEnum()); 9 md.thermal.isenthalpy = 1; 10 md.thermal.isdynamicbasalspc = 1; 11 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,ThermalSolutionEnum()); 11 14 12 15 %Fields and tolerances to track changes … … 14 17 field_tolerances={1e-13,1.45e-10,1e-13}; 15 18 field_values={... 16 (md.results. EnthalpySolution.Enthalpy),...17 (md.results. EnthalpySolution.Waterfraction),...18 (md.results. EnthalpySolution.Temperature),...19 (md.results.ThermalSolution.Enthalpy),... 20 (md.results.ThermalSolution.Waterfraction),... 21 (md.results.ThermalSolution.Temperature),... 19 22 }; -
issm/trunk-jpl/test/NightlyRun/test120.py
r16075 r16472 15 15 md=setflowequation(md,'SSA','all') 16 16 md.timestepping.time_step=0 17 md.cluster=generic('name',oshostname(),'np',3)18 17 md.initialization.waterfraction=numpy.zeros(md.mesh.numberofvertices) 19 18 md.initialization.watercolumn=numpy.zeros(md.mesh.numberofvertices) 20 md=solve(md,EnthalpySolutionEnum()) 19 md.thermal.isenthalpy = 1; 20 md.thermal.isdynamicbasalspc = 1; 21 22 md.cluster=generic('name',oshostname(),'np',3) 23 md=solve(md,ThermalSolutionEnum()) 21 24 22 25 #Fields and tolerances to track changes … … 24 27 field_tolerances=[1e-13,1.45e-10,1e-13] 25 28 field_values=[\ 26 md.results. EnthalpySolution.Enthalpy,\27 md.results. EnthalpySolution.Waterfraction,\28 md.results. EnthalpySolution.Temperature,\29 md.results.ThermalSolution.Enthalpy,\ 30 md.results.ThermalSolution.Waterfraction,\ 31 md.results.ThermalSolution.Temperature,\ 29 32 ] -
issm/trunk-jpl/test/NightlyRun/test325.m
r16039 r16472 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.timestepping.time_step=0.; 7 md.cluster=generic('name',oshostname(),'np',3);8 7 md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1); 9 8 md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1); 10 md=solve(md,EnthalpySolutionEnum()); 9 md.thermal.isenthalpy = 1; 10 md.thermal.isdynamicbasalspc = 1; 11 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,ThermalSolutionEnum()); 11 14 12 15 %Fields and tolerances to track changes … … 14 17 field_tolerances={1e-13,1e-13,1e-13}; 15 18 field_values={... 16 (md.results. EnthalpySolution.Enthalpy),...17 (md.results. EnthalpySolution.Waterfraction),...18 (md.results. EnthalpySolution.Temperature),...19 (md.results.ThermalSolution.Enthalpy),... 20 (md.results.ThermalSolution.Waterfraction),... 21 (md.results.ThermalSolution.Temperature),... 19 22 }; -
issm/trunk-jpl/test/NightlyRun/test325.py
r16041 r16472 15 15 md=setflowequation(md,'SSA','all') 16 16 md.timestepping.time_step=0. 17 md.cluster=generic('name',oshostname(),'np',3)18 17 md.initialization.waterfraction=numpy.zeros((md.mesh.numberofvertices,1)) 19 18 md.initialization.watercolumn=numpy.zeros((md.mesh.numberofvertices,1)) 20 md=solve(md,EnthalpySolutionEnum()) 19 md.thermal.isenthalpy = 1 20 md.thermal.isdynamicbasalspc = 1 21 22 md.cluster=generic('name',oshostname(),'np',3) 23 md=solve(md,ThermalSolutionEnum()) 21 24 22 25 #Fields and tolerances to track changes … … 24 27 field_tolerances=[1e-13,1e-13,1e-13] 25 28 field_values=[\ 26 md.results. EnthalpySolution.Enthalpy,\27 md.results. EnthalpySolution.Waterfraction,\28 md.results. EnthalpySolution.Temperature,\29 md.results.ThermalSolution.Enthalpy,\ 30 md.results.ThermalSolution.Waterfraction,\ 31 md.results.ThermalSolution.Temperature,\ 29 32 ] -
issm/trunk-jpl/test/NightlyRun/test411.py
r15565 r16472 15 15 md=setflowequation(md,'HO','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md.timestepping.time_step=0 17 md.timestepping.time_step=0. 18 18 md=solve(md,SteadystateSolutionEnum()) 19 19
Note:
See TracChangeset
for help on using the changeset viewer.