Dear all,
Using DifferentialEquations I have beautiful results from
sol = solve(ensembleprob,SRIW1(),EnsembleThreads(),trajectories=ϕ,saveat=δt);
Question is how to save ‘sol’ ?? I have tried io withtout success
io = open("soldata.txt","w");
write(io,sol)
outputed
StackOverflowError:
then shifted to
using JDF
@time jdffile = JDF.save("sol.jdf", sol)
without success again
AssertionError: Tables.istable(df)
is there a convenient way to store thoses results ???
Thx !
Frédéric