Skip to content
Snippets Groups Projects
Unverified Commit 833dbf7c authored by Thomas Lambert's avatar Thomas Lambert
Browse files

refactor(Polar): do not use private properties

The use of private properties complicates the interaction with Rotare.
So we simply get rid of it now and put all properties public.

This is probably something that we will do anyway in a later stage in
order to simplify development.
parent bfac07d2
No related branches found
No related tags found
No related merge requests found
Pipeline #10355 passed
......@@ -67,7 +67,8 @@ classdef Polar < handle
% Issues: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/issues
% ----------------------------------------------------------------------------------------------
properties (SetAccess = private)
properties % (SetAccess = private)
airfoil (1, :) % Airfoil name
reynolds (1, :) double {mustBeNonnegative} % Rynolds number, [-]
mach (1, :) double {mustBeNonnegative} % Mach number, [-]
nCrit (1, :) double {mustBeNonnegative} % nCrit number, [-]
......
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