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
|
2013-01-04 19:27:36 +05:30
|
|
|
from .colormaps import Colormaps # only one class
|
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-31 21:07:49 +05:30
|
|
|
# cleaning up namespace
|
|
|
|
###################################################################################################
|
|
|
|
# capitalize according to convention
|
|
|
|
core.IO = core.io
|
|
|
|
core.FEsolving = core.fesolving
|
|
|
|
core.DAMASK_interface = core.damask_interface
|
|
|
|
# remove XXX_
|
|
|
|
core.prec.init = core.prec.prec_init
|
|
|
|
core.DAMASK_interface.init = core.DAMASK_interface.DAMASK_interface_init
|
|
|
|
core.IO.init = core.IO.IO_init
|
|
|
|
core.numerics.init = core.numerics.numerics_init
|
|
|
|
core.debug.init = core.debug.debug_init
|
|
|
|
core.math.init = core.math.math_init
|
2012-08-27 13:34:47 +05:30
|
|
|
core.math.curlFFT = core.math.math_curlFFT
|
|
|
|
core.math.divergenceFFT = core.math.math_divergenceFFT
|
|
|
|
core.math.divergenceFDM = core.math.math_divergenceFDM
|
2012-07-31 21:07:49 +05:30
|
|
|
#core.math.periodicNearestNeighbor = core.math.math_periodicNearestNeighbor
|
2012-08-27 13:34:47 +05:30
|
|
|
core.math.tensorAvg = core.math.math_tensorAvg
|
|
|
|
core.math.logstrainSpat = core.math.math_logstrainSpat
|
|
|
|
core.math.logstrainMat = core.math.math_logstrainMat
|
|
|
|
core.math.cauchy = core.math.math_cauchy
|
2012-07-31 21:07:49 +05:30
|
|
|
core.FEsolving.init = core.FEsolving.FE_init
|
|
|
|
core.mesh.init = core.mesh.mesh_init
|
|
|
|
core.mesh.regrid = core.mesh.mesh_regrid
|
2012-08-27 13:34:47 +05:30
|
|
|
#core.mesh.volumeMismatch = core.mesh.mesh_volumeMismatch
|
|
|
|
#core.mesh.shapeMismatch = core.mesh.mesh_shapeMismatch
|
2012-07-31 21:07:49 +05:30
|
|
|
#core.mesh.nodesAroundCentroids = core.mesh.mesh_spectral_nodesAroundCentroids
|
2012-08-27 13:34:47 +05:30
|
|
|
#core.mesh.deformedCoordsLin = core.mesh.mesh_deformedCoordsLin
|
|
|
|
#core.mesh.deformedCoordsFFT = core.mesh.mesh_deformedCoordsFFT
|
2012-10-10 22:08:02 +05:30
|
|
|
except ImportError, e:
|
2012-07-18 19:16:33 +05:30
|
|
|
core = None # from http://www.python.org/dev/peps/pep-0008/
|
2012-10-25 18:10:06 +05:30
|
|
|
if('setup_processing' not in sys.argv[0]):
|
2012-10-25 13:25:27 +05:30
|
|
|
sys.stderr.write('\nWARNING: Core module (Fortran code) not available, '\
|
|
|
|
'try to run setup_processing.py\nError Message when importing core.so: %s\n\n'%e)
|
2012-07-18 19:16:33 +05:30
|
|
|
|
|
|
|
|