mirror of
https://gitlab.com/MisterBiggs/aero-astro-calc.git
synced 2025-06-15 22:56:47 +00:00
46 lines
683 B
Markdown
46 lines
683 B
Markdown
# Aero-Astro-Calc
|
|
|
|
A small python library with functions to assist engineers.
|
|
|
|
## Getting Started
|
|
|
|
- Install using pip:
|
|
|
|
```
|
|
pip install aero-astro-calc
|
|
```
|
|
|
|
- Import into your Python project
|
|
|
|
```python
|
|
from aero_astro_calc import PlaneStress
|
|
```
|
|
|
|
## Usage
|
|
|
|
Make plane stress object:
|
|
|
|
```python
|
|
stress = PlaneStress(80, -40, 25)
|
|
```
|
|
|
|
View the stress on a 2D plane:
|
|
|
|
```python
|
|
stress.plane()
|
|
```
|
|
|
|

|
|
|
|
View Mohr's circle of the stresses:
|
|
|
|
```python
|
|
stress.mohr()
|
|
```
|
|
|
|

|
|
|
|
## Contact
|
|
|
|
Anson Biggs - [anson@ansonbiggs.com](mailto:anson@ansonbiggs.com) - [@Anson_3D](https://twitter.com/Anson_3D)
|