physics.shear_stress¶
Functions¶
|
This function can calculate any one of the three - |
Module Contents¶
- physics.shear_stress.shear_stress(stress: float, tangential_force: float, area: float) tuple[str, float] ¶
This function can calculate any one of the three - 1. Shear Stress 2. Tangential Force 3. Cross-sectional Area This is calculated from the other two provided values Examples - >>> shear_stress(stress=25, tangential_force=100, area=0) (‘area’, 4.0) >>> shear_stress(stress=0, tangential_force=1600, area=200) (‘stress’, 8.0) >>> shear_stress(stress=1000, tangential_force=0, area=1200) (‘tangential_force’, 1200000)