1 |
|
2 |
############################################################################## |
3 |
# |
4 |
# Copyright (c) 2013-2018 by The University of Queensland |
5 |
# http://www.uq.edu.au |
6 |
# |
7 |
# Primary Business: Queensland, Australia |
8 |
# Licensed under the Apache License, version 2.0 |
9 |
# http://www.apache.org/licenses/LICENSE-2.0 |
10 |
# |
11 |
# Development 2012-2013 by School of Earth Sciences |
12 |
# Development from 2014 by Centre for Geoscience Computing (GeoComp) |
13 |
# Development from 2019 by School of Earth and Environmental Sciences |
14 |
# |
15 |
############################################################################## |
16 |
|
17 |
"""Classes and tools that form the basis of the escript system. |
18 |
Specific solvers and domains are found in their respective packages.""" |
19 |
|
20 |
from __future__ import print_function, division |
21 |
|
22 |
__copyright__="""Copyright (c) 2013-2018 by The University of Queensland |
23 |
http://www.uq.edu.au |
24 |
Primary Business: Queensland, Australia""" |
25 |
__license__="""Licensed under the Apache License, version 2.0 |
26 |
http://www.apache.org/licenses/LICENSE-2.0""" |
27 |
__url__="https://launchpad.net/escript-finley" |
28 |
|
29 |
from esys.escriptcore.escriptcpp import * |
30 |
from esys.escriptcore.util import * |
31 |
from esys.escriptcore.nonlinearPDE import NonlinearPDE |
32 |
from esys.escriptcore.datamanager import DataManager |
33 |
from esys.escriptcore.symbolic import * |
34 |
from esys.escriptcore.splitworld import * |
35 |
|
36 |
__all__=[x for x in dir() if not x.startswith('internal_') and not x.startswith('Internal_') and not x.startswith('__') and not str(type(eval(x))).find('module')>=0] |
37 |
|
38 |
|