Bolted Joint Stress Field Model
Project description
Bolted Joint Stress Field Model (BJSFM) is a common analytical method used to analyze bolted joints in composite airframe structures. This project ports the original fortran code to pure python code using the underlying theory.
from bjsfm.analysis import MaxStrain
a_matrix = [[988374.5, 316116.9, 0.],
[316116.9, 988374.5, 0.],
[0., 0., 336128.8]]
thickness = 0.1152
diameter = 0.25
analysis = MaxStrain(a_matrix, thickness, diameter)
# get stresses, strains and displacements at four points around hole
bearing = [100, 0] #[Px, Py]
bypass = [100, 0, 0] #[Nx, Ny, Nxy]
analysis.stresses(bearing, bypass, num=4)
analysis.strains(bearing, bypass, num=4)
analysis.displacements(bearing, bypass, num=4)
# plot stresses
analysis.plot_stress(bearing, bypass)
Installation
pip install bjsfm
Documentation
Features
[X] Lekhnitskii’s anisotropic elasticity solutions for loaded (cosine distribution) and unloaded holes
[X] stresses
[X] displacements
[X] Combined bearing and bypass 2D infinite plate stress distribution
[X] Optional DeJong tension (or compression) bearing correction
[X] Max strain analysis
[ ] Plotting
[X] stresses
[ ] displacements
[X] Command-line Interface (CLI)
Web App
Contribute
Issue Tracker: https://github.com/BenjaminETaylor/bjsfm/issues
Source Code: https://github.com/BenjaminETaylor/bjsfm
Support
License
This project is licensed under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bjsfm-0.5.2.tar.gz
.
File metadata
- Download URL: bjsfm-0.5.2.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3887cf31d78d1144727741da83cf83b0a9f3eb62e4916d2a6ba43003a430a2d |
|
MD5 | 67982278f85e38b22b2dba23a8ba0515 |
|
BLAKE2b-256 | e844da23c9c3de092a2341e134cb7d1e97f0a1d2aab2e5c9795e64fb0cf30709 |
File details
Details for the file bjsfm-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: bjsfm-0.5.2-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a4222ae31a844eeac16bdb513d7b50dd1607c715640e6b40bed8712a1240072 |
|
MD5 | dc3244a80118e4356459c457e912e80c |
|
BLAKE2b-256 | 4bbf1906f7bf1fdeb7cc8c4b136d690b44012acb7dff66b4679943a0ac79f46c |