File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments