How does JSBSim handle multiple aircraft interactions under the hood? #995
Unanswered
Chulabhaya
asked this question in
Q&A
Replies: 1 comment 1 reply
-
They would all be independent. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all! I have a bit of a simple question which is what I'm wondering how it works under the hood when I instantiate multiple aircraft through several lines of
fdm0 = jsbsim.FGFDMExec(None)
. Is it that the first call will instantiate a sort of global simulator where any subsequent instantiations offdm1 = jsbsim.FGFDMExec(None), fdm2 = jsbsim.FGFDMExec(None)
will initialize the other aircraft within that global simulator? I just want to better visualize in my head what's happening when I initialize several different FDMs in terms of how they would interact.Beta Was this translation helpful? Give feedback.
All reactions