You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
function [ Lift,Drag ] = NAtoLD( Normal, Axial, alpha)
% This function converts normal/axial forces to lift/drag.
%% OR vice versa !!! $$ Angle of attack 'alpha' is needed as well $$
%Input: Normal = Normal Force [N], Axial = Axial Force [N], alpha [deg]
% OR input --> Lift, Drag, alpha [optional]
%Output: Lift [N], Drag [N] OR Normal [N], Axial [N]
%% Argument management:
% arg3 is optional,
% arg1 & arg2 are mandatory
if nargin < 3
alpha = zeros(length(Normal),1); %[m] Default alpha is zero.
end
Cite As
Noel Puldon (2026). NAtoLD( Normal, Axial, alpha) (https://in.mathworks.com/matlabcentral/fileexchange/52840-natold-normal-axial-alpha), MATLAB Central File Exchange. Retrieved .
General Information
- Version 1.0.0.0 (722 Bytes)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0.0.0 |
