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 CHANGED
@@ -1,17 +1,5 @@
1
1
  """
2
- WEak Layer AntiCrack nucleation model.
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
- # Module imports
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
+ ]