1
0
Fork 0
mirror of https://gitlab.rlp.net/mobitar/ReCo.jl.git synced 2024-11-12 22:40:44 +00:00
ReCo.jl/src/animation.jl

99 lines
3 KiB
Julia
Raw Normal View History

2021-11-10 14:41:04 +00:00
function animate(sol::Solution, args, name_part::String; framerate::Int64=10)
println("Generating animation...")
2021-11-10 23:24:07 +00:00
set_theme!(theme_black())
2021-11-15 14:17:47 +00:00
fig = Figure(; resolution=(1080, 1080))
2021-11-10 14:41:04 +00:00
ax = Axis(
fig[1, 1];
limits=(-args.l, args.l, -args.l, args.l),
aspect=AxisAspect(1),
xlabel=L"x",
ylabel=L"y",
)
2021-11-15 14:17:47 +00:00
Colorbar(
fig[1, 2];
limits=(0, 2),
colormap=ColorSchemes.rainbow,
label=L"\frac{\varphi}{\pi}",
)
2021-11-10 23:24:07 +00:00
2021-11-10 14:41:04 +00:00
animation_path = "exports/$name_part.mkv"
record(fig, animation_path; framerate=framerate) do io
2021-11-15 14:17:47 +00:00
circles = Observable(Vector{Circle}(undef, args.N))
colors = Observable(Vector{RGBAf}(undef, args.N))
2021-11-11 00:51:58 +00:00
if args.debug
segments_x = zeros(2 * args.N)
segments_y = zeros(2 * args.N)
interaction_circles = Vector{Circle}(undef, args.N)
skin_circles = Vector{Circle}(undef, args.N)
interaction_colors = Vector{RGBAf}(undef, args.N)
skin_colors = Vector{RGBAf}(undef, args.N)
end
2021-11-10 14:41:04 +00:00
2021-11-15 14:17:47 +00:00
@showprogress 0.5 for frame in 1:(args.n_frames)
@simd for i in 1:(args.N)
circles[][i] = Circle(
Point2(sol.center[i, frame]), args.particle_diameter / 2
)
color = get(
ColorSchemes.rainbow, rem2pi(sol.φ[i, frame] / (2 * π), RoundDown)
)
colors[][i] = RGBAf(color)
2021-11-11 00:51:58 +00:00
if args.debug
2021-11-15 14:17:47 +00:00
interaction_circles[i] = Circle(
Point2(sol.center[i, frame]), args.interaction_r
)
2021-11-11 00:51:58 +00:00
skin_circles[i] = Circle(Point2(sol.center[i, frame]), args.skin_r)
interaction_colors[i] = RGBAf(color, 0.12)
skin_colors[i] = RGBAf(color, 0.06)
end
end
2021-11-10 23:24:07 +00:00
if frame > 1
2021-11-11 00:51:58 +00:00
if args.debug
@simd for i in 1:(args.N)
segments_x[2 * i - 1] = sol.center[i, frame - 1][1]
segments_x[2 * i] = sol.center[i, frame][1]
2021-11-10 14:41:04 +00:00
2021-11-11 00:51:58 +00:00
segments_y[2 * i - 1] = sol.center[i, frame - 1][2]
segments_y[2 * i] = sol.center[i, frame][2]
end
2021-11-10 14:41:04 +00:00
2021-11-15 14:17:47 +00:00
if frame == 2
linesegments!(ax, segments_x, segments_y; color=colors)
end
2021-11-11 00:51:58 +00:00
end
2021-11-15 14:17:47 +00:00
else # First frame
poly!(ax, circles; color=colors)
2021-11-10 14:41:04 +00:00
2021-11-15 14:17:47 +00:00
if args.debug
poly!(ax, interaction_circles; color=interaction_colors)
poly!(ax, skin_circles; color=skin_colors)
end
2021-11-11 00:51:58 +00:00
2021-11-15 14:17:47 +00:00
println("Started recording!")
2021-11-11 00:51:58 +00:00
end
2021-11-10 23:24:07 +00:00
2021-11-15 14:17:47 +00:00
notify(circles)
notify(colors)
2021-11-10 23:24:07 +00:00
ax.title = "t = $(round(sol.t[frame], digits=3))"
2021-11-10 14:41:04 +00:00
recordframe!(io)
end
end
println("Animation done and saved to $animation_path.")
return nothing
end