rocketpy 1.3.0__1-py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Giovani Hidalgo Ceotto
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: rocketpy
|
|
3
|
+
Version: 1.3.0
|
|
4
|
+
Summary: Advanced 6-DOF trajectory simulation for High-Power Rocketry.
|
|
5
|
+
Author-email: Giovani Hidalgo Ceotto <ghceotto@gmail.com>
|
|
6
|
+
Project-URL: homepage, https://rocketpy.org/
|
|
7
|
+
Project-URL: documentation, https://docs.rocketpy.org/
|
|
8
|
+
Project-URL: repository, https://github.com/RocketPy-Team/RocketPy
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: numpy >=1.13
|
|
16
|
+
Requires-Dist: scipy >=1.0
|
|
17
|
+
Requires-Dist: matplotlib >=3.0
|
|
18
|
+
Requires-Dist: netCDF4 >=1.6.4
|
|
19
|
+
Requires-Dist: requests
|
|
20
|
+
Requires-Dist: pytz
|
|
21
|
+
Requires-Dist: simplekml
|
|
22
|
+
Provides-Extra: all
|
|
23
|
+
Requires-Dist: rocketpy[env-analysis] ; extra == 'all'
|
|
24
|
+
Requires-Dist: rocketpy[monte-carlo] ; extra == 'all'
|
|
25
|
+
Provides-Extra: env-analysis
|
|
26
|
+
Requires-Dist: windrose >=1.6.8 ; extra == 'env-analysis'
|
|
27
|
+
Requires-Dist: timezonefinder ; extra == 'env-analysis'
|
|
28
|
+
Requires-Dist: jsonpickle ; extra == 'env-analysis'
|
|
29
|
+
Requires-Dist: ipython ; extra == 'env-analysis'
|
|
30
|
+
Requires-Dist: ipywidgets >=7.6.3 ; extra == 'env-analysis'
|
|
31
|
+
Provides-Extra: monte-carlo
|
|
32
|
+
Requires-Dist: imageio ; extra == 'monte-carlo'
|
|
33
|
+
Provides-Extra: tests
|
|
34
|
+
Requires-Dist: pytest ; extra == 'tests'
|
|
35
|
+
Requires-Dist: pytest-coverage ; extra == 'tests'
|
|
36
|
+
Requires-Dist: black[jupyter] ; extra == 'tests'
|
|
37
|
+
Requires-Dist: flake8-black ; extra == 'tests'
|
|
38
|
+
Requires-Dist: flake8-pyproject ; extra == 'tests'
|
|
39
|
+
Requires-Dist: pandas ; extra == 'tests'
|
|
40
|
+
Requires-Dist: numericalunits ==1.25 ; extra == 'tests'
|
|
41
|
+
Requires-Dist: pylint ; extra == 'tests'
|
|
42
|
+
Requires-Dist: isort ; extra == 'tests'
|
|
43
|
+
|
|
44
|
+
<picture>
|
|
45
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/RocketPy_Logo_white.png">
|
|
46
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/RocketPy_Logo_black.png">
|
|
47
|
+
<img alt="RocketPy Logo" src="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/RocketPy_Logo_black.png">
|
|
48
|
+
</picture>
|
|
49
|
+
|
|
50
|
+
<br>
|
|
51
|
+
|
|
52
|
+
[](https://colab.research.google.com/github/RocketPy-Team/rocketpy/blob/master/docs/notebooks/getting_started_colab.ipynb)
|
|
53
|
+
[](https://pypi.org/project/rocketpy/)
|
|
54
|
+
[](https://docs.rocketpy.org/en/latest/?badge=latest)
|
|
55
|
+
[](https://codecov.io/gh/RocketPy-Team/RocketPy)
|
|
56
|
+
[](https://github.com/RocketPy-Team/RocketPy/graphs/contributors)
|
|
57
|
+
[](https://discord.gg/b6xYnNh)
|
|
58
|
+
[](https://github.com/sponsors/RocketPy-Team)
|
|
59
|
+
[](https://www.instagram.com/rocketpyteam)
|
|
60
|
+
[](https://www.linkedin.com/company/rocketpy)
|
|
61
|
+
[](http://dx.doi.org/10.1061/%28ASCE%29AS.1943-5525.0001331)
|
|
62
|
+
|
|
63
|
+
<br>
|
|
64
|
+
|
|
65
|
+
# RocketPy
|
|
66
|
+
|
|
67
|
+
RocketPy is the next-generation trajectory simulation solution for High-Power Rocketry. The code is written as a [Python](http://www.python.org) library and allows for a complete 6 degrees of freedom simulation of a rocket's flight trajectory, including high-fidelity variable mass effects as well as descent under parachutes. Weather conditions, such as wind profiles, can be imported from sophisticated datasets, allowing for realistic scenarios. Furthermore, the implementation facilitates complex simulations, such as multi-stage rockets, design and trajectory optimization and dispersion analysis.
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## Main features
|
|
71
|
+
|
|
72
|
+
1. **Nonlinear 6 Degrees of Freedom Simulations**
|
|
73
|
+
- Rigorous treatment of mass variation effects
|
|
74
|
+
- Efficiently solved using LSODA with adjustable error tolerances
|
|
75
|
+
- Highly optimized for fast performance
|
|
76
|
+
|
|
77
|
+
2. **Accurate Weather Modeling**
|
|
78
|
+
- Supports International Standard Atmosphere (1976)
|
|
79
|
+
- Custom atmospheric profiles and Soundings (Wyoming, NOAARuc)
|
|
80
|
+
- Weather forecasts, reanalysis, and ensembles for realistic scenarios
|
|
81
|
+
|
|
82
|
+
3. **Aerodynamic Models**
|
|
83
|
+
- Optional Barrowman equations for lift coefficients
|
|
84
|
+
- Easy import of drag coefficients from other sources (e.g., CFD simulations)
|
|
85
|
+
|
|
86
|
+
4. **Parachutes with External Trigger Functions**
|
|
87
|
+
- Test the exact code that will fly
|
|
88
|
+
- Sensor data augmentation with noise for comprehensive parachute simulations
|
|
89
|
+
|
|
90
|
+
5. **Solid, Hybrid, and Liquid Motors Models**
|
|
91
|
+
- Burn rate and mass variation properties from the thrust curve
|
|
92
|
+
- Define custom rocket tanks based on flux data
|
|
93
|
+
- Support for CSV and ENG file formats
|
|
94
|
+
|
|
95
|
+
6. **Monte Carlo Simulations**
|
|
96
|
+
- Conduct dispersion analysis and global sensitivity analysis
|
|
97
|
+
|
|
98
|
+
7. **Flexible and Modular**
|
|
99
|
+
- Perform straightforward engineering analysis (e.g., apogee and lift-off speed as a function of mass)
|
|
100
|
+
- Handle non-standard flights (e.g., parachute drop test from a helicopter)
|
|
101
|
+
- Support multi-stage rockets and custom continuous/discrete control laws
|
|
102
|
+
- Easily create new classes, such as other types of motors
|
|
103
|
+
|
|
104
|
+
8. **Integration with MATLAB®**
|
|
105
|
+
- Effortlessly run RocketPy from MATLAB®
|
|
106
|
+
- Convert RocketPy results to MATLAB® variables for further processing
|
|
107
|
+
|
|
108
|
+
These powerful features make RocketPy an indispensable tool for high-power rocket trajectory simulation, catering to enthusiasts, researchers, and engineers in the field of rocketry.
|
|
109
|
+
|
|
110
|
+
## Validation
|
|
111
|
+
|
|
112
|
+
RocketPy's features have been validated in our latest [research article published in the Journal of Aerospace Engineering](http://dx.doi.org/10.1061/%28ASCE%29AS.1943-5525.0001331).
|
|
113
|
+
|
|
114
|
+
The table below shows a comparison between experimental data and the output from RocketPy.
|
|
115
|
+
Flight data and rocket parameters used in this comparison were kindly provided by [EPFL Rocket Team](https://github.com/EPFLRocketTeam) and [Notre Dame Rocket Team](https://ndrocketry.weebly.com/).
|
|
116
|
+
|
|
117
|
+
| Mission | Result Parameter | RocketPy | Measured | Relative Error |
|
|
118
|
+
|:-----------------------:|:-----------------------|:---------:|:---------:|:---------------:|
|
|
119
|
+
| Bella Lui Kaltbrumn | Apogee altitude (m) | 461.03 | 458.97 | **0.45 %** |
|
|
120
|
+
| Bella Lui Kaltbrumn | Apogee time (s) | 10.61 | 10.56 | **0.47 %** |
|
|
121
|
+
| Bella Lui Kaltbrumn | Maximum velocity (m/s) | 86.18 | 90.00 | **-4.24 %** |
|
|
122
|
+
| NDRT launch vehicle | Apogee altitude (m) | 1,310.44 | 1,320.37 | **-0.75 %** |
|
|
123
|
+
| NDRT launch vehicle | Apogee time (s) | 16.77 | 17.10 | **-1.90 %** |
|
|
124
|
+
| NDRT launch vehicle | Maximum velocity (m/s) | 172.86 | 168.95 | **2.31 %** |
|
|
125
|
+
|
|
126
|
+
# Documentation
|
|
127
|
+
|
|
128
|
+
Check out documentation details using the links below:
|
|
129
|
+
|
|
130
|
+
- [User Guide](https://docs.rocketpy.org/en/latest/user/index.html)
|
|
131
|
+
- [Code Documentation](https://docs.rocketpy.org/en/latest/reference/index.html)
|
|
132
|
+
- [Development Guide](https://docs.rocketpy.org/en/latest/development/index.html)
|
|
133
|
+
- [Technical Documentation](https://docs.rocketpy.org/en/latest/technical/index.html)
|
|
134
|
+
- [Flight Examples](https://docs.rocketpy.org/en/latest/examples/index.html)
|
|
135
|
+
|
|
136
|
+
<br>
|
|
137
|
+
|
|
138
|
+
# Join Our Community!
|
|
139
|
+
|
|
140
|
+
RocketPy is growing fast! Many university groups and rocket hobbyists have already started using it. The number of stars and forks for this repository is skyrocketing. And this is all thanks to a great community of users, engineers, developers, marketing specialists, and everyone interested in helping.
|
|
141
|
+
|
|
142
|
+
If you want to be a part of this and make RocketPy your own, join our [Discord](https://discord.gg/b6xYnNh) server today!
|
|
143
|
+
|
|
144
|
+
<br>
|
|
145
|
+
|
|
146
|
+
# Previewing
|
|
147
|
+
|
|
148
|
+
You can preview RocketPy's main functionalities by browsing through a sample notebook in [Google Colab](https://colab.research.google.com/github/RocketPy-Team/rocketpy/blob/master/docs/notebooks/getting_started_colab.ipynb). No installation is required!
|
|
149
|
+
|
|
150
|
+
When you are ready to run RocketPy locally, you can read the *Getting Started* section!
|
|
151
|
+
|
|
152
|
+
<br>
|
|
153
|
+
|
|
154
|
+
# Getting Started
|
|
155
|
+
|
|
156
|
+
## Quick Installation
|
|
157
|
+
|
|
158
|
+
To install RocketPy's latest stable version from PyPI, just open up your terminal and run:
|
|
159
|
+
|
|
160
|
+
```shell
|
|
161
|
+
pip install rocketpy
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
For other installation options, visit our [Installation Docs](https://docs.rocketpy.org/en/latest/user/installation.html).
|
|
165
|
+
To learn more about RocketPy's requirements, visit our [Requirements Docs](https://docs.rocketpy.org/en/latest/user/requirements.html).
|
|
166
|
+
|
|
167
|
+
## Running Your First Simulation
|
|
168
|
+
|
|
169
|
+
In order to run your first rocket trajectory simulation using RocketPy, you can start a Jupyter Notebook and navigate to the `docs/notebooks` folder. Open `getting_started.ipynb` and you are ready to go. We recommend that you read the [First Simulation](https://docs.rocketpy.org/en/latest/user/first_simulation.html) page to get a complete description.
|
|
170
|
+
|
|
171
|
+
Otherwise, you may want to create your own script or your own notebook using RocketPy. To do this, let's see how to use RocketPy's four main classes:
|
|
172
|
+
|
|
173
|
+
- `Environment` - Keeps data related to weather.
|
|
174
|
+
- `Motor` - Subdivided into `SolidMotor`, `HybridMotor` and `LiquidMotor`. Keeps data related to rocket motors.
|
|
175
|
+
- `Rocket` - Keeps data related to a rocket.
|
|
176
|
+
- `Flight` - Runs the simulation and keeps the results.
|
|
177
|
+
|
|
178
|
+
The following image shows how the four main classes interact with each other:
|
|
179
|
+
|
|
180
|
+

|
|
181
|
+
|
|
182
|
+
A typical workflow starts with importing these classes from RocketPy:
|
|
183
|
+
|
|
184
|
+
```python
|
|
185
|
+
from rocketpy import Environment, Rocket, SolidMotor, Flight
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
An optional step is to import datetime, which is used to define the date of the simulation:
|
|
189
|
+
|
|
190
|
+
```python
|
|
191
|
+
import datetime
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Then create an Environment object. To learn more about it, you can use:
|
|
195
|
+
|
|
196
|
+
```python
|
|
197
|
+
help(Environment)
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
A sample code is:
|
|
201
|
+
|
|
202
|
+
```python
|
|
203
|
+
env = Environment(
|
|
204
|
+
latitude=32.990254,
|
|
205
|
+
longitude=-106.974998,
|
|
206
|
+
elevation=1400,
|
|
207
|
+
)
|
|
208
|
+
|
|
209
|
+
tomorrow = datetime.date.today() + datetime.timedelta(days=1)
|
|
210
|
+
|
|
211
|
+
env.set_date(
|
|
212
|
+
(tomorrow.year, tomorrow.month, tomorrow.day, 12), timezone="America/Denver"
|
|
213
|
+
) # Tomorrow's date in year, month, day, hour UTC format
|
|
214
|
+
|
|
215
|
+
env.set_atmospheric_model(type='Forecast', file='GFS')
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
This can be followed up by starting a Solid Motor object. To get help on it, just use:
|
|
219
|
+
|
|
220
|
+
```python
|
|
221
|
+
help(SolidMotor)
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
A sample Motor object can be created by the following code:
|
|
225
|
+
|
|
226
|
+
```python
|
|
227
|
+
Pro75M1670 = SolidMotor(
|
|
228
|
+
thrust_source="data/motors/Cesaroni_M1670.eng",
|
|
229
|
+
dry_mass=1.815,
|
|
230
|
+
dry_inertia=(0.125, 0.125, 0.002),
|
|
231
|
+
center_of_dry_mass_position=0.317,
|
|
232
|
+
grains_center_of_mass_position=0.397,
|
|
233
|
+
burn_time=3.9,
|
|
234
|
+
grain_number=5,
|
|
235
|
+
grain_separation=0.005,
|
|
236
|
+
grain_density=1815,
|
|
237
|
+
grain_outer_radius=0.033,
|
|
238
|
+
grain_initial_inner_radius=0.015,
|
|
239
|
+
grain_initial_height=0.12,
|
|
240
|
+
nozzle_radius=0.033,
|
|
241
|
+
throat_radius=0.011,
|
|
242
|
+
interpolation_method="linear",
|
|
243
|
+
nozzle_position=0,
|
|
244
|
+
coordinate_system_orientation="nozzle_to_combustion_chamber",
|
|
245
|
+
)
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
With a Solid Motor defined, you are ready to create your Rocket object. As you may have guessed, to get help on it, use:
|
|
249
|
+
|
|
250
|
+
```python
|
|
251
|
+
help(Rocket)
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
A sample code to create a Rocket is:
|
|
255
|
+
|
|
256
|
+
```python
|
|
257
|
+
calisto = Rocket(
|
|
258
|
+
radius=0.0635,
|
|
259
|
+
mass=14.426, # without motor
|
|
260
|
+
inertia=(6.321, 6.321, 0.034),
|
|
261
|
+
power_off_drag="data/calisto/powerOffDragCurve.csv",
|
|
262
|
+
power_on_drag="data/calisto/powerOnDragCurve.csv",
|
|
263
|
+
center_of_mass_without_motor=0,
|
|
264
|
+
coordinate_system_orientation="tail_to_nose",
|
|
265
|
+
)
|
|
266
|
+
|
|
267
|
+
buttons = calisto.set_rail_buttons(
|
|
268
|
+
upper_button_position=0.0818,
|
|
269
|
+
lower_button_position=-0.6182,
|
|
270
|
+
angular_position=45,
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
calisto.add_motor(Pro75M1670, position=-1.255)
|
|
274
|
+
|
|
275
|
+
nose = calisto.add_nose(
|
|
276
|
+
length=0.55829, kind="vonKarman", position=1.278
|
|
277
|
+
)
|
|
278
|
+
|
|
279
|
+
fins = calisto.add_trapezoidal_fins(
|
|
280
|
+
n=4,
|
|
281
|
+
root_chord=0.120,
|
|
282
|
+
tip_chord=0.040,
|
|
283
|
+
span=0.100,
|
|
284
|
+
sweep_length=None,
|
|
285
|
+
cant_angle=0,
|
|
286
|
+
position=-1.04956,
|
|
287
|
+
)
|
|
288
|
+
|
|
289
|
+
tail = calisto.add_tail(
|
|
290
|
+
top_radius=0.0635, bottom_radius=0.0435, length=0.060, position=-1.194656
|
|
291
|
+
)
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
You may want to add parachutes to your rocket as well:
|
|
295
|
+
|
|
296
|
+
```python
|
|
297
|
+
main = calisto.add_parachute(
|
|
298
|
+
name="main",
|
|
299
|
+
cd_s=10.0,
|
|
300
|
+
trigger=800, # ejection altitude in meters
|
|
301
|
+
sampling_rate=105,
|
|
302
|
+
lag=1.5,
|
|
303
|
+
noise=(0, 8.3, 0.5),
|
|
304
|
+
)
|
|
305
|
+
|
|
306
|
+
drogue = calisto.add_parachute(
|
|
307
|
+
name="drogue",
|
|
308
|
+
cd_s=1.0,
|
|
309
|
+
trigger="apogee", # ejection at apogee
|
|
310
|
+
sampling_rate=105,
|
|
311
|
+
lag=1.5,
|
|
312
|
+
noise=(0, 8.3, 0.5),
|
|
313
|
+
)
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
Finally, you can create a Flight object to simulate your trajectory. To get help on the Flight class, use:
|
|
317
|
+
|
|
318
|
+
```python
|
|
319
|
+
help(Flight)
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
To actually create a Flight object, use:
|
|
323
|
+
|
|
324
|
+
```python
|
|
325
|
+
test_flight = Flight(
|
|
326
|
+
rocket=calisto, environment=env, rail_length=5.2, inclination=85, heading=0
|
|
327
|
+
)
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
Once the Flight object is created, your simulation is done! Use the following code to get a summary of the results:
|
|
331
|
+
|
|
332
|
+
```python
|
|
333
|
+
test_flight.info()
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
To see all available results, use:
|
|
337
|
+
|
|
338
|
+
```python
|
|
339
|
+
test_flight.all_info()
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+
Here is just a quick taste of what RocketPy is able to calculate. There are hundreds of plots and data points computed by RocketPy to enhance your analyses.
|
|
343
|
+
|
|
344
|
+

|
|
345
|
+
|
|
346
|
+
If you want to see the trajectory on Google Earth, RocketPy acn easily export a KML file for you:
|
|
347
|
+
|
|
348
|
+
```python
|
|
349
|
+
test_flight.export_kml(file_name="test_flight.kml")
|
|
350
|
+
```
|
|
351
|
+
|
|
352
|
+
<img alt="6-DOF Trajectory Plot" src="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/trajectory-earth.png" width="501">
|
|
353
|
+
|
|
354
|
+
# Authors and Contributors
|
|
355
|
+
|
|
356
|
+
This package was originally created by [Giovani Ceotto](https://github.com/giovaniceotto/) as part of his work at [Projeto Jupiter](https://github.com/Projeto-Jupiter/). [Rodrigo Schmitt](https://github.com/rodrigo-schmitt/) was one of the first contributors. Later, [Guilherme Fernandes](https://github.com/Gui-FernandesBR/) and [Lucas Azevedo](https://github.com/lucasfourier/) joined the team to work on the expansion and sustainability of this project.
|
|
357
|
+
|
|
358
|
+
Since then, the [RocketPy Team](https://github.com/orgs/RocketPy-Team/teams/rocketpy-team) has been growing fast and our contributors are what makes us special!
|
|
359
|
+
|
|
360
|
+
## Institutional Contributors
|
|
361
|
+
|
|
362
|
+
RocketPy extends its gratitude to the following institutions for their support and contributions:
|
|
363
|
+
|
|
364
|
+
<div>
|
|
365
|
+
<a href="https://github.com/Projeto-Jupiter">
|
|
366
|
+
<picture align=top>
|
|
367
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/institutional/projeto_jupiter_dark.png" height="150px">
|
|
368
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/institutional/projeto_jupiter_light.jpg" height="150px">
|
|
369
|
+
<img align=top id="projeto-jupiter-image" alt="Projeto Jupiter Logo" src="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/institutional/projeto_jupiter_light.jpg" height="150px">
|
|
370
|
+
</picture>
|
|
371
|
+
</a>
|
|
372
|
+
<a href="https://github.com/Space-Enterprise-at-Berkeley">
|
|
373
|
+
<img align=top alt="Space Enterprise at Berkeley Logo" src="https://raw.githubusercontent.com/RocketPy-Team/RocketPy/master/docs/static/institutional/space_enterprise_at_berkeley.jpeg" height="150px">
|
|
374
|
+
</a>
|
|
375
|
+
</div>
|
|
376
|
+
|
|
377
|
+
## Individual Contributors
|
|
378
|
+
|
|
379
|
+
RocketPy is also indebted to a growing list of individual contributors who actively participate in its development. These include:
|
|
380
|
+
|
|
381
|
+
[](https://github.com/RocketPy-Team/RocketPy/contributors)
|
|
382
|
+
|
|
383
|
+
See a [detailed list of contributors](https://github.com/RocketPy-Team/RocketPy/contributors) who are actively working on RocketPy.
|
|
384
|
+
|
|
385
|
+
## Supporting RocketPy and Contributing
|
|
386
|
+
|
|
387
|
+
The easiest way to help RocketPy is to demonstrate your support by starring our repository!
|
|
388
|
+
|
|
389
|
+
[](https://starchart.cc/rocketpy-team/rocketpy)
|
|
390
|
+
|
|
391
|
+
You can also become a [sponsor](https://github.com/sponsors/RocketPy-Team) and help us financially to keep the project going.
|
|
392
|
+
|
|
393
|
+
If you are actively using RocketPy in one of your projects, reaching out to our core team via [Discord](https://discord.gg/b6xYnNh) and providing feedback can help improve RocketPy a lot!
|
|
394
|
+
|
|
395
|
+
And if you are interested in going one step further, please read [CONTRIBUTING.md](https://github.com/RocketPy-Team/RocketPy/blob/master/CONTRIBUTING.md) for details on our code of conduct and learn more about how you can contribute to the development of this next-gen trajectory simulation solution for rocketry.
|
|
396
|
+
|
|
397
|
+
## License
|
|
398
|
+
|
|
399
|
+
This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/RocketPy-Team/RocketPy/blob/master/LICENSE) file for details
|
|
400
|
+
|
|
401
|
+
## Release Notes
|
|
402
|
+
|
|
403
|
+
Want to know which bugs have been fixed and the new features of each version? Check out the [release notes](https://github.com/RocketPy-Team/RocketPy/releases).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
rocketpy-1.3.0.dist-info/LICENSE,sha256=yW57cdzzKVxFFK-hmx40XzI86tgd3DNmluc5e4GTShM,1079
|
|
2
|
+
rocketpy-1.3.0.dist-info/METADATA,sha256=Db-dLwzglATOmbvDStFMpamRMWu8yAS6QdzDi5DSqcY,17626
|
|
3
|
+
rocketpy-1.3.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
4
|
+
rocketpy-1.3.0.dist-info/top_level.txt,sha256=RnNaRRe3dIPwwuaamN5QLOgTRBe3nI84kiOvspb0wQE,9
|
|
5
|
+
rocketpy-1.3.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rocketpy
|