[9703] | 1 | md=setmesh(model,'../Exp/Square.exp',180000);
|
---|
[9641] | 2 | md=setmask(md,'all','');
|
---|
[4961] | 3 | md=parameterize(md,'../Par/SquareShelf.par');
|
---|
| 4 | md=extrude(md,3,1);
|
---|
[9664] | 5 | md=setflowequation(md,'macayeal','all');
|
---|
[8589] | 6 | md.cluster=generic('name',oshostname(),'np',3);
|
---|
[8295] | 7 | md=solve(md,ThermalSolutionEnum);
|
---|
[5098] | 8 |
|
---|
| 9 | %Fields and tolerances to track changes
|
---|
[9611] | 10 | field_names ={'Temperature1','BasalforcingsMeltingRate1','Temperature2','BasalforcingsMeltingRate2','Temperature3','BasalforcingsMeltingRate3'};
|
---|
[5098] | 11 | field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
|
---|
| 12 | field_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 | };
|
---|