Metadata-Version: 2.4
Name: struct_utils
Version: 0.0.2
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.
License: MIT License
         
         Copyright (c) 2026 A-Thomas-eng
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
License-File: LICENSE.txt
Keywords: engineering,mechanical,utilities,structural,fastener,fasteners,bolt,bolts,stress,materials,NASA
Author: T. Andrade
Author-email: andrade.thomas.eng@gmail.com
Requires-Python: >=3,<4
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: matplotlib (>=3.7)
Requires-Dist: numpy (>=1.24)
Requires-Dist: pandas (>=3.0.0)
Requires-Dist: pint (>=0.25.2)
Requires-Dist: plotly (>=6.6.0)
Requires-Dist: uncertainties (>=3.2.3)
Project-URL: Homepage, https://github.com/A-Thomas-eng/
Project-URL: Owner_contact, https://www.linkedin.com/in/andrade-t/
Project-URL: PIP, https://pypi.org/user/eng_calcs/
Project-URL: SRC, https://github.com/A-Thomas-eng/stuct_utils/tree/main
Description-Content-Type: text/markdown

Development package consisting of many small utility functions, mostly for structural engineering. Currently oriented for personal use, hit me up if there is interest in further development of these tools. USERS ASSUME FULL RISK AND RESPONSIBILITY FOR VERIFYING THAT THE RESULTS ARE ACCURATE AND APPROPRIATE FOR THEIR APPLICATION.


Engineering is a series of approximations. There is always a risk of errors, Validate the assumptions, models, and implementation of the methods provided are appropriate for your usecase prior to using any of these utilities. Always version lock your use of these packages, as the packages are subject to change.


Main modules:
│   └── eng_utils
│       ├── general_utils
│       │   └── logprint.py (from .logprint import logprint)
│       ├── software_utils
│       │   └── folder_structure_tree.py (from .folder_structure_tree import folder_structure_tree)
│       ├── structural_utils
│       │   ├── bolt_pattern_elastic_method.py (from .bolt_pattern_elastic_method import (Bolt, AppliedLoad, BoltResult, BoltPatternAnalysis, bolt_pattern_force_distribution, plot_bolt_pattern_3d, print_results))   
│       │   ├── NASA_TM_108378_fitting_factor.py (from .NASA_TM_108378_fitting_factor import NASA_TM_108378_fitting_factor)
│       │   ├── margin_table.py (from .margin_table import add_row, print_table)
│       │   └── shared_helpers.py (from .shared_helpers import von_mises)


