Skip to content

Commit 8d5661f

Browse files
authored
fix PDESystem REPL (#1181)
1 parent 61861e1 commit 8d5661f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/systems/abstractsystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ for prop in [
183183
:loss
184184
:bcs
185185
:domain
186-
:depvars
187-
:indvars
186+
:ivs
187+
:dvs
188188
:connection_type
189189
:preface
190190
]

src/systems/pde/pdesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ function Base.show(io::IO, ::MIME"text/plain", sys::PDESystem)
8585
println(io,"Equations: ", get_eqs(sys))
8686
println(io,"Boundary Conditions: ", get_bcs(sys))
8787
println(io,"Domain: ", get_domain(sys))
88-
println(io,"Dependent Variables: ", get_depvars(sys))
89-
println(io,"Independent Variables: ", get_indvars(sys))
88+
println(io,"Dependent Variables: ", get_dvs(sys))
89+
println(io,"Independent Variables: ", get_ivs(sys))
9090
println(io,"Parameters: ", get_ps(sys))
9191
print(io,"Default Parameter Values", get_defaults(sys))
9292
return nothing

0 commit comments

Comments
 (0)