autotuner-pi-controller
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -29,4 +29,5 @@ /*** | ||
* @param {number} dt - Time interval between updates. Default is 1.0. | ||
* @param {number} initialMeasuredValue - Initial value measured from the system. Default is 0.0. | ||
*/ | ||
constructor(initialKp = 1.0, initialKi = 0.0, dt = 1.0) { | ||
constructor(initialKp = 1.0, initialKi = 0.0, dt = 1.0, initialMeasuredValue = 0.0) { | ||
this.kp = initialKp; | ||
@@ -33,0 +34,0 @@ this.ki = initialKi; |
{ | ||
"name": "autotuner-pi-controller", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "`autotuner-pi-controller` is a Proportional-Integral (PI) controller that uses the Relay Feedback Test for auto-tuning. The Relay Feedback Test is used to estimate the ultimate gain (Ku) and ultimate period$", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23208
147