Tethered Wing data extraction #67
-
i am wondering how I can extract raw data (text or cvs) of these plots generated from tethered wing example? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The following script works for me for wing-example case raw data extraction. But for tethered wing case in circular path, I am wondering is it possible to extract wing loading for every half circle? Thx! #push!(CLs, CL) #push!(rolls, roll) push!(spanposs, spanpos) f = open("rawdata_lift.txt", "w") f = open("rawdata_span.txt", "w") |
Beta Was this translation helpful? Give feedback.
-
Similar to this thread: LINK In order to determine the half circle I'd suggest applying some logic based on the current step number. |
Beta Was this translation helpful? Give feedback.
Similar to this thread: LINK
In order to determine the half circle I'd suggest applying some logic based on the current step number.