2011-12-22 16:00:25 +05:30
|
|
|
# $Id$
|
2012-02-16 23:32:15 +05:30
|
|
|
import sys
|
2011-12-22 16:00:25 +05:30
|
|
|
|
2011-12-15 14:21:16 +05:30
|
|
|
from .environment import Environment # only one class
|
|
|
|
from .asciitable import ASCIItable # only one class
|
2011-12-15 20:45:32 +05:30
|
|
|
from .config import Material # will be extended to debug and numerics
|
2012-02-16 23:32:15 +05:30
|
|
|
#from .block import Block # only one class
|
2011-12-15 14:21:16 +05:30
|
|
|
from .result import Result # one class with subclasses
|
|
|
|
from .geometry import Geometry # one class with subclasses
|
|
|
|
from .solver import Solver # one class with subclasses
|
2011-12-22 16:00:25 +05:30
|
|
|
from .test import Test
|
2012-07-18 19:16:33 +05:30
|
|
|
from util import *
|
|
|
|
|
2012-01-04 16:36:24 +05:30
|
|
|
try:
|
|
|
|
from . import core
|
2012-07-18 19:16:33 +05:30
|
|
|
except ImportError:
|
|
|
|
sys.stderr.write('\nWARNING: Core module (Fortran code) not available, try to run setup_processing.py\nError Message when importing core.so: \n\n')
|
|
|
|
core = None # from http://www.python.org/dev/peps/pep-0008/
|
|
|
|
|
|
|
|
|