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

fix(ElPerf): def of inducted swirl ratio

parent 47538a52
No related branches found
No related tags found
No related merge requests found
......@@ -213,7 +213,7 @@ classdef ElemPerf < handle
% Calculate induced velocity and ratio
self.indVelAx_ = val .* self.Op.omega * self.Rot.radius - self.Op.speed;
self.indInflowRat_ = self.indVelAx_ ./ (self.Op.omega * self.Rot.radius);
self.indInflowRat_ = self.indVelAx ./ (self.Op.omega * self.Rot.radius);
end
function set.swirlRat(self, val)
......@@ -222,7 +222,7 @@ classdef ElemPerf < handle
% Calculate induced swirl velocity and ratio
self.indVelTg_ = self.tgSpeed - val .* (self.Op.omega * self.Rot.radius);
self.indSwirlRat_ = self.tgSpeed ./ (self.Op.omega * self.Rot.radius) - val;
self.indSwirlRat_ = self.indVelTg ./ (self.Op.omega * self.Rot.radius);
end
function set.indInflowRat(self, val)
......
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