Replies: 2 comments 4 replies
-
Beta Was this translation helpful? Give feedback.
3 replies
-
Still have a question when i want to output the data from the 737.xml. fdm.set_output_filename(0, 'this_one.csv')
fdm.enable_output()
while fdm.run() and fdm.get_sim_time()<50:
time2.append(fdm.get_sim_time())
h2.append(fdm["position/h-sl-meters"])
mach2.append(fdm['velocities/mach'])
plt.plot(time2,h2,label='dt=0.08')
plt.legend()
plt.show() and also , I copied the output property from the c172x.xml to 737.xml and commented the other output method in latter. <output name="JSBout777.csv" type="CSV" rate="10">
<rates> ON </rates>
<velocities> ON </velocities>
<position> ON </position>
<atmosphere> OFF </atmosphere>
<fcs> ON </fcs>
<ground_reactions> OFF </ground_reactions>
<propulsion> ON </propulsion>
<simulation> ON </simulation>
<massprops> ON </massprops>
<forces> OFF </forces>
<moments> OFF </moments>
<aerosurfaces> OFF </aerosurfaces>
<property> position/vrp-gc-latitude_deg </property>
<property> position/vrp-longitude_deg </property>
<property> position/vrp-radius-ft </property>
<function name="velocities/pi-deg_sec">
<todegrees> <p> velocities/pi-rad_sec </p> </todegrees>
</function>
</output> However, there is none output . Where did i wrong? hope you can help me. |
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.
-
I met a problem with setting the integration step.
Expected your help!
Beta Was this translation helpful? Give feedback.
All reactions