I just think about creating a main panel for the great Leonardo MD-80….did someone work on that before?
X-Plane, P3D or MSFS?
Thanks and regards,
Herbert
Air Manager Panel for Leonardo Maddog X MSFS
Air Manager Panel for Leonardo Maddog X MSFS
Last edited by Puukka on Tue Feb 07, 2023 7:48 pm, edited 1 time in total.
Herbert Puukka
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
-
- Posts: 85
- Joined: Wed Dec 05, 2018 4:50 pm
Re: MD-80 instruments anyone?
I think that would be a great project, especially if designed to work with both Leonarodo and Rotate MD-80s.
I have converted some of generic instruments to work with the Rotate MD-80 in X-Plane. The instruments are not the same but they did the job. Having Left/Right, Center, Overhead and Pedestal panels for MD-80 would be a great omage to this great aircraft. And many of the instruments could be reused in DC-9 and DC-8 projects.
I have converted some of generic instruments to work with the Rotate MD-80 in X-Plane. The instruments are not the same but they did the job. Having Left/Right, Center, Overhead and Pedestal panels for MD-80 would be a great omage to this great aircraft. And many of the instruments could be reused in DC-9 and DC-8 projects.
Re: MD-80 instruments anyone?
Thanks for the info Serge! I‘ll keep you updated when I start the project.
Regards, Herbert
Regards, Herbert
Herbert Puukka
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
Re: Air Manager Panel for Leonardo Maddog X MSFS
Here´s my first Alpha version of the MD-80 for the Leonardo Maddog X MSFS, including instruments for basic Normal Procedures.....
Anyone knows how to read EGT and EPR?
Regards, Herbert
Anyone knows how to read EGT and EPR?
Regards, Herbert
Last edited by Puukka on Wed Feb 15, 2023 10:23 pm, edited 2 times in total.
Herbert Puukka
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
Re: Air Manager Panel for Leonardo Maddog X MSFS
The regular EGT variable isn't usable?
Re: Air Manager Panel for Leonardo Maddog X MSFS
Hi Ralph
Would be great if someone could help me here:
It´s the first tme I touch gauges of a plane, so there might be tricks to get them right.
When I use this format the lvar values of N1 and N2 are nicely corresponding with the values shown:
--N1L
rotate(img_needle_N11, 225)
txt_N1L = txt_add("00", "size:25px; color: #CCFF00; halign:right;", 35, 326, 120, 40)
function new_N11(N11)
N1L = var_cap(N11[1], 0, 100)
rotate(img_needle_N11, 240 / 100 * N1L + 225)
N1L = var_round(N1L, 1)
txt_set(txt_N1L, N1L)
end
function new_N1L_cb(n11)
new_N11({n11})
txt_set(txt_N1L, string.format("%3.00f",N1L))
end
fs2020_variable_subscribe("L:md_n11_rpm_percent", "Percent", new_N1L_cb)
But at the EPR and EGT gauges there are different values shown as the lvar is sending.
As you can see at the screenshots the original EGT Lvar value at idle throttle is 562 degrees but at the plane it should show 376 degrees.
Can I show a different text as the original Lvar value?
I´m sorry to say I don´t understand how I can interpolate the gauge to show different values and range.
Could someone maybe write an example using my original EGT code?
--EGT1
rotate(img_needle_EGT1, 225)
txt_EGTL = txt_add("00", "size:25px; color: #CCFF00; halign:right;", 35, 459, 120, 40)
function new_EGT1(EGT1)
EGTL = var_cap(EGT1[1], 0, 1000)
rotate(img_needle_EGT1, 240 / 1000 * EGTL + 225)
EGTL = var_round(EGTL, 1)
txt_set(txt_EGTL, EGTL)
end
function new_EGTL_cb(egt1)
new_EGT1({egt1})
txt_set(txt_EGTL, string.format("%03.00f",EGTL))
end
fs2020_variable_subscribe("ENG EXHAUST GAS TEMPERATURE:1", "Celsius", new_EGTL_cb)
Would be great if someone could help me here:
It´s the first tme I touch gauges of a plane, so there might be tricks to get them right.
When I use this format the lvar values of N1 and N2 are nicely corresponding with the values shown:
--N1L
rotate(img_needle_N11, 225)
txt_N1L = txt_add("00", "size:25px; color: #CCFF00; halign:right;", 35, 326, 120, 40)
function new_N11(N11)
N1L = var_cap(N11[1], 0, 100)
rotate(img_needle_N11, 240 / 100 * N1L + 225)
N1L = var_round(N1L, 1)
txt_set(txt_N1L, N1L)
end
function new_N1L_cb(n11)
new_N11({n11})
txt_set(txt_N1L, string.format("%3.00f",N1L))
end
fs2020_variable_subscribe("L:md_n11_rpm_percent", "Percent", new_N1L_cb)
But at the EPR and EGT gauges there are different values shown as the lvar is sending.
As you can see at the screenshots the original EGT Lvar value at idle throttle is 562 degrees but at the plane it should show 376 degrees.
Can I show a different text as the original Lvar value?
I´m sorry to say I don´t understand how I can interpolate the gauge to show different values and range.
Could someone maybe write an example using my original EGT code?
--EGT1
rotate(img_needle_EGT1, 225)
txt_EGTL = txt_add("00", "size:25px; color: #CCFF00; halign:right;", 35, 459, 120, 40)
function new_EGT1(EGT1)
EGTL = var_cap(EGT1[1], 0, 1000)
rotate(img_needle_EGT1, 240 / 1000 * EGTL + 225)
EGTL = var_round(EGTL, 1)
txt_set(txt_EGTL, EGTL)
end
function new_EGTL_cb(egt1)
new_EGT1({egt1})
txt_set(txt_EGTL, string.format("%03.00f",EGTL))
end
fs2020_variable_subscribe("ENG EXHAUST GAS TEMPERATURE:1", "Celsius", new_EGTL_cb)
Last edited by Puukka on Fri Feb 10, 2023 8:40 pm, edited 4 times in total.
Herbert Puukka
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
Re: Air Manager Panel for Leonardo Maddog X MSFS
Maybe this can be useful?
https://siminnovations.com/wiki/index.p ... ate_linear
https://siminnovations.com/wiki/index.p ... ate_linear
Re: Air Manager Panel for Leonardo Maddog X MSFS
Just finished some bells and whistles, the EPR is still a mystery even Tony helped me a lot, maybe not really correlating with the ENG PRESSURE RATIO variable. Its decreasing by increasing altitude at my plane, while at the Sim its´s stable.
Regards, Herbert
Regards, Herbert
Last edited by Puukka on Sat Aug 19, 2023 8:25 am, edited 3 times in total.
Herbert Puukka
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph
Re: Air Manager Panel for Leonardo Maddog X MSFS
Ah still struggling to find that EPR relationship. The answer is there somewhere.
Air Manager panels at https://www.experimentalsimavionics.com
Youtube Channel https://www.youtube.com/channel/UC8ZqXX ... kfZMq5BKig
Air Manager API Tutorial Video Series https://youtube.com/playlist?list=PLNr0 ... baT4gJKg5D
Youtube Channel https://www.youtube.com/channel/UC8ZqXX ... kfZMq5BKig
Air Manager API Tutorial Video Series https://youtube.com/playlist?list=PLNr0 ... baT4gJKg5D
Re: Air Manager Panel for Leonardo Maddog X MSFS
Did you have any luck, I am having the same problem