added Id flag and content
added "core" package capability
This commit is contained in:
parent
8535421429
commit
429af90ccb
|
@ -1,7 +1,10 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .environment import Environment # only one class
|
from .environment import Environment # only one class
|
||||||
from .asciitable import ASCIItable # only one class
|
from .asciitable import ASCIItable # only one class
|
||||||
from .config import Material # will be extended to debug and numerics
|
from .config import Material # will be extended to debug and numerics
|
||||||
from .result import Result # one class with subclasses
|
from .result import Result # one class with subclasses
|
||||||
from .geometry import Geometry # one class with subclasses
|
from .geometry import Geometry # one class with subclasses
|
||||||
from .solver import Solver # one class with subclasses
|
from .solver import Solver # one class with subclasses
|
||||||
from .test import Test
|
from .test import Test
|
||||||
|
from . import core
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
class ASCIItable():
|
class ASCIItable():
|
||||||
'''
|
'''
|
||||||
There should be a doc string here :)
|
There should be a doc string here :)
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .material import Material
|
from .material import Material
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
class Material():
|
class Material():
|
||||||
'''
|
'''
|
||||||
Reads, manipulates and writes material.config files
|
Reads, manipulates and writes material.config files
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
import os,sys,string,re
|
import os,sys,string,re
|
||||||
|
|
||||||
class Environment():
|
class Environment():
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .geometry import Geometry # only one class
|
from .geometry import Geometry # only one class
|
||||||
from .spectral import Spectral # only one class
|
from .spectral import Spectral # only one class
|
||||||
from .marc import Marc # only one class
|
from .marc import Marc # only one class
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
import damask.geometry
|
import damask.geometry
|
||||||
|
|
||||||
class Geometry():
|
class Geometry():
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .geometry import Geometry
|
from .geometry import Geometry
|
||||||
|
|
||||||
class Marc(Geometry):
|
class Marc(Geometry):
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .geometry import Geometry
|
from .geometry import Geometry
|
||||||
|
|
||||||
class Spectral(Geometry):
|
class Spectral(Geometry):
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .result import Result # only one class
|
from .result import Result # only one class
|
||||||
from .spectral import Spectral # only one class
|
from .spectral import Spectral # only one class
|
||||||
from .marc import Marc # only one class
|
from .marc import Marc # only one class
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .result import Result
|
from .result import Result
|
||||||
|
|
||||||
class Marc(Result):
|
class Marc(Result):
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
import damask.result
|
import damask.result
|
||||||
|
|
||||||
class Result():
|
class Result():
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .result import Result
|
from .result import Result
|
||||||
|
|
||||||
class Spectral(Result):
|
class Spectral(Result):
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .solver import Solver # only one class
|
from .solver import Solver # only one class
|
||||||
from .spectral import Spectral # only one class
|
from .spectral import Spectral # only one class
|
||||||
from .marc import Marc # only one class
|
from .marc import Marc # only one class
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .solver import Solver
|
from .solver import Solver
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
import damask.solver
|
import damask.solver
|
||||||
|
|
||||||
class Solver():
|
class Solver():
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .solver import Solver
|
from .solver import Solver
|
||||||
|
|
||||||
class Spectral(Solver):
|
class Spectral(Solver):
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
from .test import Test
|
from .test import Test
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
# $Id$
|
||||||
|
|
||||||
import os, sys
|
import os, sys
|
||||||
import subprocess,shutil
|
import subprocess,shutil
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue