about summary refs log tree commit diff
path: root/rocket.py
diff options
context:
space:
mode:
authorBaitinq <you@example.com>2022-02-10 23:35:08 +0000
committerBaitinq <you@example.com>2022-02-10 23:35:08 +0000
commit4da2b48e4e6837047b4076e9ec388c1a8d00afa3 (patch)
tree9e2f91afe8c6a78ba1a39b425e9abf46220c781a /rocket.py
parentFixed heading calculation by using atan2 (diff)
downloadOSLS-4da2b48e4e6837047b4076e9ec388c1a8d00afa3.tar.gz
OSLS-4da2b48e4e6837047b4076e9ec388c1a8d00afa3.tar.bz2
OSLS-4da2b48e4e6837047b4076e9ec388c1a8d00afa3.zip
Started preparation to implement proper altitude calculations and gravity
Diffstat (limited to 'rocket.py')
-rw-r--r--rocket.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rocket.py b/rocket.py
index 962678b..fb8ea7c 100644
--- a/rocket.py
+++ b/rocket.py
@@ -37,5 +37,7 @@ class Rocket():
     def s_drag_coefficient(self):
         return self.top_stage().drag_coefficient
 
+    #TODO: IMPLEMENT rocket_x_drag_coefficient() that adds the x drag coefficient of all stages, same with cross sectional area
+
     def __str__(self):
         return "eue"
\ No newline at end of file