source: issm/trunk/test/NightlyRun/test334.m@ 9664

Last change on this file since 9664 was 9664, checked in by seroussi, 14 years ago

change setelementstype in setflowequation

File size: 2.6 KB
RevLine 
[4975]1md=mesh(model,'../Exp/Square.exp',200000);
[9641]2md=setmask(md,'','');
[4975]3md=parameterize(md,'../Par/SquareSheetConstrained.par');
4md=extrude(md,3,1);
[9664]5md=setflowequation(md,'pattyn','all');
[8589]6md.cluster=generic('name',oshostname(),'np',3);
[8433]7md=solve(md,TransientSolutionEnum);
[5098]8
9%Fields and tolerances to track changes
[9611]10field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsMeltingRate1', ...
11 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsMeltingRate2', ...
12 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsMeltingRate3'};
[6725]13field_tolerances={1e-09,1e-09,1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,...
14 1e-09,1e-09,1e-10,1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,...
15 1e-09,5e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10};
[5098]16field_values={...
[8433]17 PatchToVec(md.results.TransientSolution(1).Vx),...
18 PatchToVec(md.results.TransientSolution(1).Vy),...
19 PatchToVec(md.results.TransientSolution(1).Vz),...
20 PatchToVec(md.results.TransientSolution(1).Vel),...
21 PatchToVec(md.results.TransientSolution(1).Pressure),...
22 PatchToVec(md.results.TransientSolution(1).Bed),...
23 PatchToVec(md.results.TransientSolution(1).Surface),...
24 PatchToVec(md.results.TransientSolution(1).Thickness),...
25 PatchToVec(md.results.TransientSolution(1).Temperature),...
[9611]26 PatchToVec(md.results.TransientSolution(1).BasalforcingsMeltingRate),...
[8433]27 PatchToVec(md.results.TransientSolution(2).Vx),...
28 PatchToVec(md.results.TransientSolution(2).Vy),...
29 PatchToVec(md.results.TransientSolution(2).Vz),...
30 PatchToVec(md.results.TransientSolution(2).Vel),...
31 PatchToVec(md.results.TransientSolution(2).Pressure),...
32 PatchToVec(md.results.TransientSolution(2).Bed),...
33 PatchToVec(md.results.TransientSolution(2).Surface),...
34 PatchToVec(md.results.TransientSolution(2).Thickness),...
35 PatchToVec(md.results.TransientSolution(2).Temperature),...
[9611]36 PatchToVec(md.results.TransientSolution(2).BasalforcingsMeltingRate),...
[8433]37 PatchToVec(md.results.TransientSolution(3).Vx),...
38 PatchToVec(md.results.TransientSolution(3).Vy),...
39 PatchToVec(md.results.TransientSolution(3).Vz),...
40 PatchToVec(md.results.TransientSolution(3).Vel),...
41 PatchToVec(md.results.TransientSolution(3).Pressure),...
42 PatchToVec(md.results.TransientSolution(3).Bed),...
43 PatchToVec(md.results.TransientSolution(3).Surface),...
44 PatchToVec(md.results.TransientSolution(3).Thickness),...
45 PatchToVec(md.results.TransientSolution(3).Temperature),...
[9611]46 PatchToVec(md.results.TransientSolution(3).BasalforcingsMeltingRate),...
[5098]47 };
Note: See TracBrowser for help on using the repository browser.