block Step "Generate step signal of type Real"
parameter Real height = 1 "Height of step"
annotation (Dialog(groupImage = "modelica://Modelica/Resources/Images/Blocks/Sources/Step.png"));
extends Interfaces.SignalSource;
equation
y = offset + (if time < startTime then 0 else height);
annotation (
Icon(
coordinateSystem(
preserveAspectRatio = true,
extent = {
{-100, -100},
{100, 100}}),
graphics = {
Line(
points = {
{-80, 68},
{-80, -80}},
color = {192, 192, 192}),
Polygon(
points = {
{-80, 90},
{-88, 68},
{-72, 68},
{-80, 90}},
lineColor = {192, 192, 192},
fillColor = {192, 192, 192},
fillPattern = FillPattern.Solid),
Line(
points = {
{-90, -70},
{82, -70}},
color = {192, 192, 192}),
Polygon(
points = {
{90, -70},
{68, -62},
{68, -78},
{90, -70}},
lineColor = {192, 192, 192},
fillColor = {192, 192, 192},
fillPattern = FillPattern.Solid),
Line(points = {
{-80, -70},
{0, -70},
{0, 50},
{80, 50}}),
Text(
extent = {
{-150, -150},
{150, -110}},
textString = "startTime=%startTime")}),
Diagram(
coordinateSystem(
preserveAspectRatio = true,
extent = {
{-100, -100},
{100, 100}}),
graphics = {
Polygon(
points = {
{-80, 90},
{-86, 68},
{-74, 68},
{-80, 90}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Line(
points = {
{-80, 68},
{-80, -80}},
color = {95, 95, 95}),
Line(
points = {
{-80, -18},
{0, -18},
{0, 50},
{80, 50}},
color = {0, 0, 255},
thickness = 0.5),
Line(
points = {
{-90, -70},
{82, -70}},
color = {95, 95, 95}),
Polygon(
points = {
{90, -70},
{68, -64},
{68, -76},
{90, -70}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Text(
extent = {
{70, -80},
{94, -100}},
textString = "time"),
Text(
extent = {
{-21, -72},
{25, -90}},
textString = "startTime"),
Line(
points = {
{0, -18},
{0, -70}},
color = {95, 95, 95}),
Text(
extent = {
{-68, -36},
{-22, -54}},
textString = "offset"),
Line(
points = {
{-13, 50},
{-13, -17}},
color = {95, 95, 95}),
Polygon(
points = {
{0, 50},
{-21, 50},
{0, 50}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Polygon(
points = {
{-13, -18},
{-16, -5},
{-10, -5},
{-13, -18},
{-13, -18}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Polygon(
points = {
{-13, 50},
{-16, 37},
{-10, 37},
{-13, 50}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Text(
extent = {
{-68, 26},
{-22, 8}},
textString = "height"),
Polygon(
points = {
{-13, -70},
{-16, -57},
{-10, -57},
{-13, -70},
{-13, -70}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Line(
points = {
{-13, -18},
{-13, -70}},
color = {95, 95, 95}),
Polygon(
points = {
{-13, -18},
{-16, -31},
{-10, -31},
{-13, -18}},
lineColor = {95, 95, 95},
fillColor = {95, 95, 95},
fillPattern = FillPattern.Solid),
Text(
extent = {
{-72, 100},
{-31, 80}},
textString = "y")}),
Documentation(info = "<html>\n<p>\nThe Real output y is a step signal:\n</p>\n\n<p>\n<img src=\"modelica://Modelica/Resources/Images/Blocks/Sources/Step.png\"\n alt=\"Step.png\">\n</p>\n\n</html>"));
end Step;