Modelica.Math.Nonlinear.Interfaces

Interfaces for functions

Information


Interface definitions of functions. The main purpose is to use functions derived from these interface definitions as function arguments to a function, see, .e.g., Math.Nonlinear.Examples.

Extends from Modelica.Icons.InterfacesPackage (Icon for packages containing interfaces).

Package Content

NameDescription
Modelica.Math.Nonlinear.Interfaces.partialScalarFunction partialScalarFunction Interface for a function with one input and one output Real signal


Modelica.Math.Nonlinear.Interfaces.partialScalarFunction

Interface for a function with one input and one output Real signal

Information


This partial function defines the interface of a function with one input and one output Real signal. The scalar functions of Modelica.Math.Nonlinear are derived from this base type by inheritance. This allows to use these functions directly as function arguments to a function, see, .e.g., Math.Nonlinear.Examples.

Inputs

TypeNameDefaultDescription
Realu Independent variable

Outputs

TypeNameDescription
RealyDependent variable y=f(u)

Modelica definition

encapsulated partial function partialScalarFunction 
  "Interface for a function with one input and one output Real signal"
  input Real u "Independent variable";
  output Real y "Dependent variable y=f(u)";
end partialScalarFunction;

Automatically generated Fri Nov 12 16:31:49 2010.