| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Simulink Control Design |
| Contents | Index |
| Learn more about Simulink Control Design |
| On this page… |
|---|
Workflow for Specifying Completely Known Operating Points |
To use functions to specify completely known operating points
Create an operating point object.
Make changes to the object values.
This section continues the example from Example: Water-Tank System. At this stage in the example, linearization point objects have been created in the MATLAB workspace. See Selecting Inputs and Outputs for the Linearized Model for more information on creating linearization point objects.
An operating point object contains information about your system's states and inputs at the operating point. When you know your operating point explicitly, use the function operpoint to create an operating point object for your model.
For example, to create an operating point object for the water-tank model, type
watertank_op=operpoint('watertank')
MATLAB software displays
Operating Point for the Model watertank.
(Time-Varying Components Evaluated at time t=0)
States:
----------
(1.) watertank/PID Controller/Integrator
x: 0
(2.) watertank/Water-Tank System/H
x: 1
Inputs: None
----------
Within the operating point object are objects for all the states and inputs in the model. Each of these objects has a property called x, or u in the case of inputs, that gives the value of that state or input.
Change the x and u properties of the operating point object to known values at the operating point. For example, to change the value of the first state to 1.26 and the second state to 10, type
watertank_op.States(1).x=1.26, watertank_op.States(2).x=10
which returns
Operating Point for the Model watertank.
(Time-Varying Components Evaluated at time t=0)
States:
----------
(1.) watertank/PID Controller/Integrator
x: 1.26
(2.) watertank/Water-Tank System/H
x: 10
Inputs: None
----------
The operating point object, watertank_op, now contains the known operating point of the system.
![]() | Computing Operating Points from Specifications | Extracting Values from Simulation | ![]() |

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |