We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa90a9c commit 65ea7b8Copy full SHA for 65ea7b8
1 file changed
autotune/autotune.py
@@ -738,13 +738,17 @@ def updateClosedLoop(self):
738
739
self.plotClosedLoop(t_out, y_out)
740
741
+ # Remove feedback
742
sum_feedback = ctrl.summing_junction(inputs=["rd"], output="e")
743
+
744
+ # Remove feedforward
745
+ sum_control = ctrl.summing_junction(inputs=["pid_out"], output="control_out")
746
747
open_loop = ctrl.interconnect(
748
[
749
delays,
750
sampler,
751
sum_feedback,
- feedforward,
752
sum_control,
753
p_control,
754
i_control,
0 commit comments