Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
turbulent-channel-model
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Krimmer
turbulent-channel-model
Commits
0c878712
Commit
0c878712
authored
1 month ago
by
Jonas Krimmer
Browse files
Options
Downloads
Patches
Plain Diff
feat: allow sweep iterations
parent
b40dec18
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dev/fix_scintillation_index.jl
+18
-6
18 additions, 6 deletions
dev/fix_scintillation_index.jl
with
18 additions
and
6 deletions
dev/fix_scintillation_index.jl
+
18
−
6
View file @
0c878712
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment