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

fix(Polar): change some properties to nonnegative

parent 0813869b
No related branches found
No related tags found
No related merge requests found
......@@ -49,9 +49,9 @@ classdef Polar
properties
airfoil (1, :) cell
reynolds (1, :) double {mustBePositive}
mach (1, :) double {mustBePositive}
nCrit (1, :) double {mustBePositive}
reynolds (1, :) double {mustBeNonnegative}
mach (1, :) double {mustBeNonnegative}
nCrit (1, :) double {mustBeNonnegative}
aoa (:, :) double {mustBeReal}
cl (:, :) double {mustBeReal}
cd (:, :) double {mustBeReal}
......
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