I have an 10-element Vector{Array{Float64, 6}}: that gives the solution to a 6D + time PDE at every point in phase space on a certain interval as it progress through 10 time steps (hence the 10-element vector).
I want to plot this as two three-dimensional volume plots (3D for velocity space + 3D for space) animated through time. Is there any way to do this with Makie.jl?
I am setting up my input data (in the context of a larger program) like so
ts, xs, ys, zs, vxs, vys, vzs = [0:0.1:1 for d in domains] # 7-element Vector{StepRangeLen...
u = [collect(sol.u([t,x,y,z,vx,vy,vz]) for x in xs, y in ys, z in zs, vx in vxs, vy in vys, vz in vzs) for t in ts] # 11-element Vector{Array{Float64, 6}}
But you can test a similar data structure with sol = [rand(10,10,10,10,10,t) for t in 1:10]
@lazarusA
How do you mean that? changing volume(f[1, 1], data_1, axis = (;type = Axis3)) with meshscatter(f[1, 1], data_1, axis = (;type = Axis3)) would be more accurate?