Skip to content

Commit b31d0fd

Browse files
committed
fix doc links
1 parent 0309627 commit b31d0fd

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

docs/examples/init_tutorial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ nothing #hide
6565
6666
!!! note "Fully Implicit Output"
6767
We need to use `implicit_output(p)` to handle the fully implicit pressure
68-
output. See [Fully Implicit Outputs](@ref) for details.
68+
output. See [fully implicit outputs](@ref Fully-Implicit-Outputs) for details.
6969
=#
7070
@mtkmodel StaticProsumerNode begin
7171
@extend GasNode()

docs/src/mtk_integration.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ These constructors will:
1515
- transform the states marked as input to parameters and `mtkcompile`ing the system,
1616
- generate the `f` and `g` functions,
1717
- generate code for observables,
18-
- port all supported [Metadata](@ref) from MTK symbols to component symbols,
19-
- handle [fully implicit outputs](@ref) using the `implicit_output` function, and
18+
- port all supported [Metadata](@ref) from MTK symbols to component symbols and
2019
- output a `Vertex-`/`EdgeModel` function compatible with NetworkDynamics.jl.
2120

2221
The main usecase for this feature is when you want to build relatively complex
@@ -33,8 +32,7 @@ as tearing of thousands of equations.
3332
ModelingToolkit is a fast paced library with lots of functionality and ever
3433
growing complexity. As such the provided interface is kinda experimental.
3534
Some features of MTK are straight up unsupported, for example events within
36-
models or delay differential equations. For cases where output variables don't
37-
explicitly appear in equations, see the [Fully Implicit Outputs](@ref) section.
35+
models or delay differential equations.
3836

3937
## RC-Circuit Example
4038
In good [MTK tradition](https://docs.sciml.ai/ModelingToolkit/stable/tutorials/acausal_components/), this feature will be explained along a simple RC circuit example.

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,6 @@ equation depends on `x`. This can be necessary to define a model with fully impl
248248
249249
$implicit_output_docstring
250250
251-
For more information see the NetworkDynamics docs on [Fully Implicit Outputs](@ref).
251+
For more information see the NetworkDynamics docs on [fully implicit outputs](@ref Fully-Implicit-Outputs).
252252
"""
253253
implicit_output(x) = 0

0 commit comments

Comments
 (0)