Pete, or anyone who knows,
I am working on a tool to set a aircraft to a preset location, attitude and other settings for use in pilot trials. One parameter that is proving tricky is the engine status. This is necessary as after I set the aircraft in flight using FSUIPC, the airspeed falls very quickly as the engines take a few seconds to respond to the throttle input. This causes the nose to pitch down rather alarmingly when starting the trial.
I am writing the engine N1 to locations 0x0898, 0x0930 etc. The engines do not seem to respond. I expected a spike in engine N1 lasting for a few seconds (until they respond to the throttle). Are the N1, N2 values output parameters only? Any alternate method for setting engine thrust?
Or has anyone attempted to make a preset locations tool for MSFS?
short int test = 16876; //About 102% N1
Sim.Write(0x0898, 2, &test);
Sim.Write(0x0930, 2, &test);
Sim.Write(0x09C8, 2, &test);
Sim.Write(0x0A60, 2, &test);
Sim.Process();
Regards,
Tim