| 1 | %Test Name: SquareSheetShelfStressHOFS3dTiling
|
|---|
| 2 | md=triangle(model(),'../Exp/Square.exp',180000.);
|
|---|
| 3 | md=setmask(md,'../Exp/SquareShelf.exp','');
|
|---|
| 4 | md=parameterize(md,'../Par/SquareSheetShelf.par');
|
|---|
| 5 | md=extrude(md,5,1.);
|
|---|
| 6 | md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO');
|
|---|
| 7 | md.cluster=generic('name',oshostname(),'np',3);
|
|---|
| 8 | md=solve(md,'Stressbalance');
|
|---|
| 9 |
|
|---|
| 10 | %Fields and tolerances to track changes
|
|---|
| 11 | field_names ={'Vx','Vy','Vz','Vel','Pressure'};
|
|---|
| 12 | field_tolerances={2e-06,2e-06,2e-05,2e-06,3e-06};
|
|---|
| 13 | field_values={...
|
|---|
| 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),...
|
|---|
| 19 | };
|
|---|