Skip to content

Latest commit

 

History

History
105 lines (81 loc) · 3.42 KB

File metadata and controls

105 lines (81 loc) · 3.42 KB

ModelingToolkitStandardLibrary.jl

ModelingToolkitStandardLibrary.jl is a standard library for the ModelingToolkit acausal modeling system.

Installation

To install ModelingToolkitStandardLibrary.jl, use the Julia package manager:

using Pkg
Pkg.add("ModelingToolkitStandardLibrary")

Tutorials

Libraries

The following are the constituent libraries of the ModelingToolkit Standard Library.

Contributing

Reproducibility

<details><summary>The documentation of this SciML package was built using these direct dependencies,</summary>
using Pkg # hide
Pkg.status() # hide
</details>
<details><summary>and using this machine and Julia version.</summary>
using InteractiveUtils # hide
versioninfo() # hide
</details>
<details><summary>A more complete overview of all dependencies and their versions is also provided.</summary>
using Pkg # hide
Pkg.status(; mode = PKGMODE_MANIFEST) # hide
</details>
using TOML
using Markdown
version = TOML.parse(read("../../Project.toml", String))["version"]
name = TOML.parse(read("../../Project.toml", String))["name"]
link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
                "/assets/Manifest.toml"
link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
               "/assets/Project.toml"
Markdown.parse("""You can also download the
[manifest]($link_manifest)
file and the
[project]($link_project)
file.
""")