Skip to content

Commit a138746

Browse files
committed
DOC: improving Environment documentation
1 parent 653f0a6 commit a138746

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rocketpy/environment/environment.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -586,16 +586,16 @@ def __reset_wind_direction_function(self):
586586
self.wind_direction.set_title("Wind Direction Profile")
587587

588588
def __set_earth_rotation_vector(self):
589-
"""Calculates and stores the Earth's angular velocity vector in the local
590-
reference frame, which is essential for evaluating inertial forces.
589+
"""Calculates and stores the Earth's angular velocity vector in the Flight
590+
Coordinate System, which is essential for evaluating inertial forces.
591591
"""
592592
# Sidereal day
593593
T = 86164.1 # seconds
594594

595595
# Earth's angular velocity magnitude
596596
wE = 2*np.pi/T
597597

598-
# Vector in the local reference frame
598+
# Vector in the Flight Coordinate System
599599
lat = np.radians(self.latitude)
600600
wL = [0, wE * np.cos(lat), wE * np.sin(lat)]
601601

0 commit comments

Comments
 (0)