openmodalpy 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- modalpy/__init__.py +41 -0
- modalpy/__main__.py +6 -0
- modalpy/bsmd.py +1148 -0
- modalpy/cli.py +206 -0
- modalpy/commands.py +1136 -0
- modalpy/config_io.py +50 -0
- modalpy/core/__init__.py +29 -0
- modalpy/core/base.py +1164 -0
- modalpy/core/config.py +118 -0
- modalpy/core/indent.py +143 -0
- modalpy/core/io.py +1079 -0
- modalpy/core/parallel.py +366 -0
- modalpy/dmd.py +983 -0
- modalpy/example_data.py +161 -0
- modalpy/examples/__init__.py +1 -0
- modalpy/examples/cylinder_wake.jsonc +37 -0
- modalpy/examples/double_gyre.jsonc +37 -0
- modalpy/examples/run_benchmarks.jsonc +10 -0
- modalpy/examples/taylor_green.jsonc +37 -0
- modalpy/mpod.py +259 -0
- modalpy/pod.py +1497 -0
- modalpy/specs.py +97 -0
- modalpy/spod.py +1125 -0
- modalpy/stpod.py +920 -0
- openmodalpy-0.1.0.dist-info/METADATA +219 -0
- openmodalpy-0.1.0.dist-info/RECORD +29 -0
- openmodalpy-0.1.0.dist-info/WHEEL +4 -0
- openmodalpy-0.1.0.dist-info/entry_points.txt +2 -0
- openmodalpy-0.1.0.dist-info/licenses/LICENSE +21 -0
modalpy/__init__.py
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"""ModalPy public package."""
|
|
2
|
+
|
|
3
|
+
from modalpy.bsmd import BSMDAnalyzer
|
|
4
|
+
from modalpy.commands import (
|
|
5
|
+
analyze_from_config,
|
|
6
|
+
analyze_from_spec,
|
|
7
|
+
discover_examples,
|
|
8
|
+
get_method_spec,
|
|
9
|
+
inspect_results,
|
|
10
|
+
list_methods,
|
|
11
|
+
load_case_spec,
|
|
12
|
+
run_from_config,
|
|
13
|
+
)
|
|
14
|
+
from modalpy.dmd import DMDAnalyzer
|
|
15
|
+
from modalpy.mpod import MPODAnalyzer
|
|
16
|
+
from modalpy.pod import PODAnalyzer
|
|
17
|
+
from modalpy.specs import AnalyzeSpec, CaseSpec, DataSourceSpec, RunOutcome
|
|
18
|
+
from modalpy.spod import SPODAnalyzer
|
|
19
|
+
from modalpy.stpod import STPODAnalyzer
|
|
20
|
+
|
|
21
|
+
__version__ = "0.1.0"
|
|
22
|
+
__all__ = [
|
|
23
|
+
"PODAnalyzer",
|
|
24
|
+
"MPODAnalyzer",
|
|
25
|
+
"DMDAnalyzer",
|
|
26
|
+
"SPODAnalyzer",
|
|
27
|
+
"BSMDAnalyzer",
|
|
28
|
+
"STPODAnalyzer",
|
|
29
|
+
"AnalyzeSpec",
|
|
30
|
+
"CaseSpec",
|
|
31
|
+
"DataSourceSpec",
|
|
32
|
+
"RunOutcome",
|
|
33
|
+
"analyze_from_spec",
|
|
34
|
+
"analyze_from_config",
|
|
35
|
+
"run_from_config",
|
|
36
|
+
"discover_examples",
|
|
37
|
+
"list_methods",
|
|
38
|
+
"get_method_spec",
|
|
39
|
+
"inspect_results",
|
|
40
|
+
"load_case_spec",
|
|
41
|
+
]
|