Skip to main content

Bolted Joint Stress Field Model

Project description

bjsfm

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.lekhnitskii import UnloadedHole
a_inv = [[0.1, 0.05, 0.], [0.05, 0.1, 0.], [0., 0., 0.5]]  # inverse a-matrix from CLPT
loads = [100, 100, 50]  # force / unit length
plate = UnloadedHole(diameter=0.25, thickness=0.1, a_inv=a_inv, loads=loads)

# get stresses at four points around hole
plate.stress(x=[0.125, 0., -0.125, 0.], y=[0., 0.125, 0., -0.125])

# plot stresses
from bjsfm import plotting
plotting.plot_stress(plate)

Features

  • [ ] Lekhnitskii’s anisotropic elasticity solutions for loaded (cosine distribution) and unloaded holes

    • [X] stresses

    • [ ] displacements

  • [ ] Combined bearing and bypass 2D infinite plate stress distribution

  • [ ] Optional DeJong tension (or compression) bearing correction

Installation

pip install bjsfm

Contribute

Support

benjaminearltaylor@gmail.com

License

This project is licensed under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bjsfm-0.1.1.tar.gz (11.7 kB view hashes)

Uploaded Source

Built Distribution

bjsfm-0.1.1-py3-none-any.whl (13.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page