Minimum VLS correction
This commit is contained in:
parent
75e1f50d58
commit
c7ccadb458
1 changed files with 8 additions and 0 deletions
|
@ -313,6 +313,10 @@ var masterFMGC = maketimer(0.2, func {
|
||||||
vls = vs1g_conf_full * 1.23
|
vls = vs1g_conf_full * 1.23
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (vls < 113) {
|
||||||
|
vls = 113;
|
||||||
|
}
|
||||||
|
|
||||||
if (!getprop("FMGC/internal/vapp-speed-set")) {
|
if (!getprop("FMGC/internal/vapp-speed-set")) {
|
||||||
if (dest_wind < 5) {
|
if (dest_wind < 5) {
|
||||||
vapp = vls + 5;
|
vapp = vls + 5;
|
||||||
|
@ -363,6 +367,10 @@ var masterFMGC = maketimer(0.2, func {
|
||||||
vls_appr = vs1g_conf_full_appr * 1.23
|
vls_appr = vs1g_conf_full_appr * 1.23
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (vls_appr < 113) {
|
||||||
|
vls_appr = 113;
|
||||||
|
}
|
||||||
|
|
||||||
if (!getprop("FMGC/internal/vapp-speed-set")) {
|
if (!getprop("FMGC/internal/vapp-speed-set")) {
|
||||||
if (dest_wind < 5) {
|
if (dest_wind < 5) {
|
||||||
vapp_appr = vls_appr + 5;
|
vapp_appr = vls_appr + 5;
|
||||||
|
|
Loading…
Reference in a new issue