VTOL Fixed-wing model #871
Replies: 6 comments 2 replies
-
I am trying to create a model by myself. I am using the base c310 model and added four pointing-up rotors. |
Beta Was this translation helpful? Give feedback.
-
Are you sure a pitch attitude of -90 is correct for the 4 vertical motors as opposed to +90? |
Beta Was this translation helpful? Give feedback.
-
Plus, log the propulsion forces, which will immediately tell you first of all whether the propulsion magnitude is greater than the weight of the aircraft, and also confirm the orientation of the propulsion forces. jsbsim/src/models/FGPropulsion.cpp Lines 819 to 821 in 10c6e52 |
Beta Was this translation helpful? Give feedback.
-
@seanmcleod Thanks for getting back to me so quickly. |
Beta Was this translation helpful? Give feedback.
-
Given that the aircraft is sitting on the ground and trying to take-off, during this initial take-off period there are no aerodynamic forces in play yet given the extremely low dynamic pressure. So any movement and rotation is going to come down to the forces and moments from your 6 engines. So what did you see when you logged the propulsion forces I mentioned above? Also take a look at the propulsion moments. jsbsim/src/models/FGPropulsion.cpp Lines 822 to 824 in 10c6e52 And lastly log the thrust of all 6 engines individually. Given that and the cg and moments of inertia of the aircraft you should be able to figure out what is going wrong. |
Beta Was this translation helpful? Give feedback.
-
In addition to double-checking the forces from the engines and their location relative to the cg, and remember the cg isn't the same as the cg as specified in the FDM, since that is for the empty weight. Look at the mass report that is printed when the model is loaded to figure out the current cg at take-off with fuel and any other masses specified. Also take into account jsbsim/src/models/propulsion/FGPropeller.cpp Lines 258 to 273 in 39c204a For example take a look at quadcopter example in the JSBSim repo. https://github.com/JSBSim-Team/jsbsim/blob/master/aircraft/F450/Propulsion.xml |
Beta Was this translation helpful? Give feedback.
-
Hi,
I want to use a fixed-wing model with VTOL capabilities (through more vertical rotors, not a tilt-rotor). Does anyone know of one that can be shared?
Beta Was this translation helpful? Give feedback.
All reactions