diff --git a/system.jl b/system.jl index af14994..ac61ab8 100644 --- a/system.jl +++ b/system.jl @@ -40,7 +40,7 @@ function solve_system(s::system, initial_dens=nothing, initial_flds=(zeros(1 + s (Φ0s, W0s, B0s, A0s) = initial_flds if monitor_plot - p = plot(legends=false, layout=(2, 2), title=["ρ_sp" "ρ_vp" "ρ_sn" "ρ_vn"]) + p = plot(legends=false, size=(1024, 768), layout=(2, 4), title=["ρₛₚ" "ρᵥₚ" "ρₛₙ" "ρᵥₙ" "Φ₀" "W₀" "B₀" "A₀"]) end E_total_previous = NaN @@ -67,7 +67,7 @@ function solve_system(s::system, initial_dens=nothing, initial_flds=(zeros(1 + s for s in p.series_list s.plotattributes[:linecolor] = :gray end - plot!(p, rs(s), hcat(ρ_sp, ρ_vp, ρ_sn, ρ_vn), linecolor=:red) + plot!(p, rs(s), hcat(ρ_sp, ρ_vp, ρ_sn, ρ_vn, Φ0s, W0s, B0s, A0s), linecolor=:red) display(p) end