|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
# External dependencies
|
|
|
|
|
using TypedPolynomials
|
|
|
|
|
using LinearAlgebra
|
|
|
|
|
using Distributed
|
|
|
|
|
using Distributed, ClusterManagers
|
|
|
|
|
using SharedArrays
|
|
|
|
|
|
|
|
|
|
# Local dependencies
|
|
|
|
@ -18,6 +18,8 @@ using .EulerNewton
|
|
|
|
|
using .AdaptStep
|
|
|
|
|
using .Plot
|
|
|
|
|
|
|
|
|
|
addprocs(SlurmManager(20), partition="production", t="00:30:00")
|
|
|
|
|
|
|
|
|
|
function compute_root(H, r, maxsteps=1000)
|
|
|
|
|
t = 1.0
|
|
|
|
|
step_size = 0.01
|
|
|
|
@ -89,4 +91,4 @@ ENV["GKSwstype"] = "nul"
|
|
|
|
|
# plot_real(sQ, Q, 2, 2, "2")
|
|
|
|
|
# plot_real(sF, F, 4, 4, "3")
|
|
|
|
|
# plot_real(sT, T, 4, 4, "4")
|
|
|
|
|
plot_real(sR, R, 5, 5, "random")
|
|
|
|
|
plot_real(sR, R, 5, 5, "random")
|
|
|
|
|