Skip to content

Commit

Permalink
not using mach for move en creation of traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis-Wijngaarden committed Apr 9, 2024
1 parent 1fff92f commit 34bb2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluesky/tools/aero.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def vcasormach(spd, h):
- cas: Calibrated airspeed [m/s]
- mach: Mach number [-]
"""
ismach = np.logical_and(spd > 0.1, spd < casmach_thr)
ismach = False; #np.logical_and(spd > 0.1, spd < casmach_thr)
tas = np.where(ismach, vmach2tas(spd, h), vcas2tas(spd, h))
cas = np.where(ismach, vtas2cas(tas, h), spd)
mach = np.where(ismach, spd, vtas2mach(tas, h))
Expand Down

0 comments on commit 34bb2b8

Please sign in to comment.