connector Step_in "Input port of a step"
output Boolean occupied "true, if step is active"
annotation (HideResult = true);
input Boolean set "true, if transition fires and step is activated"
annotation (HideResult = true);
annotation (
Icon(
coordinateSystem(
preserveAspectRatio = true,
extent = {
{-100, -100},
{100, 100}}),
graphics = {
Polygon(
points = {
{-100, 100},
{100, 0},
{-100, -100},
{-100, 100}},
fillPattern = FillPattern.Solid)}),
Diagram(
coordinateSystem(
preserveAspectRatio = true,
extent = {
{-100, -100},
{100, 100}}),
graphics = {
Polygon(
points = {
{0, 50},
{100, 0},
{0, -50},
{0, 50}},
fillPattern = FillPattern.Solid),
Text(
extent = {
{-141, 100},
{100, 60}},
textString = "%name")}));
end Step_in;