Skip to content

Commit 25d23a2

Browse files
committed
add note to init tutorial
1 parent b518c2d commit 25d23a2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/examples/init_tutorial.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,19 @@ end
6161
nothing #hide
6262

6363
#=
64-
**B) A static prosumer node which forces a certain flow (pressure is fully implicit)**
64+
**B) A static prosumer node which forces a certain flow**
65+
66+
!!! note "Fully Implicit Output"
67+
We need to use `implicit_output(p)` to handle the fully implicit pressure
68+
output. See [Fully Implicit Outputs](@ref) for details.
6569
=#
6670
@mtkmodel StaticProsumerNode begin
6771
@extend GasNode()
6872
@parameters begin
6973
q̃_prosumer, [description="flow injected by prosumer"]
7074
end
7175
@equations begin
72-
-q̃_nw ~ q̃_prosumer
76+
-q̃_nw ~ q̃_prosumer + implicit_output(p)
7377
end
7478
end
7579
nothing #hide

0 commit comments

Comments
 (0)