|
Calling Sequence
|
|
EquilibriumPoint(eqs, u, opts)
|
|
Parameters
|
|
eqs
|
-
|
equation, expression, or set or list of equations or expressions. If you specify an expression expr, it is interpreted as the equation
|
u
|
-
|
list or set; input variables
|
opts
|
-
|
(optional) equation(s) of the form option = value; specify options for the EquilibriumPoint command
|
|
|
|
|
Options
|
|
•
|
constraints = list or set of equations and inequalities
|
The constraints imposed on the states, derivatives of the states, inputs, or outputs of the system that must be satisfied at the equilibrium point.
•
|
evaluationlimit = posint
|
Sets the maximum number of objective function evaluations. The default is 100.
•
|
functions = list of lists
|
The user-defined functions present in the system. Each function is described in a list of the form: [name, input argument type list, output type, Maple procedure].
•
|
initialpoint = list or set of equations
|
The operating point in the state-input space at which the local search for an equilibrium point should start. The EquilibriumPoint returns the equilibrium point closest to the initialpoint.
|
If only some of the states and inputs are specified by the initialpoint, the EquilibriumPoint command sets the rest of the states and inputs equal to zero.
|
|
If the initialpoint is not given, the EquilibriumPoint command chooses the initial point randomly.
|
Specifies whether the given equations need to be simplified (true), or not (false). The default is true.
|
|
Description
|
|
•
|
The EquilibriumPoint command finds the equilibrium point of eqs such that constraints, if specified by the constraints option, are satisfied, and returns four lists of equations specifying the values of states, derivatives of states, inputs, and outputs at the equilibrium point, respectively.
|
•
|
The equilibrium point of a system is a point at which derivatives of the states vanish. The EquilibriumPoint command performs a local search and returns an equilibrium point closest to the initial point, either specified by the initialpoint parameter or chosen randomly.
|
•
|
If the EquilibriumPoint command cannot find a point at which derivatives are zero, it returns a point that minimizes the derivatives. It is possible to prescribe a non-zero value to the derivatives using the optional parameter constraints.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
sys2 := {piecewise(x[1](t)<0, x[1](t), x[2](t) + x[1](t)^2) * piecewise(u(t)<0, cos(y(t)), sin(y(t))) = sin(x[1](t)^2) + 5 * y(t) + diff(x[1](t), t, t), y(t) - x[1](t)^2 + u(t)*x[1](t), diff(x[2](t), t) = f(x[1](t), u(t))};
user_function := [
f,
[float, float],
float,
proc(x, y)
local d1, d2;
d1 := cos(x)+x^2;
d2 := y*d1 + y^2;
return d1*x+d2*y- exp(d1);
end proc
];
|
| |
| (3) |
>
|
|
| (4) |
|
|
Compatibility
|
|
•
|
The evaluationlimit option was introduced in Maple 15.
|
|
|
|