struct_utils 0.0.3__tar.gz → 0.0.4__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.
- {struct_utils-0.0.3 → struct_utils-0.0.4}/PKG-INFO +1 -1
- {struct_utils-0.0.3 → struct_utils-0.0.4}/pyproject.toml +1 -1
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/bolt_pattern_elastic_method.py +4 -5
- {struct_utils-0.0.3 → struct_utils-0.0.4}/LICENSE.txt +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/README.md +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/__init__.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/general_utils/__init__.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/general_utils/logprint.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/software_utils/__init__.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/software_utils/folder_structure_tree.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/NASA_TM_108378_fitting_factor.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/__init__.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/bolt_pattern_elastic_method_README.md +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/margin_table.py +0 -0
- {struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/shared_helpers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: struct_utils
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Development package consisting of many small utility functions, mainly oriented towards structural engineering. Currently structured for personal use, hit me up if there is interest in further development of additional or extended functionality. Published functions should be feature complete. USERS ASSUME FULL RISK AND RESPONSIBILITY FOR VERIFYING THAT THE RESULTS ARE ACCURATE AND APPROPRIATE FOR THEIR APPLICATION.
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "struct_utils"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.4"
|
|
4
4
|
description = "Development package consisting of many small utility functions, mainly oriented towards structural engineering. Currently structured for personal use, hit me up if there is interest in further development of additional or extended functionality. Published functions should be feature complete. USERS ASSUME FULL RISK AND RESPONSIBILITY FOR VERIFYING THAT THE RESULTS ARE ACCURATE AND APPROPRIATE FOR THEIR APPLICATION."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { file = "LICENSE.txt" }
|
|
@@ -670,11 +670,10 @@ def plot_bolt_pattern_3d(
|
|
|
670
670
|
def print_results(results: list[BoltResult], analysis: BoltPatternAnalysis) -> None:
|
|
671
671
|
xc, yc = analysis.centroid
|
|
672
672
|
Fc_x, Fc_y, Fc_z, Mc_x, Mc_y, Mc_z = analysis.centroidal_loads()
|
|
673
|
-
max_tension = max(
|
|
674
|
-
min_tension = min(
|
|
675
|
-
max_shear = max(
|
|
676
|
-
min_shear = min(
|
|
677
|
-
|
|
673
|
+
max_tension = max(results, key=lambda r: r.Fz_total)
|
|
674
|
+
min_tension = min(results, key=lambda r: r.Fz_total)
|
|
675
|
+
max_shear = max(results, key=lambda r: r.F_shear)
|
|
676
|
+
min_shear = min(results, key=lambda r: r.F_shear)
|
|
678
677
|
|
|
679
678
|
print("=" * 60)
|
|
680
679
|
print("BOLT PATTERN PROPERTIES")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/software_utils/folder_structure_tree.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{struct_utils-0.0.3 → struct_utils-0.0.4}/src/struct_utils/structural_utils/shared_helpers.py
RENAMED
|
File without changes
|