Skip to content

Commit

Permalink
Remov exponent of 1 to avoid regularization #1575
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraMaier committed Dec 17, 2024
1 parent bc4e3fb commit a710f4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected

equation

airMasMod =if (b0 + b1*(airMas^1) + b2*(airMas^2) + b3*(airMas^3) + b4*(airMas^4)) <=
airMasMod =if (b0 + b1*(airMas) + b2*(airMas^2) + b3*(airMas^3) + b4*(airMas^4)) <=
0 then 0 else b0 + b1*(airMas^1) + b2*(airMas^2) + b3*(airMas^3) + b4*(
airMas^4);

Expand Down

0 comments on commit a710f4e

Please sign in to comment.