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 .asciitable import ASCIItable # only one class
|
||||
from .config import Material # will be extended to debug and numerics
|
||||
from .result import Result # one class with subclasses
|
||||
from .geometry import Geometry # 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():
|
||||
'''
|
||||
There should be a doc string here :)
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
# $Id$
|
||||
|
||||
from .material import Material
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
class Material():
|
||||
'''
|
||||
Reads, manipulates and writes material.config files
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
import os,sys,string,re
|
||||
|
||||
class Environment():
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .geometry import Geometry # only one class
|
||||
from .spectral import Spectral # only one class
|
||||
from .marc import Marc # only one class
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
import damask.geometry
|
||||
|
||||
class Geometry():
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .geometry import Geometry
|
||||
|
||||
class Marc(Geometry):
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .geometry import Geometry
|
||||
|
||||
class Spectral(Geometry):
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .result import Result # only one class
|
||||
from .spectral import Spectral # only one class
|
||||
from .marc import Marc # only one class
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .result import Result
|
||||
|
||||
class Marc(Result):
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
import damask.result
|
||||
|
||||
class Result():
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .result import Result
|
||||
|
||||
class Spectral(Result):
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .solver import Solver # only one class
|
||||
from .spectral import Spectral # only one class
|
||||
from .marc import Marc # only one class
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .solver import Solver
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
import damask.solver
|
||||
|
||||
class Solver():
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# $Id$
|
||||
|
||||
from .solver import Solver
|
||||
|
||||
class Spectral(Solver):
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
# $Id$
|
||||
|
||||
from .test import Test
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
# $Id$
|
||||
|
||||
import os, sys
|
||||
import subprocess,shutil
|
||||
|
||||
|
|
Loading…
Reference in New Issue