Why doesn't the simple airfoil example wing tip position plot start at zero? #145
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Dear wmschy, The solvers included in the The simple airfoil case is a cantiliver beam subjected to aerodynamic forces. The idea behind it is finding the equilibrium position for that cantilever beam (with If you think of this case as an airplane wing: Running I hope this helps. |
Beta Was this translation helpful? Give feedback.
Dear wmschy,
The solvers included in the
flow
variable run sequentially and use the solution from the previous solver. For example,StaticCoupled
uses the model thatBeamLoader
andAerogridLoader
have created.The simple airfoil case is a cantiliver beam subjected to aerodynamic forces. The idea behind it is finding the equilibrium position for that cantilever beam (with
StaticCoupled
) and then change the angle of attack (with respect to the equilibrium position) withDynamicCoupled
.If you think of this case as an airplane wing:
StaticCoupled
would give you the cruise deformation (which is not zero as you noted) andDynamicCoupled
would simulate a sudden change in the angle of attack.Ru…