Skip to content

Commit c3c20d0

Browse files
authored
Merge pull request #346 from RocketPy-Team/fix/flight-reynolds-dynamic-viscosity
Fix: Flight Reynolds & Dynamic viscosity wrong values
2 parents 35eca94 + c255e1c commit c3c20d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rocketpy/Flight.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,7 @@ def density(self):
17791779
@funcify_method("Time (s)", "Dynamic Viscosity (Pa s)", "spline", "constant")
17801780
def dynamicViscosity(self):
17811781
"""Air dynamic viscosity felt by the rocket as a rocketpy.Function of time."""
1782-
return self.retrieve_temporary_values_arrays[7]
1782+
return self.retrieve_temporary_values_arrays[8]
17831783

17841784
@funcify_method("Time (s)", "Speed of Sound (m/s)", "spline", "constant")
17851785
def speedOfSound(self):

0 commit comments

Comments
 (0)