[19105] | 1 | %Test Name: SquareSheetShelfStressHOFS3dTiling
|
---|
[13975] | 2 | md=triangle(model(),'../Exp/Square.exp',180000.);
|
---|
[9641] | 3 | md=setmask(md,'../Exp/SquareShelf.exp','');
|
---|
[6036] | 4 | md=parameterize(md,'../Par/SquareSheetShelf.par');
|
---|
[13975] | 5 | md=extrude(md,5,1.);
|
---|
[16137] | 6 | md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO');
|
---|
[10994] | 7 | md.cluster=generic('name',oshostname(),'np',3);
|
---|
[21341] | 8 | md=solve(md,'Stressbalance');
|
---|
[6036] | 9 |
|
---|
| 10 | %Fields and tolerances to track changes
|
---|
| 11 | field_names ={'Vx','Vy','Vz','Vel','Pressure'};
|
---|
[22651] | 12 | field_tolerances={6e-07,6e-07,2e-05,6e-07,6e-07};
|
---|
[6036] | 13 | field_values={...
|
---|
[16137] | 14 | (md.results.StressbalanceSolution.Vx),...
|
---|
| 15 | (md.results.StressbalanceSolution.Vy),...
|
---|
| 16 | (md.results.StressbalanceSolution.Vz),...
|
---|
| 17 | (md.results.StressbalanceSolution.Vel),...
|
---|
| 18 | (md.results.StressbalanceSolution.Pressure),...
|
---|
[6036] | 19 | };
|
---|