ModelingToolkitStandardLibrary.jl icon indicating copy to clipboard operation
ModelingToolkitStandardLibrary.jl copied to clipboard

A standard library of components to model the world and beyond

Results 75 ModelingToolkitStandardLibrary.jl issues
Sort by recently updated
recently updated
newest added

Such that `makedocs` `warnonly = [:docs_block, :missing_docs, :cross_references]` can be removed.

This pull request sets the compat entry for the `ModelingToolkitStandardLibrary` package to `2` for package docs. This keeps the compat entries for earlier versions. Note: I have not tested your...

This pull request changes the compat entry for the `Documenter` package from `0.27` to `0.27, 1` for package docs. This keeps the compat entries for earlier versions. Note: I have...

The following code gives `ERROR: TypeError: non-boolean (Num) used in boolean context` ```julia using ModelingToolkit using ModelingToolkitStandardLibrary.Blocks @parameters k = 3 Ti = 0.5 Td = 1 / 100 @named...

On the new version 2, I can no longer instantiate a Torque component ```julia julia> using ModelingToolkitStandardLibrary.Mechanical.Rotational julia> @named torque = Torque() ERROR: TypeError: non-boolean (Nothing) used in boolean context...

From a purely mathematical perspective both modes conduction and Convection are indistinguishable, both have the form h * dT. Why is this not reflected in their implementations. For example: -...

Something like this would be helpful e.g. ```julia function Resistor(; name, R) @named oneport = OnePort() @unpack v, i = oneport pars = @parameters R = R eqs = [...