DAMASK_EICMD/python/damask/__init__.py

36 lines
1.3 KiB
Python
Raw Normal View History

2020-04-12 18:50:09 +05:30
"""Tools for pre and post processing of DAMASK simulations."""
2020-06-03 14:13:07 +05:30
from pathlib import Path as _Path
import re as _re
name = 'damask'
2020-06-03 14:13:07 +05:30
with open(_Path(__file__).parent/_Path('VERSION')) as _f:
version = _re.sub(r'^v','',_f.readline().strip())
__version__ = version
# make classes directly accessible as damask.Class
from ._environment import Environment as _ # noqa
environment = _()
2020-10-08 21:35:03 +05:30
from . import util # noqa
from . import seeds # noqa
from . import mechanics # noqa
from . import solver # noqa
from . import grid_filters # noqa
from ._lattice import Symmetry, Lattice# noqa
from ._table import Table # noqa
2020-10-08 21:35:03 +05:30
from ._rotation import Rotation # noqa
from ._vtk import VTK # noqa
from ._colormap import Colormap # noqa
from ._orientation import Orientation # noqa
from ._config import Config # noqa
from ._configmaterial import ConfigMaterial # noqa
2020-10-08 21:35:03 +05:30
from ._geom import Geom # noqa
from ._result import Result # noqa
2020-09-23 13:15:36 +05:30
# deprecated
Environment = _
from ._asciitable import ASCIItable # noqa
from ._test import Test # noqa
from .util import extendableOption # noqa