Changeset 16472


Ignore:
Timestamp:
10/21/13 07:49:01 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: EnthalpySolution replaced by ThermalSolution

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

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test120.m

    r16075 r16472  
    55md=setflowequation(md,'SSA','all');
    66md.timestepping.time_step=0;
    7 md.cluster=generic('name',oshostname(),'np',3);
    87md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
    98md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1);
    10 md=solve(md,EnthalpySolutionEnum());
     9md.thermal.isenthalpy = 1;
     10md.thermal.isdynamicbasalspc = 1;
     11
     12md.cluster=generic('name',oshostname(),'np',3);
     13md=solve(md,ThermalSolutionEnum());
    1114
    1215%Fields and tolerances to track changes
     
    1417field_tolerances={1e-13,1.45e-10,1e-13};
    1518field_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),...
    1922        };
  • issm/trunk-jpl/test/NightlyRun/test120.py

    r16075 r16472  
    1515md=setflowequation(md,'SSA','all')
    1616md.timestepping.time_step=0
    17 md.cluster=generic('name',oshostname(),'np',3)
    1817md.initialization.waterfraction=numpy.zeros(md.mesh.numberofvertices)
    1918md.initialization.watercolumn=numpy.zeros(md.mesh.numberofvertices)
    20 md=solve(md,EnthalpySolutionEnum())
     19md.thermal.isenthalpy = 1;
     20md.thermal.isdynamicbasalspc = 1;
     21
     22md.cluster=generic('name',oshostname(),'np',3)
     23md=solve(md,ThermalSolutionEnum())
    2124
    2225#Fields and tolerances to track changes
     
    2427field_tolerances=[1e-13,1.45e-10,1e-13]
    2528field_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,\
    2932        ]
  • issm/trunk-jpl/test/NightlyRun/test325.m

    r16039 r16472  
    55md=setflowequation(md,'SSA','all');
    66md.timestepping.time_step=0.;
    7 md.cluster=generic('name',oshostname(),'np',3);
    87md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
    98md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1);
    10 md=solve(md,EnthalpySolutionEnum());
     9md.thermal.isenthalpy = 1;
     10md.thermal.isdynamicbasalspc = 1;
     11
     12md.cluster=generic('name',oshostname(),'np',3);
     13md=solve(md,ThermalSolutionEnum());
    1114
    1215%Fields and tolerances to track changes
     
    1417field_tolerances={1e-13,1e-13,1e-13};
    1518field_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),...
    1922        };
  • issm/trunk-jpl/test/NightlyRun/test325.py

    r16041 r16472  
    1515md=setflowequation(md,'SSA','all')
    1616md.timestepping.time_step=0.
    17 md.cluster=generic('name',oshostname(),'np',3)
    1817md.initialization.waterfraction=numpy.zeros((md.mesh.numberofvertices,1))
    1918md.initialization.watercolumn=numpy.zeros((md.mesh.numberofvertices,1))
    20 md=solve(md,EnthalpySolutionEnum())
     19md.thermal.isenthalpy = 1
     20md.thermal.isdynamicbasalspc = 1
     21
     22md.cluster=generic('name',oshostname(),'np',3)
     23md=solve(md,ThermalSolutionEnum())
    2124
    2225#Fields and tolerances to track changes
     
    2427field_tolerances=[1e-13,1e-13,1e-13]
    2528field_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,\
    2932        ]
  • issm/trunk-jpl/test/NightlyRun/test411.py

    r15565 r16472  
    1515md=setflowequation(md,'HO','all')
    1616md.cluster=generic('name',oshostname(),'np',3)
    17 md.timestepping.time_step=0
     17md.timestepping.time_step=0.
    1818md=solve(md,SteadystateSolutionEnum())
    1919
Note: See TracChangeset for help on using the changeset viewer.