PyCBA 0.5.2__tar.gz → 0.7.0__tar.gz
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.
- {pycba-0.5.2/src/PyCBA.egg-info → pycba-0.7.0}/PKG-INFO +6 -4
- {pycba-0.5.2 → pycba-0.7.0}/pyproject.toml +3 -2
- {pycba-0.5.2 → pycba-0.7.0/src/PyCBA.egg-info}/PKG-INFO +6 -4
- {pycba-0.5.2 → pycba-0.7.0}/src/PyCBA.egg-info/SOURCES.txt +3 -1
- pycba-0.7.0/src/pycba/__init__.py +23 -0
- pycba-0.7.0/src/pycba/analysis.py +607 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/beam.py +74 -37
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/bridge.py +31 -5
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/inf_lines.py +11 -7
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/load.py +264 -152
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/results.py +160 -42
- pycba-0.7.0/src/pycba/types.py +68 -0
- {pycba-0.5.2 → pycba-0.7.0}/tests/test_basic.py +443 -0
- pycba-0.7.0/tests/test_bridge.py +274 -0
- {pycba-0.5.2 → pycba-0.7.0}/tests/test_inf_lines.py +27 -0
- pycba-0.7.0/tests/test_results.py +83 -0
- pycba-0.5.2/src/pycba/__init__.py +0 -15
- pycba-0.5.2/src/pycba/analysis.py +0 -372
- pycba-0.5.2/tests/test_bridge.py +0 -102
- {pycba-0.5.2 → pycba-0.7.0}/LICENSE +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/README.md +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/setup.cfg +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/setup.py +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/PyCBA.egg-info/dependency_links.txt +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/PyCBA.egg-info/requires.txt +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/PyCBA.egg-info/top_level.txt +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/pattern.py +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/utils.py +0 -0
- {pycba-0.5.2 → pycba-0.7.0}/src/pycba/vehicle.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyCBA
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: Python Continuous Beam Analysis
|
|
5
5
|
Author-email: Colin Caprani <colin.caprani@monash.edu>
|
|
6
6
|
License: Apache 2.0
|
|
@@ -20,11 +20,12 @@ Classifier: Natural Language :: English
|
|
|
20
20
|
Classifier: Operating System :: POSIX :: Linux
|
|
21
21
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
22
|
Classifier: Operating System :: Microsoft :: Windows
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.9
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
|
-
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Requires-Python: >=3.9
|
|
28
29
|
Description-Content-Type: text/markdown
|
|
29
30
|
License-File: LICENSE
|
|
30
31
|
Requires-Dist: matplotlib
|
|
@@ -32,6 +33,7 @@ Requires-Dist: numpy
|
|
|
32
33
|
Requires-Dist: scipy>=1.6.0
|
|
33
34
|
Provides-Extra: test
|
|
34
35
|
Requires-Dist: pytest>=6.2.2; extra == "test"
|
|
36
|
+
Dynamic: license-file
|
|
35
37
|
|
|
36
38
|
# PyCBA - Python Continuous Beam Analysis
|
|
37
39
|
|
|
@@ -21,12 +21,13 @@ classifiers = [
|
|
|
21
21
|
"Operating System :: POSIX :: Linux",
|
|
22
22
|
"Operating System :: MacOS :: MacOS X",
|
|
23
23
|
"Operating System :: Microsoft :: Windows",
|
|
24
|
-
"Programming Language :: Python :: 3.8",
|
|
25
24
|
"Programming Language :: Python :: 3.9",
|
|
26
25
|
"Programming Language :: Python :: 3.10",
|
|
27
26
|
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Programming Language :: Python :: 3.13",
|
|
28
29
|
]
|
|
29
|
-
requires-python = ">=3.
|
|
30
|
+
requires-python = ">=3.9"
|
|
30
31
|
dependencies = [
|
|
31
32
|
"matplotlib",
|
|
32
33
|
"numpy",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyCBA
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: Python Continuous Beam Analysis
|
|
5
5
|
Author-email: Colin Caprani <colin.caprani@monash.edu>
|
|
6
6
|
License: Apache 2.0
|
|
@@ -20,11 +20,12 @@ Classifier: Natural Language :: English
|
|
|
20
20
|
Classifier: Operating System :: POSIX :: Linux
|
|
21
21
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
22
|
Classifier: Operating System :: Microsoft :: Windows
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.9
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
|
-
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Requires-Python: >=3.9
|
|
28
29
|
Description-Content-Type: text/markdown
|
|
29
30
|
License-File: LICENSE
|
|
30
31
|
Requires-Dist: matplotlib
|
|
@@ -32,6 +33,7 @@ Requires-Dist: numpy
|
|
|
32
33
|
Requires-Dist: scipy>=1.6.0
|
|
33
34
|
Provides-Extra: test
|
|
34
35
|
Requires-Dist: pytest>=6.2.2; extra == "test"
|
|
36
|
+
Dynamic: license-file
|
|
35
37
|
|
|
36
38
|
# PyCBA - Python Continuous Beam Analysis
|
|
37
39
|
|
|
@@ -15,8 +15,10 @@ src/pycba/inf_lines.py
|
|
|
15
15
|
src/pycba/load.py
|
|
16
16
|
src/pycba/pattern.py
|
|
17
17
|
src/pycba/results.py
|
|
18
|
+
src/pycba/types.py
|
|
18
19
|
src/pycba/utils.py
|
|
19
20
|
src/pycba/vehicle.py
|
|
20
21
|
tests/test_basic.py
|
|
21
22
|
tests/test_bridge.py
|
|
22
|
-
tests/test_inf_lines.py
|
|
23
|
+
tests/test_inf_lines.py
|
|
24
|
+
tests/test_results.py
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
PyCBA - Continuous Beam Analysis in Python
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
__version__ = "0.7.0"
|
|
6
|
+
|
|
7
|
+
from .analysis import BeamAnalysis
|
|
8
|
+
from .beam import Beam
|
|
9
|
+
from .load import (
|
|
10
|
+
LoadCNL,
|
|
11
|
+
MemberResults,
|
|
12
|
+
LoadMatrix,
|
|
13
|
+
LoadType,
|
|
14
|
+
parse_LM,
|
|
15
|
+
add_LM,
|
|
16
|
+
factor_LM,
|
|
17
|
+
)
|
|
18
|
+
from .results import BeamResults, Envelopes
|
|
19
|
+
from .inf_lines import InfluenceLines
|
|
20
|
+
from .utils import parse_beam_string
|
|
21
|
+
from .bridge import BridgeAnalysis
|
|
22
|
+
from .vehicle import Vehicle, make_train, VehicleLibrary
|
|
23
|
+
from .pattern import LoadPattern
|