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
e53c4724
Commit
e53c4724
authored
1 week ago
by
Jonas Krimmer
Browse files
Options
Downloads
Patches
Plain Diff
feat: dump rytov variances
parent
29208624
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/repeated_wave_propagation.jl
+4
-2
4 additions, 2 deletions
examples/repeated_wave_propagation.jl
with
4 additions
and
2 deletions
examples/repeated_wave_propagation.jl
+
4
−
2
View file @
e53c4724
...
...
@@ -21,9 +21,9 @@ function repeated_wave_propagation(utx::AbstractArray{Complex{T}}, midx, domain:
# estimate Fried parameters for partial propagations
r0
=
partial_r0_pw
(
2
π
/
λ
,
domain
.
z
,
Cn²
)
σr²eff
=
rytov_pw
(
2
π
/
λ
,
domain
.
Dz
,
channel
.
Cn²
)
# compute Rytov variance per step
σr²
=
rytov_pw
(
2
π
/
λ
,
domain
.
dz
,
channel
.
Cn²
)
(
σr²
>=
0.1
)
&&
@warn
"Insufficient number of planes, not within weak fluctuation regime."
σr²
=
rytov_pw
.
(
2
π
/
λ
,
diff
(
domain
.
z
),
channel
.
Cn²
)
# estimated beam waist radius at receiver
zr
=
2
π
/
λ
*
w0
^
2
/
2
...
...
@@ -84,6 +84,8 @@ function repeated_wave_propagation(utx::AbstractArray{Complex{T}}, midx, domain:
attrs
(
fid
)[
"D_r0"
]
=
D_r0
attrs
(
fid
)[
"r0eff"
]
=
r0eff
attrs
(
fid
)[
"r0"
]
=
r0
attrs
(
fid
)[
"sigmaR2eff"
]
=
σr²eff
attrs
(
fid
)[
"sigmaR2"
]
=
σr²
attrs
(
fid
)[
"Cn2"
]
=
channel
.
Cn²
attrs
(
fid
)[
"l0"
]
=
channel
.
l0
attrs
(
fid
)[
"L0"
]
=
channel
.
L0
...
...
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