From 255db1c086a24630908898672e94e74702b60f5c Mon Sep 17 00:00:00 2001
From: Thomas Lambert <t.lambert@uliege.be>
Date: Thu, 9 Jun 2022 14:36:49 +0200
Subject: [PATCH] fix(Polar): change some properties to nonnegative

---
 +af_tools/@Polar/Polar.m | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/+af_tools/@Polar/Polar.m b/+af_tools/@Polar/Polar.m
index bb20a53..d9461b5 100644
--- a/+af_tools/@Polar/Polar.m
+++ b/+af_tools/@Polar/Polar.m
@@ -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}
-- 
GitLab