source: issm/branches/trunk-jpl-damage/test/NightlyRun/test325.m@ 12878

Last change on this file since 12878 was 12878, checked in by cborstad, 13 years ago

merged trunk-jpl into trunk-jpl-damage through revision 12877

File size: 668 bytes
Line 
1md=triangle(model,'../Exp/Square.exp',180000);
2md=setmask(md,'','');
3md=parameterize(md,'../Par/SquareSheetConstrained.par');
4md=extrude(md,3,1);
5md=setflowequation(md,'macayeal','all');
6md.timestepping.time_step=0;
7md.cluster=generic('name',oshostname(),'np',3);
8md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
9md=solve(md,EnthalpySolutionEnum);
10
11%Fields and tolerances to track changes
12field_names ={'Enthalpy','Waterfraction','Temperature'};
13field_tolerances={1e-13,1e-13,1e-13};
14field_values={...
15 (md.results.EnthalpySolution.Enthalpy),...
16 (md.results.EnthalpySolution.Waterfraction),...
17 (md.results.EnthalpySolution.Temperature),...
18 };
Note: See TracBrowser for help on using the repository browser.