How to add new JSBsim component in unreal engine 5? #812
Replies: 7 comments 12 replies
-
Is there any more detailed tutorial for the JSBsim UE project? I am new to JSBsim and UE, and it is a little hard to learn all of these things. |
Beta Was this translation helpful? Give feedback.
-
Do you want to set
PropertyManager->Tie("velocities/u-aero-fps", this, eU, (PMF)&FGAuxiliary::GetAeroUVW);
PropertyManager->Tie("velocities/v-aero-fps", this, eV, (PMF)&FGAuxiliary::GetAeroUVW);
PropertyManager->Tie("velocities/w-aero-fps", this, eW, (PMF)&FGAuxiliary::GetAeroUVW); But you can set |
Beta Was this translation helpful? Give feedback.
-
When you say ejection, which normally refers to a pilot ejecting from an aircraft, do you mean you want some sort of vertical take-off? Give us some more information on what you're trying to model and then we'll have a better chance of suggesting useful solutions. |
Beta Was this translation helpful? Give feedback.
-
So use the initial conditions to set the engine running and then set the throttle to it's maximum. |
Beta Was this translation helpful? Give feedback.
-
Are you trying to model something like a catapult launch from an aircraft carrier? Where the engine is run up to maximum power and then the catapult provides an additional force for a particular distance? More details will help. |
Beta Was this translation helpful? Give feedback.
-
Yep then take a look at using an external force. |
Beta Was this translation helpful? Give feedback.
-
You can have the engine running but with a zero value for the throttle, i.e. the engine just idling which would prevent the aircraft from starting to move until you increase the throttle and/or apply the external force from the catapult. Or if you want to have the engine at full thrust then you'll need to apply the brakes to prevent any movement until you release the brakes. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to set vUVW value after running the engine, but I don't know how to write these code in JSBsim, and transfer them into UE5.
I also not sure how to use the autopilot in UE.
Beta Was this translation helpful? Give feedback.
All reactions