added Id flag and content

added "core" package capability
This commit is contained in:
Philip Eisenlohr 2011-12-22 10:30:25 +00:00
parent 8535421429
commit 429af90ccb
19 changed files with 40 additions and 1 deletions

View File

@ -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

View File

@ -1,3 +1,5 @@
# $Id$
class ASCIItable():
'''
There should be a doc string here :)

View File

@ -1 +1,3 @@
# $Id$
from .material import Material

View File

@ -1,3 +1,5 @@
# $Id$
class Material():
'''
Reads, manipulates and writes material.config files

View File

@ -1,3 +1,5 @@
# $Id$
import os,sys,string,re
class Environment():

View File

@ -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

View File

@ -1,3 +1,5 @@
# $Id$
import damask.geometry
class Geometry():

View File

@ -1,3 +1,5 @@
# $Id$
from .geometry import Geometry
class Marc(Geometry):

View File

@ -1,3 +1,5 @@
# $Id$
from .geometry import Geometry
class Spectral(Geometry):

View File

@ -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

View File

@ -1,3 +1,5 @@
# $Id$
from .result import Result
class Marc(Result):

View File

@ -1,3 +1,5 @@
# $Id$
import damask.result
class Result():

View File

@ -1,3 +1,5 @@
# $Id$
from .result import Result
class Spectral(Result):

View File

@ -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

View File

@ -1,3 +1,5 @@
# $Id$
from .solver import Solver

View File

@ -1,3 +1,5 @@
# $Id$
import damask.solver
class Solver():

View File

@ -1,3 +1,5 @@
# $Id$
from .solver import Solver
class Spectral(Solver):

View File

@ -1 +1,3 @@
# $Id$
from .test import Test

View File

@ -1,4 +1,6 @@
#!/usr/bin/env python
# $Id$
import os, sys
import subprocess,shutil