Skip to content

Commit aecd4a3

Browse files
Merge pull request #2956 from contradict/fix-docs-build
Fix docs build
2 parents ba86ee6 + 186699a commit aecd4a3

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

docs/src/basics/InputOutput.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ This function takes a vector of variables that are to be considered inputs, i.e.
3737
The following example implements a simple first-order system with an input `u` and state `x`. The function `f` is generated using `generate_control_function`, and the function `f` is then tested with random input and state values.
3838

3939
```@example inputoutput
40+
using ModelingToolkit
4041
import ModelingToolkit: t_nounits as t, D_nounits as D
4142
@variables x(t)=0 u(t)=0 y(t)
4243
@parameters k = 1

docs/src/comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- Both Modelica and ModelingToolkit.jl are acausal modeling languages.
66
- Modelica is a language with many different implementations, such as
7-
[Dymola](https://www.3ds.com/products-services/catia/products/dymola/) and
7+
[Dymola](https://www.3ds.com/products/catia/dymola/) and
88
[OpenModelica](https://openmodelica.org/), which have differing levels of
99
performance and can give different results on the same model. Many of the
1010
commonly used Modelica compilers are not open-source. ModelingToolkit.jl

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Below is an incomplete list of extension libraries one may want to be aware of:
137137
+ Transient solution of the CME
138138
+ Dynamic state spaces
139139
+ Accepts reaction systems defined using Catalyst.jl DSL.
140-
- [FiniteStateProjection.jl](https://github.com/kaandocal/FiniteStateProjection.jl): High-performance simulation of
140+
- [FiniteStateProjection.jl](https://github.com/SciML/FiniteStateProjection.jl): High-performance simulation of
141141
chemical master equations (CME) via finite state projections
142142

143143
+ Accepts reaction systems defined using Catalyst.jl DSL.

docs/src/tutorials/ode_modeling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Instead, the function might be provided as time-series data.
229229
MTK handles this situation by allowing us to “register” arbitrary Julia functions,
230230
which are excluded from symbolic transformations and thus used as-is.
231231
For example, you could interpolate given the time-series using
232-
[DataInterpolations.jl](https://github.com/PumasAI/DataInterpolations.jl). Here,
232+
[DataInterpolations.jl](https://github.com/SciML/DataInterpolations.jl). Here,
233233
we illustrate this option with a simple lookup ("zero-order hold") of a vector
234234
of random values:
235235

0 commit comments

Comments
 (0)