Idle

model Idle "Idle running branch"
    extends FluxTubes.Interfaces.PartialTwoPorts;
equation
    Phi = Complex(0);

    annotation (
        Icon(
            coordinateSystem(
                preserveAspectRatio = false,
                extent = {
                    {-100, -100}, 
                    {100, 100}}),
            graphics = {
                Line(
                    points = {
                        {-100, 0}, 
                        {-40, 0}},
                    color = {255, 170, 85}), 
                Line(
                    points = {
                        {40, 0}, 
                        {100, 0}},
                    color = {255, 170, 85}), 
                Text(
                    extent = {
                        {-150, 50}, 
                        {150, 90}},
                    textString = "%name",
                    lineColor = {0, 0, 255})}),
        Documentation(
            info = "<html>\n<p>\nThis is a simple idle running branch. The magnetic flux through this component is equal to zero.\n</p></html>",
            revisions = "<html>\n</html>"),
        Diagram(coordinateSystem(
            preserveAspectRatio = false,
            extent = {
                {-100, -100}, 
                {100, 100}})));
end Idle;