Skip to content
Snippets Groups Projects
Commit 0c878712 authored by Jonas Krimmer's avatar Jonas Krimmer
Browse files

feat: allow sweep iterations

parent b40dec18
No related branches found
No related tags found
No related merge requests found
......@@ -39,12 +39,24 @@ function batch_scintillation_index(args=Dict(:Nz => 4:16, :dz => 1e3 ./ (3:15));
p = Progress(Nv; showspeed=true, enabled=showprogress)
for i 1:Nv
xargs = (; (k => v[i] for (k, v) pairs(args))...)
# we have to sort the outputs, why we prepend a number to the filenames
repeated_wave_propagation(iters; xargs..., λ, dir, fnprefix=lpad(i, ceil(Int, log10(Nv)), "0") * "_", showprogress=false, samplingcheck, meta=xargs, kwargs...)
sleep(0.1)
next!(p, showvalues = [(string(k), v) for (k, v) pairs(xargs)])
if :iters keys(args)
# assume no other parameter is swept
(length(args) > 1) && @warn "Other parameters besides iters are ignored..."
for i 1:Nv
xargs = (; (k => v[i] for (k, v) pairs(args))...)
# we have to sort the outputs, why we prepend a number to the filenames
repeated_wave_propagation(args[:iters][i]; λ, dir, fnprefix=lpad(i, ceil(Int, log10(Nv)), "0") * "_", showprogress=false, samplingcheck, meta=xargs, kwargs...)
sleep(0.1)
next!(p, showvalues = [(string(k), v) for (k, v) pairs(xargs)])
end
else
for i 1:Nv
xargs = (; (k => v[i] for (k, v) pairs(args))...)
# we have to sort the outputs, why we prepend a number to the filenames
repeated_wave_propagation(iters; xargs..., λ, dir, fnprefix=lpad(i, ceil(Int, log10(Nv)), "0") * "_", showprogress=false, samplingcheck, meta=xargs, kwargs...)
sleep(0.1)
next!(p, showvalues = [(string(k), v) for (k, v) pairs(xargs)])
end
end
# Save to CSV
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment