Last change
on this file since 12004 was 12004, checked in by cborstad, 13 years ago |
merged trunk-jpl into trunk-jpl-damage through revision 11990
|
File size:
611 bytes
|
Line | |
---|
1 | #module imports
|
---|
2 | from fielddisplay import fielddisplay
|
---|
3 |
|
---|
4 | class private:
|
---|
5 | #properties
|
---|
6 | def __init__(self):
|
---|
7 | # {{{ Properties
|
---|
8 | self.runtimename = ''
|
---|
9 | self.bamg = {}
|
---|
10 | self.solution = '';
|
---|
11 | #}}}
|
---|
12 | def __repr__(obj):
|
---|
13 | # {{{ Display
|
---|
14 | string=' private parameters: do not change'
|
---|
15 | string="%s\n%s"%(string,fielddisplay(obj,'runtimename','name of the run launched'))
|
---|
16 | string="%s\n%s"%(string,fielddisplay(obj,'bamg','structure with mesh properties construced if bamg is used to mesh the domain'))
|
---|
17 | string="%s\n%s"%(string,fielddisplay(obj,'solution','type of solution launched'))
|
---|
18 | return string
|
---|
19 | #}}}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.