weac 2.6.4__py3-none-any.whl → 3.0.1__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.
- weac/__init__.py +2 -14
- weac/analysis/__init__.py +23 -0
- weac/analysis/analyzer.py +790 -0
- weac/analysis/criteria_evaluator.py +1169 -0
- weac/analysis/plotter.py +1922 -0
- weac/components/__init__.py +21 -0
- weac/components/config.py +33 -0
- weac/components/criteria_config.py +86 -0
- weac/components/layer.py +284 -0
- weac/components/model_input.py +103 -0
- weac/components/scenario_config.py +72 -0
- weac/components/segment.py +31 -0
- weac/constants.py +37 -0
- weac/core/__init__.py +10 -0
- weac/core/eigensystem.py +405 -0
- weac/core/field_quantities.py +273 -0
- weac/core/scenario.py +200 -0
- weac/core/slab.py +149 -0
- weac/core/slab_touchdown.py +363 -0
- weac/core/system_model.py +413 -0
- weac/core/unknown_constants_solver.py +444 -0
- weac/logging_config.py +39 -0
- weac/utils/__init__.py +0 -0
- weac/utils/geldsetzer.py +166 -0
- weac/utils/misc.py +127 -0
- weac/utils/snow_types.py +82 -0
- weac/utils/snowpilot_parser.py +332 -0
- {weac-2.6.4.dist-info → weac-3.0.1.dist-info}/METADATA +196 -64
- weac-3.0.1.dist-info/RECORD +32 -0
- weac-3.0.1.dist-info/licenses/LICENSE +21 -0
- weac/eigensystem.py +0 -658
- weac/inverse.py +0 -51
- weac/layered.py +0 -64
- weac/mixins.py +0 -2083
- weac/plot.py +0 -675
- weac/tools.py +0 -334
- weac-2.6.4.dist-info/RECORD +0 -12
- weac-2.6.4.dist-info/licenses/LICENSE +0 -24
- {weac-2.6.4.dist-info → weac-3.0.1.dist-info}/WHEEL +0 -0
- {weac-2.6.4.dist-info → weac-3.0.1.dist-info}/top_level.txt +0 -0
weac/__init__.py
CHANGED
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Implementation of closed-form analytical models for the analysis of
|
|
5
|
-
dry-snow slab avalanche release.
|
|
2
|
+
WEAC - Weak Layer Anticrack Nucleation Model
|
|
6
3
|
"""
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
from weac import plot
|
|
10
|
-
from weac.inverse import Inverse
|
|
11
|
-
from weac.layered import Layered
|
|
12
|
-
|
|
13
|
-
# Version
|
|
14
|
-
__version__ = "2.6.4"
|
|
15
|
-
|
|
16
|
-
# Public names
|
|
17
|
-
__all__ = ["Layered", "Inverse", "plot"]
|
|
5
|
+
__version__ = "3.0.1"
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This package contains modules for analyzing the results of the WEAC model.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from .analyzer import Analyzer
|
|
6
|
+
from .criteria_evaluator import (
|
|
7
|
+
CoupledCriterionHistory,
|
|
8
|
+
CoupledCriterionResult,
|
|
9
|
+
CriteriaEvaluator,
|
|
10
|
+
FindMinimumForceResult,
|
|
11
|
+
SSERRResult,
|
|
12
|
+
)
|
|
13
|
+
from .plotter import Plotter
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"Analyzer",
|
|
17
|
+
"CriteriaEvaluator",
|
|
18
|
+
"CoupledCriterionHistory",
|
|
19
|
+
"CoupledCriterionResult",
|
|
20
|
+
"FindMinimumForceResult",
|
|
21
|
+
"SSERRResult",
|
|
22
|
+
"Plotter",
|
|
23
|
+
]
|