Skip to content

Commit 2432ea8

Browse files
authored
Merge pull request #224 from RocketPy-Team/rel/v0.11.1
REL: v0.11.1
2 parents 256f90d + 0867b7a commit 2432ea8

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = "Giovani Hidalgo Ceotto"
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = "0.11.0"
27+
release = "0.11.1"
2828

2929

3030
# -- General configuration ---------------------------------------------------

docs/user/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you want to choose a specific version to guarantee compatibility, you may ins
1919

2020
.. code-block:: shell
2121
22-
pip install rocketpy==0.11.0
22+
pip install rocketpy==0.11.1
2323
2424
2525
Optional Installation Method: ``conda``

rocketpy/Flight.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ def uDot(self, t, u, postProcessing=False):
13681368

13691369
# Determine aerodynamics forces
13701370
# Determine Drag Force
1371-
if t > self.rocket.motor.burnOutTime:
1371+
if t < self.rocket.motor.burnOutTime:
13721372
dragCoeff = self.rocket.powerOnDrag.getValueOpt(freestreamMach)
13731373
else:
13741374
dragCoeff = self.rocket.powerOffDrag.getValueOpt(freestreamMach)

rocketpy/Rocket.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,14 @@ def __init__(
191191
powerOffDrag,
192192
"Mach Number",
193193
"Drag Coefficient with Power Off",
194-
"spline",
194+
"linear",
195195
"constant",
196196
)
197197
self.powerOnDrag = Function(
198198
powerOnDrag,
199199
"Mach Number",
200200
"Drag Coefficient with Power On",
201-
"spline",
201+
"linear",
202202
"constant",
203203
)
204204

rocketpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
__copyright__ = "Copyright 20XX, Projeto Jupiter"
1717
__credits__ = ["Matheus Marques Araujo", "Rodrigo Schmitt", "Guilherme Tavares"]
1818
__license__ = "MIT"
19-
__version__ = "0.11.0"
19+
__version__ = "0.11.1"
2020
__maintainer__ = "Giovani Hidalgo Ceotto"
2121
__email__ = "[email protected]"
2222
__status__ = "Production"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="rocketpy",
8-
version="0.11.0",
8+
version="0.11.1",
99
install_requires=[
1010
"numpy>=1.0",
1111
"scipy>=1.0",

0 commit comments

Comments
 (0)