Frame_b

connector Frame_b "Coordinate system fixed to the component with one cut-force and cut-torque (non-filled rectangular icon)"
    extends Frame;

    annotation (
        defaultComponentName = "frame_b",
        Icon(
            coordinateSystem(
                preserveAspectRatio = true,
                extent = {
                    {-100, -100}, 
                    {100, 100}},
                initialScale = 0.16),
            graphics = {
                Rectangle(
                    extent = {
                        {-10, 10}, 
                        {10, -10}},
                    lineColor = {95, 95, 95},
                    lineThickness = 0.5), 
                Rectangle(
                    extent = {
                        {-30, 100}, 
                        {30, -100}},
                    fillColor = {255, 255, 255},
                    fillPattern = FillPattern.Solid)}),
        Diagram(
            coordinateSystem(
                preserveAspectRatio = true,
                extent = {
                    {-100, -100}, 
                    {100, 100}},
                initialScale = 0.16),
            graphics = {
                Text(
                    extent = {
                        {-140, -50}, 
                        {140, -90}},
                    textString = "%name"), 
                Rectangle(
                    extent = {
                        {-12, 40}, 
                        {12, -40}},
                    fillColor = {255, 255, 255},
                    fillPattern = FillPattern.Solid)}),
        Documentation(info = "<html>\n<p>\nBasic definition of a coordinate system that is fixed to a mechanical\ncomponent. In the origin of the coordinate system the cut-force\nand the cut-torque is acting. This component has a non-filled rectangular icon.\n</p>\n</html>"));
end Frame_b;