Last change
on this file since 11684 was 11684, checked in by cborstad, 13 years ago |
merged revisions 11428:11680 from trunk-jpl into branches/trunk-jpl-damage
|
File size:
682 bytes
|
Rev | Line | |
---|
[11585] | 1 | md=triangle(model,'../Exp/Square.exp',180000);
|
---|
| 2 | md=setmask(md,'../Exp/SquareShelf.exp','');
|
---|
| 3 | md=parameterize(md,'../Par/SquareSheetShelf.par');
|
---|
| 4 | md=extrude(md,5,1);
|
---|
| 5 | md=setflowequation(md,'pattyn','all');
|
---|
| 6 | md.diagnostic.isnewton=1;
|
---|
| 7 | md.diagnostic.restol=0.0001;
|
---|
| 8 | md.cluster=none;
|
---|
| 9 | md=solve(md,DiagnosticSolutionEnum);
|
---|
| 10 |
|
---|
| 11 | %Fields and tolerances to track changes
|
---|
| 12 | field_names ={'Vx','Vy','Vz','Vel','Pressure'};
|
---|
| 13 | field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
|
---|
| 14 | field_values={...
|
---|
| 15 | (md.results.DiagnosticSolution.Vx),...
|
---|
| 16 | (md.results.DiagnosticSolution.Vy),...
|
---|
| 17 | (md.results.DiagnosticSolution.Vz),...
|
---|
| 18 | (md.results.DiagnosticSolution.Vel),...
|
---|
| 19 | (md.results.DiagnosticSolution.Pressure),...
|
---|
| 20 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.