Main Content

showTunable

Show value of parameterizations of tunable blocks of slTuner interface

Description

showTunable(st) displays the values of the parametric models associated with each tunable block in the slTuner interface, st.

example

Examples

collapse all

Open the Simulink® model.

mdl = 'scdcascade';
open_system(mdl)

Create an slTuner interface for the model, and add C1 and C2 as tuned blocks of the interface.

st = slTuner(mdl,{'C1','C2'});

Display the default values of the tuned blocks.

showTunable(st);
Block 1: scdcascade/C1 =
 
             1 
  Kp + Ki * ---
             s 

  with Kp = 0.158, Ki = 0.042
 
Name: C1
Continuous-time PI controller in parallel form.

-----------------------------------

Block 2: scdcascade/C2 =
 
             1 
  Kp + Ki * ---
             s 

  with Kp = 1.48, Ki = 4.76
 
Name: C2
Continuous-time PI controller in parallel form.

Input Arguments

collapse all

Interface for tuning control systems modeled in Simulink, specified as an slTuner interface.

More About

collapse all

Version History

Introduced in R2014a