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