source:
issm/oecreview/Archive/16133-16554/ISSM-16471-16472.diff
Last change on this file was 16556, checked in by , 11 years ago | |
---|---|
File size: 5.0 KB |
-
../trunk-jpl/test/NightlyRun/test325.py
14 14 md.extrude(3,1.) 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 21 22 md.cluster=generic('name',oshostname(),'np',3) 23 md=solve(md,ThermalSolutionEnum()) 24 22 25 #Fields and tolerances to track changes 23 26 field_names =['Enthalpy','Waterfraction','Temperature'] 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 ] -
../trunk-jpl/test/NightlyRun/test120.m
4 4 md=extrude(md,3,1.); 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 11 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,ThermalSolutionEnum()); 14 12 15 %Fields and tolerances to track changes 13 16 field_names ={'Enthalpy','Waterfraction','Temperature'}; 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 }; -
../trunk-jpl/test/NightlyRun/test325.m
4 4 md=extrude(md,3,1.); 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 11 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,ThermalSolutionEnum()); 14 12 15 %Fields and tolerances to track changes 13 16 field_names ={'Enthalpy','Waterfraction','Temperature'}; 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 }; -
../trunk-jpl/test/NightlyRun/test411.py
14 14 md.extrude(3,2.) 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 20 20 #Fields and tolerances to track changes -
../trunk-jpl/test/NightlyRun/test120.py
14 14 md.extrude(3,1.) 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 21 22 md.cluster=generic('name',oshostname(),'np',3) 23 md=solve(md,ThermalSolutionEnum()) 24 22 25 #Fields and tolerances to track changes 23 26 field_names =['Enthalpy','Waterfraction','Temperature'] 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 ]
Note:
See TracBrowser
for help on using the repository browser.