Skip to content
Snippets Groups Projects
Commit 845a8811 authored by Tamburrini Robin's avatar Tamburrini Robin
Browse files

chore: rename parameters for clarity

parent d8f31c79
No related branches found
No related tags found
No related merge requests found
......@@ -81,14 +81,14 @@ classdef Oper < handle
% ---------------------------------------------
% Get methods for dependent properties
function ans = get.rps(self)
ans = self.rpm/60;
function rps = get.rps(self)
rps = self.rpm/60;
end
function ans = get.omega(self)
ans = self.rpm/60*2*pi;
function omega = get.omega(self)
omega = self.rpm/60*2*pi;
end
% ---------------------------------------------
% Other methods
advRatio = advanceratio(self, diam, app)
......
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