Render all notebooks

This commit is contained in:
Rahix 2025-09-10 07:05:35 +02:00
parent 47c001529a
commit 3f862231b5
14 changed files with 632 additions and 0 deletions

View 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
```