Add your description here
Project description
BSTART-TRB
Cylindrical/Tapered Roller Bearing Slice Stress Calculation Module
A high-performance Python package for calculating contact stress distribution in roller bearings using the slice method with Fortran computational core.
Features
- ๐ Fast Fortran Core: Compiled Fortran code via f2py for optimal performance
- ๐ฆ Pre-compiled Binary: No Fortran compiler required for installation
- ๐ฏ Type-Safe: Complete type hints and IDE support
- ๐ฌ Accurate: Uses influence coefficient method based on elastic contact theory
- ๐ Flexible: Supports various crown types (linear, circular, logarithmic)
Installation
pip install bstart-trb
Note: This package includes pre-compiled binaries for Windows (x64) + Python 3.11. Support for other platforms coming soon.
Quick Start
from bstart_trb import (
slice_stress,
RollerParams,
RacewayParams,
CrownType,
RacewayType,
)
# Define cylindrical roller parameters
roller = RollerParams(
d1=10.0, # Small end diameter (mm)
d2=10.0, # Large end diameter (mm)
length=9.6, # Effective length (mm)
alfa=0.0, # Half cone angle (degrees)
tilt=0.0, # Tilt angle (degrees)
crown_type=CrownType.LOGARITHMIC,
curve_q=14100.0, # Design load (N)
)
# Define outer ring raceway parameters
raceway = RacewayParams(
diameter=-150.0, # Negative for concave surface (mm)
raceway_type=RacewayType.OUTER,
fai=0.0, # Half cone angle (degrees)
)
# Calculate slice stress distribution
result = slice_stress(roller, raceway, load=1340.86, n_slice=30)
# Access scalar results
print(f"Converged: {result.converged}")
print(f"Max stress: {result.max_stress:.0f} MPa")
print(f"Mean stress: {result.mean_stress:.0f} MPa")
print(f"Contact deflection: {result.deflection:.6f} mm")
print(f"Stress uniformity: {result.stress_uniformity:.2%}")
print(f"Contact slices: {result.contact_slices}/{result.n_slice}")
# Access array results
print(f"Stress distribution: {result.stress}") # MPa per slice
print(f"Contact half-widths: {result.half_width}") # mm per slice
print(f"Slice forces: {result.slice_force}") # N per slice
# Get slice positions along roller length
positions = result.get_slice_positions(roller.length) # mm
print(f"Slice positions: {positions}")
Return Value: SliceResult
The slice_stress() function returns a SliceResult object containing:
Array Attributes
| Attribute | Type | Unit | Description |
|---|---|---|---|
stress |
NDArray[float64] |
MPa | Contact stress at each slice center |
half_width |
NDArray[float64] |
mm | Contact half-width at each slice |
slice_force |
NDArray[float64] |
N | Contact force at each slice |
Scalar Attributes
| Attribute | Type | Unit | Description |
|---|---|---|---|
n_slice |
int |
- | Number of slices |
deflection |
float |
mm | Roller deformation |
equilibrium_load |
float |
N | Equilibrium load (should match input) |
equilibrium_moment |
float |
Nยทmm | Equilibrium moment |
converged |
bool |
- | Whether the iteration converged |
error_code |
int |
- | 0=success, 1=solve failed, 2=invalid n_slice, 3=invalid load |
Computed Properties
| Property | Type | Unit | Description |
|---|---|---|---|
max_stress |
float |
MPa | Maximum contact stress |
min_stress |
float |
MPa | Minimum contact stress (non-zero) |
mean_stress |
float |
MPa | Mean contact stress (contact zone only) |
contact_slices |
int |
- | Number of slices in contact (stress > 0) |
stress_uniformity |
float |
0~1 | Stress uniformity (1 = perfectly uniform) |
Methods
| Method | Returns | Description |
|---|---|---|
get_slice_positions(roller_length) |
NDArray[float64] |
Center position of each slice (mm) |
get_slice_width(roller_length) |
float |
Width of each slice (mm) |
get_slice_spacing(roller_length) |
float |
Spacing between slice centers (mm) |
Other Functions
batch_slice_stress()
Calculate stress for multiple loads at once:
from bstart_trb import batch_slice_stress
loads = [1340.0, 1128.3, 689.2, 324.8]
results = batch_slice_stress(roller, raceway, loads, n_slice=30)
for i, result in enumerate(results):
print(f"Load {loads[i]:.1f}N: Max stress {result.max_stress:.0f} MPa")
is_fortran_available()
Check if Fortran core is available:
from bstart_trb import is_fortran_available
if is_fortran_available():
print("Fortran core ready")
else:
print("Fortran core not compiled")
Enum Types
CrownType - Crown Modification Types
| Value | Name | Description |
|---|---|---|
| 0 | STRAIGHT |
No crown modification - high edge stress |
| 1 | ARC |
Circular crown - requires arc radius |
| 2 | LOGARITHMIC |
Logarithmic crown (recommended) - optimal stress distribution |
RacewayType - Raceway Types
| Value | Name | Description |
|---|---|---|
| 0 | PLANE |
Flat surface contact |
| 1 | INNER |
Inner ring raceway (convex surface) |
| 2 | OUTER |
Outer ring raceway (concave surface) - use negative diameter |
Key Parameters Explained
Roller Parameters
| Parameter | Unit | Description |
|---|---|---|
d1 |
mm | Roller small end diameter (equal to d2 for cylindrical) |
d2 |
mm | Roller large end diameter |
length |
mm | Effective roller length |
alfa |
deg | Roller half cone angle (0 for cylindrical) |
tilt |
deg | Roller tilt angle (see below) |
crown_type |
- | Crown modification type (see enum) |
curve_q |
N | Design load for crown optimization (see below) |
Raceway Parameters
| Parameter | Unit | Description |
|---|---|---|
diameter |
mm | Raceway diameter (negative for outer ring) |
raceway_type |
- | Inner/Outer raceway type |
fai |
deg | Raceway half cone angle |
Calculation Parameters
| Parameter | Unit | Description |
|---|---|---|
load |
N | Applied load on roller |
n_slice |
- | Number of slices (default 30, max 50) |
Understanding curve_q (Design Load)
The curve_q parameter determines the logarithmic crown profile. It affects stress distribution:
| Condition | Stress Distribution |
|---|---|
load == curve_q |
Uniform - optimal crown compensation |
load < curve_q |
Center high, edge low - edge may lose contact |
load > curve_q |
Edge high, center low - edge stress concentration |
Tip: Set curve_q to your most common operating load.
Understanding tilt (Tilt Angle)
Roller tilt causes asymmetric stress distribution:
tilt = 0 (normal): tilt > 0 (tilted):
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
โ uniform stress โ โ high โ low โ
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
Sources of tilt: shaft deflection, mounting errors, housing deformation.
Why Outer Ring Uses Negative Diameter?
Hertz contact theory sign convention:
- Positive curvature โ Convex surface (roller, inner ring)
- Negative curvature โ Concave surface (outer ring)
Example: Outer ring with 150mm diameter โ diameter = -150.0
What is Slice Calculation?
The slice method divides the roller-raceway contact into multiple slices along the roller length to accurately calculate stress distribution. This is essential for:
- Capturing edge stress concentration effects
- Analyzing the impact of crown modifications
- Predicting bearing life more accurately
- Understanding load distribution along roller length
Theory
This package implements the influence coefficient method based on elastic half-space contact theory:
- Discretizes roller into slices
- Calculates elastic coupling between slices (influence coefficient matrix)
- Solves linear system using Gaussian elimination
- Iterates to convergence for contact area and load balance
The method is more accurate than simplified Hertz formulas as it accounts for:
- Elastic coupling between slices
- Dynamic contact area determination
- Edge loading effects
- Crown modification influence
Requirements
- Python >= 3.11
- NumPy >= 2.0.0
Platform Support
| Platform | Status |
|---|---|
| Windows (x64) | โ Supported |
| Linux | ๐ง Coming soon |
| macOS | ๐ง Coming soon |
License
MIT License - See LICENSE file for details.
Author
Gu Lei
References
- Harris, T.A., Kotzalas, M.N. - Rolling Bearing Analysis, 5th Edition
- Johnson, K.L. - Contact Mechanics
- ISO/TS 16281:2008 - Rolling bearings calculation methods
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bstart_trb-0.2.2.tar.gz.
File metadata
- Download URL: bstart_trb-0.2.2.tar.gz
- Upload date:
- Size: 166.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06df2a2c865a2d55a652e100415bcaa93aaa233b378ea3cec2d62fdee0890b86
|
|
| MD5 |
054b416cf17e44b479eb811346d1d936
|
|
| BLAKE2b-256 |
a38c66ebc6cfc3246e12bc9d4e38dc9c805dde74370eefe2e6cfe9a849884180
|
File details
Details for the file bstart_trb-0.2.2-py3-none-any.whl.
File metadata
- Download URL: bstart_trb-0.2.2-py3-none-any.whl
- Upload date:
- Size: 76.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ae2c2839d77ec19d4ea728e785972b81acb9e2b23b45ca57248c0e0830cd235
|
|
| MD5 |
d7449e0ffe15ed6d3448e9adb2284fa8
|
|
| BLAKE2b-256 |
ddef7e5c9ea724679735b7799e1cd6b088d862609e7da185f64cd668d89f9bbf
|