source: issm/trunk-jpl/test/NightlyRun/test214.m@ 10976

Last change on this file since 10976 was 10976, checked in by Mathieu Morlighem, 13 years ago

removed all PatchToVec not needed anymore as default is md.settings.results_as_patches = 0

File size: 861 bytes
RevLine 
[9703]1md=setmesh(model,'../Exp/Square.exp',180000);
[9641]2md=setmask(md,'all','');
[4961]3md=parameterize(md,'../Par/SquareShelf.par');
4md=extrude(md,3,1);
[9664]5md=setflowequation(md,'macayeal','all');
[8589]6md.cluster=generic('name',oshostname(),'np',3);
[8295]7md=solve(md,ThermalSolutionEnum);
[5098]8
9%Fields and tolerances to track changes
[9611]10field_names ={'Temperature1','BasalforcingsMeltingRate1','Temperature2','BasalforcingsMeltingRate2','Temperature3','BasalforcingsMeltingRate3'};
[5098]11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
12field_values={...
[10976]13 (md.results.ThermalSolution(1).Temperature),...
14 (md.results.ThermalSolution(1).BasalforcingsMeltingRate),...
15 (md.results.ThermalSolution(2).Temperature),...
16 (md.results.ThermalSolution(2).BasalforcingsMeltingRate),...
17 (md.results.ThermalSolution(3).Temperature),...
18 (md.results.ThermalSolution(3).BasalforcingsMeltingRate),...
[5098]19 };
Note: See TracBrowser for help on using the repository browser.