This page identifies a possible issue, inconsistency, concern, error, or bug!
One of the ways Webel IT Australia helps promote tools, technologies, and languages is by donating a lot of time identifying, tracking, and reporting potential issues, in order to help vendors and developers improve the tools and technologies. In some cases, we also offer workarounds and advice for users. All issues tracked on our public site are offered most constructively and with sincerest gratitude to the tool vendors and technology developers.
DISCLAIMER: Vendors do not officially endorse issue analysis by Webel IT Australia.
Webel IT Australia promotes the amazing Mathematica tool and the powerful Wolfram Language and offers professional Mathematica services for computational computing and data analysis. Our Mathematica
tips, issue tracking, and wishlist is offered here most constructively to help improve the tool and language and support the Mathematica user community.
DISCLAIMER: Wolfram Research does not officially endorse analysis by Webel IT Australia.
model Spring
Flange p1;
Flange p2;
end Spring;
connector Flange
flow Real f;
Real lV;
end Flange;
The types for f
and lV
are inconsistent, they should be Force
and Velocity
respectively. (It validates fine in Wolfram SystemModeler, it’s just not consistent.)
If you export the model as shown to Modelica from the MagicDraw SysML Plugin or Magic Cyber-Systems Engineer ® (Cameo Systems Modeler®) v19SP3 you get:
model Spring
Spring _Spring;
model Spring
Flange p1;
Flange p2;
end Spring;
connector Flange
flow Force f;
Velocity lV;
end Flange;
type Force=Real(unit="N");
type Velocity=Real(unit="m/s");
end Spring;