Main Page: Difference between revisions

From Mechanomy Composer Wiki
Jump to navigation Jump to search
m (testing)
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
<strong>Welcome to the Composer Wiki</strong>
<strong>Welcome to the Composer Wiki</strong>


Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.
== Composer Tutorials ==
''coming soon''


== Getting started ==
== Composer Reference ==
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]
* [[__Mechanomy_analyze]]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]
 
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]
== Common Errors ==
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]
[[Common Errors]]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]
 
 
== Modelica Language Reference ==
Models are formatted according to [https://www.modelica.org/documents/ModelicaSpec34.pdf Modelica language specification 3.4]
 
model ModelName
  //declarations
equation
  //equations
[[annotation]](
  experiment(StartTime=0, StopTime=1, Tolerance=0.01, Interval=0.1),
  [[__Mechanomy_analyze]](plot2D={x:time, y: varName})
);
end ModelName;
 
Each declaration or equation line should be terminated with a semicolon, with arguments separated by commas.
 
* [[arrays]]
* [[functions]]
* [[keywords]]
 
Multiple models can be defined in one file through the [[package]] format.  Package files are also used to construct libraries of models, in a structured hierarchy.
 
== Modelica Standard Library Reference ==
A quick reference to the Modelica Standard Library, see also [https://build.openmodelica.org/Documentation/Modelica.html]
* Modelica.[[Mechanics]]
* Modelica.Mechanics.MultiBody.[[Interfaces]]
* Modelica.Mechanics.MultiBody.Joints.[[Revolute]]
* Modelica.Mechanics.MultiBody.Parts.[[BodyBox]]
* Modelica.Mechanics.MultiBody.Parts.[[BodyShape]]
* Modelica.[[SIunits]]

Latest revision as of 15:47, 10 June 2020

Welcome to the Composer Wiki

Composer Tutorials

coming soon

Composer Reference

Common Errors

Common Errors


Modelica Language Reference

Models are formatted according to Modelica language specification 3.4

model ModelName
  //declarations

equation
  //equations

annotation(
  experiment(StartTime=0, StopTime=1, Tolerance=0.01, Interval=0.1),
  __Mechanomy_analyze(plot2D={x:time, y: varName})
);
end ModelName;

Each declaration or equation line should be terminated with a semicolon, with arguments separated by commas.

Multiple models can be defined in one file through the package format. Package files are also used to construct libraries of models, in a structured hierarchy.

Modelica Standard Library Reference

A quick reference to the Modelica Standard Library, see also [1]