-
Hi
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Yes, it looks like you have the vector ordering nailed down. u_gust at the 97th entry, delta at 98th and delta_dot at 99th. I usually refer to Q as the modal forces but I think in your case you are referring to nodal forces (again size 6*(n_node - 1)). Your output is correct too [N, eta, eta_dot]. For each node, its 6DOF vector is As for the controllability I cannot really say...maybe some states aren't controllable via the control surface deflection input, for instance the gust states... but don't take my word on that. |
Beta Was this translation helpful? Give feedback.
Yes, it looks like you have the vector ordering nailed down. u_gust at the 97th entry, delta at 98th and delta_dot at 99th. I usually refer to Q as the modal forces but I think in your case you are referring to nodal forces (again size 6*(n_node - 1)). Your output is correct too [N, eta, eta_dot]. For each node, its 6DOF vector is
R_x, R_y, R_z, Psi_x, Psi_y, Psi_z
(i.e. the position and cartesian rotation vector) in A frame. Thus you need to count in the output for the size ofN
+ 6 * 3 nodes (i.e this gets you onto the vector of node 4) and then your indices of interest.As for the controllability I cannot really say...maybe some states aren't controllable via the control surface deflec…