Skip to content
Snippets Groups Projects
Verified Commit e46a4279 authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

feat(OperRotor): add advance ratio

parent 2d38e042
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,7 @@ classdef OperRotor < handle
properties (Dependent)
tgTipSpeed (1, 1) double % Tangential tip speed, [m/s]
relTipSpeed (1, 1) double % Relative tip speed, [m/s]
advanceRatio (1, 1) double % Advance ratio, [-]
cT (1, 1) double % Rotor thrust coefficient, [-]
cQ (1, 1) double % Rotor torque coefficient, [-]
......@@ -102,6 +103,10 @@ classdef OperRotor < handle
relSpeed = sqrt(self.tgTipSpeed^2 + self.Op.speed^2);
end
function advRat = get.advanceRatio(self)
advRat = self.Op.advanceratio(self.Rot.radius * 2, self.Rot.appli);
end
function cT = get.cT(self)
cT = calccoeff(self, 'thrust');
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment