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
Compare revisions
ef2a92d3e7c13c40968acc6a39e77e65e9ae7bc5 to 2b809910c3e44afb083ab96ac684d2f3e9170375
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
jonas.krimmer/turbulent-channel-model
Select target project
No results found
2b809910c3e44afb083ab96ac684d2f3e9170375
Select Git revision
Branches
master
Tags
pre-ITG24
Swap
Target
jonas.krimmer/turbulent-channel-model
Select target project
jonas.krimmer/turbulent-channel-model
1 result
ef2a92d3e7c13c40968acc6a39e77e65e9ae7bc5
Select Git revision
Branches
master
Tags
pre-ITG24
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
feat: cumulative scv
· 47f478ca
Jonas Krimmer
authored
1 week ago
47f478ca
fix: behavior for non-existent xvals.csv
· 77b0c173
Jonas Krimmer
authored
1 week ago
77b0c173
feat: convergence analysis for SI
· 2b809910
Jonas Krimmer
authored
1 week ago
2b809910
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
examples/analyze_turbulent_channel_model.jl
+18
-6
18 additions, 6 deletions
examples/analyze_turbulent_channel_model.jl
examples/batch_analysis.jl
+8
-7
8 additions, 7 deletions
examples/batch_analysis.jl
src/estimate_statistics.jl
+6
-0
6 additions, 0 deletions
src/estimate_statistics.jl
with
32 additions
and
13 deletions
examples/analyze_turbulent_channel_model.jl
View file @
2b809910
...
...
@@ -156,21 +156,33 @@ function scintillation_index(fn; basedir=pwd(), debug=false, showplot=false)
λ
=
metadata
[
"lambda"
]
Dz
=
metadata
[
"Dz"
]
Cn²
=
metadata
[
"Cn2"
]
w0
=
metadata
[
"w0"
]
l0
=
metadata
[
"l0"
]
L0
=
metadata
[
"L0"
]
# scintillation index along highest dimension, note that the dumped fields are not fftshifted!
SI
=
squeeze
(
scv
(
urx
;
dims
=
ndims
(
urx
)))
SI0
=
CUDA
.
@allowscalar
first
(
SI
)
# without the fftshift, the first element is the on-axis one
if
debug
# compute theoretical reference values
SI_pw
=
scintillation_index_pw
(
2
π
/
λ
,
Dz
,
Cn²
,
l0
,
L0
)
SI_sw
=
scintillation_index_sw
(
2
π
/
λ
,
Dz
,
Cn²
,
l0
,
L0
)
SI_gaussian
=
scintillation_index_gaussian
(
2
π
/
λ
,
Dz
,
Cn²
,
w0
,
l0
,
L0
)
@info
"Estimated on-axis scintillation index: "
SI0
@info
"Theoretical result (plane wave): "
SI_pw
@info
"Theoretical result (spherical wave): "
SI_sw
@info
"Theoretical result (gaussian beam): "
SI_gaussian
# for weak fluctuations, the scintillation index leads to the Rytov variance
σ²ᵣ_pw
=
rytov_pw
(
2
π
/
λ
,
Dz
,
Cn²
)
@info
"Rytov variance (plane wave): "
σ²ᵣ_pw
σ²ᵣ_sw
=
rytov_sw
(
2
π
/
λ
,
Dz
,
Cn²
)
@info
"Rytov variance (spherical wave): "
σ²ᵣ_sw
# check convergence on axis
SI_evo
=
squeeze
(
cumscv
(
urx
[
1
,
1
,
:
]))
y
=
Adapt
.
adapt
(
Array
,
SI_evo
)
p
=
plot
.
scatter
(
y
=
y
)
p
.
layout
.
xaxis
.
title
=
"Number of iterations"
p
.
layout
.
yaxis
.
title
=
"Estimated scintillation index"
@info
"Theoretical scintillation index (PW, Kolmogorov): "
exp
(
0.49
σ²ᵣ_pw
/
(
1
+
1.11
σ²ᵣ_pw
^
(
6
//
5
))
^
(
7
//
6
)
+
0.51
σ²ᵣ_pw
/
(
1
+
0.69
σ²ᵣ_pw
^
(
6
//
5
))
^
(
5
//
6
))
-
1
display
(
p
)
end
if
showplot
...
...
This diff is collapsed.
Click to expand it.
examples/batch_analysis.jl
View file @
2b809910
...
...
@@ -107,17 +107,16 @@ function batch_scintillation_index(dirname)
# gather all hdf5 files in the given directory `dirname`
files
=
readdir
(
dirname
,
join
=
true
)
csvidx
=
findfirst
(
contains
(
"xvals.csv"
),
files
)
h5files
=
filter
(
x
->
splitext
(
x
)[
2
]
==
".hdf5"
,
files
)
Nf
=
length
(
h5files
)
# gather xvals from corresponding csv if possible - otherwise 1:N
df
=
if
isnothing
(
csvidx
)
DataFrame
(
:
File
=>
range
(
1
,
Nf
))
else
CSV
.
read
(
files
[
csvidx
],
DataFrame
)
# gather xvals from corresponding csv if possible - otherwise generate xvals.csv and fill with 1:N
xvals_fn
=
joinpath
(
dirname
,
"xvals.csv"
)
!
isfile
(
xvals_fn
)
&&
open
(
xvals_fn
,
"w"
)
do
fid
CSV
.
write
(
fid
,
DataFrame
(
:
file
=>
range
(
1
,
Nf
)))
end
df
=
CSV
.
read
(
xvals_fn
,
DataFrame
)
SI_est
=
zeros
(
Nf
)
SI_pw
=
zeros
(
Nf
)
...
...
@@ -133,7 +132,9 @@ function batch_scintillation_index(dirname)
# make sure the order the files are read matches the xvals in the DataFrame
xname
=
first
(
names
(
df
))
@assert
df
[
k
,
xname
]
==
metadata
[
string
(
xname
)]
if
xname
!=
"file"
@assert
df
[
k
,
xname
]
==
metadata
[
string
(
xname
)]
end
Cn²
=
metadata
[
"Cn2"
]
λ
=
metadata
[
"lambda"
]
...
...
This diff is collapsed.
Click to expand it.
src/estimate_statistics.jl
View file @
2b809910
...
...
@@ -232,6 +232,12 @@ function scv(u::AbstractArray{T,N}; dims=:) where {T,N}
mean
(
abs2
,
I
;
dims
)
./
mean
(
I
;
dims
)
.^
2
.-
1
# it might be advantageous to not use `var` to avoid computing the mean twice
end
function
cumscv
(
u
::
AbstractArray
{
T
,
N
};
dims
=
N
)
where
{
T
,
N
}
I
=
abs2
.
(
u
)
I²
=
I
.^
2
cumsum
(
I²
;
dims
)
.*
(
1
:
size
(
I
,
dims
))
./
cumsum
(
I
;
dims
)
.^
2
.-
1
end
function
estimate_ccdf
(
v
)
# local ccdf
...
...
This diff is collapsed.
Click to expand it.