cybergalactic / MSS

The Marine Systems Simulator (MSS) is software that supplements the textbook "Handbook of Marine Craft Hydrodynamics and Motion Control," 2nd Edition, by T. I. Fossen, published in 2021 by John Wiley & Sons Ltd.

Home Page:https://mss.fossen.biz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: Hull lifting forces

gabrielfpacheco opened this issue · comments

Hi @cybergalactic,

I'm working on a 6-DOF simulation model for a flatfish-shaped underwater vehicle and using your textbook as a reference. I'm able to obtain fair estimates for the added mass matrix coefficients using hydrodynamic software and I can also determine rough estimates for linear viscous damping coefficients based on existing data of similar vehicles - being an underwater vehicle, linear potential damping is being neglected. To determine non-linear damping effects though, I'm using surge resistance and cross-flow drag principles.

However, as far as I could understand, in many modeling approximations of D(v) = D + Dn(v) the effects of lift on the vehicle's hull are not explicitly accounted for. From your textbook:

Lifting Forces: Hydrodynamic lift forces arise from two physical mechanisms. The first is due to the linear circulation of water around the hull. The second is a nonlinear effect, commonly called cross-flow drag, which acts from a momentum transfer from the body to the fluid. This secondary effect is closely linked to vortex shedding.

What I mean is that I don't see where is the lift generated from the hull moving in the fluid with a certain angle of attack being considered in the models, and I would assume that they play an important role for survey AUVs (moving the vehicle up-down). To my understanding, the elevators would be responsible for generating a pitch moment, but the most representative lift would be generated by the hull; which would have a way bigger area than the elevators of a flatfish-shaped AUV.

The following line is the only reference I could find so far that actually models the vehicle's hull as a "wing profile" and considers its lift-drag as a function of the vehicle's angle of attack.

tau_liftdrag = forceLiftDrag(D_auv,S,CD_0,alpha,U_r);

Q: Is my understanding correct thus far? If so, why are aoa-dependent lifting forces not being considered using this for other vessels? Are these effects being accounted for elsewhere in other vessels models, such as in the NPS AUV which does consider cross-flow drag?

I really appreciate the help in advance!

For most underwater vehicles the angle of attack is assumed to be small. This implies that lift is completely neglected and only drag is considered. This is also the key assumption for conventional surface ships. This is of course not true if you have "flying" underwater vehicles operating at higher speeds. Lift is only included for the Remus 100 AUV in the toolbox. You can of course add lift/drag to your flatfish-shaped UAV following the same procedure. Maybe plot the forces as a function of your operating speeds/angle of attack to check if the lift force is important or not. The NPS AUV model is based on a Taylor-series expansion of hydrodynamic derivatives. This is basically curve fitting. Since the model includes second-order velocity terms, lift and drag will be included.

Thank you so much for the fast reply, Dr. Fossen.

For most underwater vehicles the angle of attack is assumed to be small. This implies that lift is completely neglected and only drag is considered. This is also the key assumption for conventional surface ships.

Got it, thank you for clarifying.

The NPS AUV model is based on a Taylor-series expansion of hydrodynamic derivatives. This is basically curve fitting. Since the model includes second-order velocity terms, lift and drag will be included.

Understood. But in that case, why does the model have a cross-flow drag calculation added to Y, Z, K, M components? Shouldn't they be already accounted for by these second-order velocity terms as well?

That is a good point. My best guess is that they have modeled hull damping by the cross-flow drag method and added the remaining second-order terms for appendices etc. The alternative is to neglect the physics and just use the Talylor-series expansion to model the hydrodynamic terms. The last approach is the famous method of Abkowitz (1984). Both methods work since you fit time series to the models. You can also check the paper (or contact the authors):

Healey, A. J. and D. Lienard (1993). Multivariable Sliding Mode Control for Autonomous Diving and Steering of Unmanned Underwater Vehicles. IEEE Journal of Ocean Engineering, OE-18(3), 327–339.

Thanks a lot for your help!

My best guess is that they have modeled hull damping by the cross-flow drag method and added the remaining second-order terms for appendices etc

That makes a lot of sense to me as a possible reason.

You can also check the paper (or contact the authors)

I've looked into the paper earlier and couldn't find an explanation there, only a mention that it is considered, as follows:

The model described includes a model of the cross flow drag effects, and a model of the propulsion system and is therefore a large departure from the original work of Abkowitz.

I'll try to reach the authors as you suggested.
Once again, I really appreciate the support, Dr. Fossen. I'm closing the issue