Last change
on this file since 13395 was 13395, checked in by Mathieu Morlighem, 12 years ago |
merged trunk-jpl and trunk for revision 13393
|
File size:
635 bytes
|
Rev | Line | |
---|
[13152] | 1 | from model import *
|
---|
| 2 | from triangle import *
|
---|
| 3 | from setmask import *
|
---|
| 4 | from parameterize import *
|
---|
| 5 | from setflowequation import *
|
---|
| 6 | from EnumDefinitions import *
|
---|
| 7 | from solve import *
|
---|
| 8 | from MatlabFuncs import *
|
---|
| 9 |
|
---|
| 10 | md=triangle(model(),'../Exp/Square.exp',150000)
|
---|
| 11 | md=setmask(md,'all','')
|
---|
| 12 | md=parameterize(md,'../Par/SquareShelfConstrained.py')
|
---|
| 13 | md=setflowequation(md,'macayeal','all')
|
---|
| 14 | md.extrude(5,3)
|
---|
| 15 | md.cluster=generic('name',oshostname(),'np',3)
|
---|
| 16 | md=solve(md,PrognosticSolutionEnum())
|
---|
| 17 |
|
---|
| 18 | #Fields and tolerances to track changes
|
---|
| 19 | field_names =['Thickness']
|
---|
| 20 | field_tolerances=[1e-13]
|
---|
| 21 | field_values=[\
|
---|
| 22 | md.results['PrognosticSolution'][1]['Thickness'],\
|
---|
| 23 | ]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.