Rev | Line | |
---|
[13668] | 1 | import numpy
|
---|
| 2 | from model import *
|
---|
| 3 | from EnumDefinitions import *
|
---|
| 4 | from MatlabFuncs import *
|
---|
| 5 | from triangle import *
|
---|
| 6 | from setmask import *
|
---|
| 7 | from parameterize import *
|
---|
| 8 | from setflowequation import *
|
---|
| 9 | from solve import *
|
---|
| 10 |
|
---|
| 11 | md=triangle(model(),'../Exp/79North.exp',10000.)
|
---|
| 12 | md=setmask(md,'../Exp/79NorthShelf.exp','')
|
---|
| 13 | md=parameterize(md,'../Par/79North.py')
|
---|
[15565] | 14 | md=setflowequation(md,'SSA','all')
|
---|
[13668] | 15 | md.cluster=generic('name',oshostname(),'np',3)
|
---|
| 16 | md=solve(md,BalancethicknessSolutionEnum())
|
---|
| 17 |
|
---|
| 18 | #Fields and tolerances to track changes
|
---|
| 19 | field_names =['Thickness']
|
---|
[16938] | 20 | field_tolerances=[1e-12]
|
---|
[13668] | 21 | field_values=[\
|
---|
[13967] | 22 | md.results.BalancethicknessSolution.Thickness,\
|
---|
[13668] | 23 | ]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.