-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SWTOC/SWTOD: Extension of autopilot logic for vertical path following…
… (VNAV) Switch on or off the: - top of descent logic (descend as early as allowed by altitude constraints in flight plan and as fast as allowed by performance) - top of climb logic (climb as early as allowed by altitude contraints in flight plan ans as fast as allowed by performance) As this logic is normally used by the FMS of an ailiner it is on by default, but can be switched on or off with the SWTOC and SWTOD command: acid SWTOC ON/OFF acid SWTOD ON/OFF When swithced off, the aircraft will start climbing or descending to the next altitude contstraint with a vertical speed aiming to arrive at the next altitude contraint further down the flight plan. (Intermediate waypoints without altitude contraints are irrelevant and not considered in the VNAV logic for altitude.) Also some cleaning up: more comments have been added top the source code and old code has been deleted.
- Loading branch information
1 parent
5eab375
commit 75141ea
Showing
5 changed files
with
179 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
00:00:00.00>cre kl204,B744,52,4,90,2000,200 | ||
00:00:00.00>swtoc kl204,on | ||
00:00:00.00>kl204 addwpt 52,4.5 | ||
00:00:00.00>kl204 addwpt 52,5 | ||
00:00:00.00>kl204 addwpt 52,5.5 | ||
00:00:00.00>kl204 addwpt 52,6,FL100 | ||
00:00:00.00>kl204 addwpt 52,6.5 | ||
00:00:00.00>kl204 addwpt 52,7 | ||
00:00:00.00>kl204 addwpt 52,7.5 | ||
00:00:00.00>kl204 addwpt 52,8 | ||
00:00:00.00>kl204 VNAV ON | ||
00:00:00.00>cre kl205,B744,51.5,4,90,2000,200 | ||
00:00:00.00>swtoc kl205,off | ||
00:00:00.00>kl205 addwpt 51.5,4.5 | ||
00:00:00.00>kl205 addwpt 51.5,5 | ||
00:00:00.00>kl205 addwpt 51.5,5.5 | ||
00:00:00.00>kl205 addwpt 51.5,6,FL100 | ||
00:00:00.00>kl205 addwpt 51.5,6.5 | ||
00:00:00.00>kl205 addwpt 51.5,7 | ||
00:00:00.00>kl205 addwpt 51.5,7.5 | ||
00:00:00.00>kl205 addwpt 51.5,8 | ||
00:00:00.00>kl205 VNAV ON | ||
00:00:00.00>plot alt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
00:00:00.00>cre kl204,B744,52,4,90,FL100,200 | ||
# rod/toc on is also default | ||
00:00:00.00>swtod kl204,on | ||
00:00:00.00>kl204 addwpt 52,4.5 | ||
00:00:00.00>kl204 addwpt 52,5 | ||
00:00:00.00>kl204 addwpt 52,5.5 | ||
00:00:00.00>kl204 addwpt 52,6,2000 | ||
00:00:00.00>kl204 addwpt 52,6.5 | ||
00:00:00.00>kl204 addwpt 52,7 | ||
00:00:00.00>kl204 addwpt 52,7.5 | ||
00:00:00.00>kl204 addwpt 52,8 | ||
00:00:00.00>kl204 VNAV ON | ||
00:00:00.00>cre kl205,B744,51.5,4,90,FL100,200 | ||
00:00:00.00>swtod kl205,off | ||
00:00:00.00>kl205 addwpt 51.5,4.5 | ||
00:00:00.00>kl205 addwpt 51.5,5 | ||
00:00:00.00>kl205 addwpt 51.5,5.5 | ||
00:00:00.00>kl205 addwpt 51.5,6,2000 | ||
00:00:00.00>kl205 addwpt 51.5,6.5 | ||
00:00:00.00>kl205 addwpt 51.5,7 | ||
00:00:00.00>kl205 addwpt 51.5,7.5 | ||
00:00:00.00>kl205 addwpt 51.5,8 | ||
00:00:00.00>kl205 VNAV ON | ||
00:00:00.00>plot alt | ||
|