Render all notebooks
This commit is contained in:
parent
47c001529a
commit
3f862231b5
14 changed files with 632 additions and 0 deletions
25
Calculations/rendered/Connector-Plate.md
Normal file
25
Calculations/rendered/Connector-Plate.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
```python
|
||||
from pint import UnitRegistry
|
||||
unit = UnitRegistry()
|
||||
unit.formatter.default_format = "~"
|
||||
|
||||
preload_m4 = 3000 * unit.N
|
||||
n_screws = 4 # 2 on each side
|
||||
friction_coeff = 0.21 # Al on Al
|
||||
safety_factor = 1.5
|
||||
|
||||
max_load = preload_m4 * friction_coeff * n_screws / safety_factor / unit.standard_gravity
|
||||
max_load.to(unit.kg)
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
171.312323780292 kg
|
||||
|
||||
|
||||
|
||||
|
||||
```python
|
||||
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue