From 89c26497d7cc65c5b26be5365edbcd662ff3cf47 Mon Sep 17 00:00:00 2001 From: Giovani Hidalgo Ceotto Date: Fri, 4 Sep 2020 23:40:23 -0300 Subject: [PATCH 1/3] Fix missing density in parachute drag force calc --- rocketpy/Flight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocketpy/Flight.py b/rocketpy/Flight.py index 3c0f51877..59a2f094b 100644 --- a/rocketpy/Flight.py +++ b/rocketpy/Flight.py @@ -1457,7 +1457,7 @@ def uDotParachute(self, t, u, postProcessing=False): freestreamY = vy - windVelocityY freestreamZ = vz # Determine drag force - pseudoD = -0.5 * CdS * freestreamSpeed - ka * rho * 4 * np.pi * (R ** 2) * Rdot + pseudoD = -0.5 * rho * CdS * freestreamSpeed - ka * rho * 4 * np.pi * (R ** 2) * Rdot Dx = pseudoD * freestreamX Dy = pseudoD * freestreamY Dz = pseudoD * freestreamZ From b933a3c20ab2b3a3f36dcbd448371195f1c9e0cb Mon Sep 17 00:00:00 2001 From: Giovani Ceotto Date: Fri, 4 Sep 2020 23:56:43 -0300 Subject: [PATCH 2/3] Added link to release notes --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 655cbb914..f0d7298cf 100644 --- a/README.md +++ b/README.md @@ -240,10 +240,6 @@ TestFlight.allInfo() Please read [CONTRIBUTING.md](https://github.com/giovaniceotto/RocketPy/blob/master/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us. - **_Still working on this!_** -## Versioning - -**_Still working on this!_** - ## Authors * **Giovani Hidalgo Ceotto** @@ -254,6 +250,6 @@ See also the list of [contributors](https://github.com/giovaniceotto/RocketPy/co This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/giovaniceotto/RocketPy/blob/master/LICENSE) file for details -## Acknowledgments +## Release Notes +Want to know which bugs have been fixed and new features of each version? Check out the [release notes](https://github.com/giovaniceotto/RocketPy/releases). -**_Still working on this!_** From 6e3478f962df55b8050e99284aacdfa5bf16b644 Mon Sep 17 00:00:00 2001 From: Giovani Ceotto Date: Fri, 4 Sep 2020 23:57:05 -0300 Subject: [PATCH 3/3] Update version to 0.9.6 --- docs/conf.py | 2 +- rocketpy/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 768a133c2..e3ce0ebbf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Giovani Hdalgo Ceotto' # The full version, including alpha/beta/rc tags -release = '0.9.5' +release = '0.9.6' # -- General configuration --------------------------------------------------- diff --git a/rocketpy/__init__.py b/rocketpy/__init__.py index 2a00763ef..981130c82 100644 --- a/rocketpy/__init__.py +++ b/rocketpy/__init__.py @@ -15,7 +15,7 @@ __copyright__ = "Copyright 20XX, Projeto Jupiter" __credits__ = ["Matheus Marques Araujo", "Rodrigo Schmitt", "Guilherme Tavares"] __license__ = "MIT" -__version__ = "0.9.5" +__version__ = "0.9.6" __maintainer__ = "Giovani Hidalgo Ceotto" __email__ = "ghceotto@gmail.com" __status__ = "Production" diff --git a/setup.py b/setup.py index 275f80ea6..f81f56d4e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="rocketpyalpha", - version="0.9.5", + version="0.9.6", install_requires = [ 'numpy>=1.0', 'scipy>=1.0',