creative-connections/Bodylight.js-Components:
Description
Web components of the Bodylight library is a suite of custom elements enhancing HTML web documents with
- FMU component able to be execute in browser. `Modelica` model is exported to `FMU` using FMI standard and [Bodylight FMU Compiler](https://github.com/creative-connections/Bodylight.js-FMU-Compiler) can convert FMU with source codes and solver into WebAssembly script.
- Adobe-Animate and Gif-Animate component able to control animation exported from Adobe-Animate or animated GIF and bind them to variables of model simulation.
- ChartJS and DygraphJS components to visualise model variables in different chart types.
- Following Web components standard at [1].
All bodylight web components are registered with a bdl- prefix. Components are defined in source code without the prefix, which may be used to build application internally in an Aurelia framework [2]. This is wrapper for [aurelia-bodylight-plugin](https://github.com/creative-connections/aurelia-bodylight-plugin) registering all Aurelia[2] components as standard (framework agnostic) web components [1]. This plugin is part of broader tools to enable in-browser simulation using modern web technologies: Web Assembly, HTML, Javascript (ECMAScript6).
[^1]: Web Components: https://developer.mozilla.org/en-US/docs/Web/Web_Components
[^2]: Aurelia framework: https://aurelia.io
Usage
To build web simulator:
- You need to export Modelica model into FMU with source codes including source codes for solver (Dymola exports CVODE, OpenModelica 1.14.x exports Euler and 1.16.x is declared to support CVODE export too).
- Then you need to convert the FMU into WebAssembly - using [Bodylight FMU Compiler](https://github.com/creative-connections/Bodylight.js-FMU-Compiler)
- the exported ZIP contains JS file - to be reffered from `bdl-fmi` component, and `modelDescription.xml` - standard FMU description with variable references.
- optional - export Adobe Animate animation into CreateJS library usable by `bdl-adobe` component.
- use the Bodylight components, This plugin is distributed in 2 different way: 1) as standard web components or 2) as aurelia components.
* **1. Standard web components** - distribution recommended to build web simulator using enhanced HTML or Markdown.
* **2. Aurelia web components** - recommended for more complex web application, further info at [aurelia-bodylight-plugin at GITHUB](https://github.com/creative-connections/aurelia-bodylight-plugin)
1. Standard web components
-
Use
bodylight.bundle.jsfrom :- from jsdelivr CDN:
<script src="https://cdn.jsdelivr.net/npm/bodylight-components/dist/bodylight.bundle.js"></script>
- OR install bundle by npm:
npm i bodylight-components - OR download
bodylight.bundle.jslocally and refer it from your<script>:
<script src="bodylight.bundle.js"></script>
-
Add attribute
aurelia-app="webcomponents"todivorbodywhere web components will be located (note web-components are custom elements with prefixbdl-:
index.html ... <body aurelia-app="webcomponents"> <bdl-range id="id1" min="40" max="180" default="60" title="Heart rate"></bdl-range> <bdl-fmi ...></bdl-fmi> <bdl-chartjs ...></bdl-chartjs> </body>
- (optional) you may use any of
bdl-markdown-*components to refer MD documents where you may use Bodylight webcomponents as well. E.g.doc/index.mdcontains main content andsummary.mdcontains sidebar with links to other docs.
index.html
...
<body aurelia-app="webcomponents">
<bdl-markdown-book index="doc/index.md" summary="doc/summary.md">
<img src="docs/loading.gif"/>
</bdl-markdown-book>
</body>
doc/index.md # Introduction Markdown syntax is interpretted. Syntax highlighting is enabled for source code. KATEX plugin is enabled to allow basic equation e.g. $$e = m c^2$$ ## bodylight web components Use bodylight web components directly: <bdl-range id="id1" min="40" max="180" default="60" title="Heart rate"></bdl-range> <bdl-fmi ...></bdl-fmi> <bdl-chartjs ...></bdl-chartjs>
summary.md
| EN | [CZ](#doc/index.cs.md&summary=doc/summary.cs.md) |
* [First Page](#doc/index.md)
* [Second Page](#doc/index2.md)
* [Sub page of second page](#doc/index22.md)
Files
creative-connections/Bodylight.js-Components-v2.0.37.zip
Files
(7.9 MB)
| Name | Size | Download all |
|---|---|---|
|
md5:d872cb5ccad5afbcd698b29df735b909
|
7.9 MB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/creative-connections/Bodylight.js-Components/tree/v2.0.37 (URL)