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
060430f3
Commit
060430f3
authored
1 week ago
by
Jonas Krimmer
Browse files
Options
Downloads
Patches
Plain Diff
refactor
parent
ef965b86
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/from_dump.jl
+50
-0
50 additions, 0 deletions
examples/from_dump.jl
examples/plot_results.jl
+0
-37
0 additions, 37 deletions
examples/plot_results.jl
with
50 additions
and
37 deletions
examples/from_dump.jl
0 → 100644
+
50
−
0
View file @
060430f3
function
plot_from_dump
(
fn
;
iter
=
1
,
mode
=
1
,
collimate
=
false
)
z0
,
meta
=
h5open
(
fn
,
"r"
)
do
fid
rx
=
fid
[
"RXFields"
]
_colons
=
ntuple
(
_
->
Colon
(),
ndims
(
rx
)
-
1
)
getindex
(
rx
,
_colons
...
,
iter
),
Dict
(
attrs
(
fid
))
end
# third dimension can contain fields for different TX modes
z
=
z0
[
:
,
:
,
mode
]
Dx
=
meta
[
"Dx"
]
Dy
=
meta
[
"Dy"
]
Nx
=
meta
[
"Nx"
]
Ny
=
meta
[
"Ny"
]
x
,
y
=
fftfreq
(
Nx
,
Dx
[
end
]),
fftfreq
(
Ny
,
Dy
[
end
])
if
collimate
λ
=
meta
[
"lambda"
]
Dz
=
meta
[
"Dz"
]
yt
=
transpose
(
y
)
r²
=
@.
x
^
2
+
yt
^
2
@.
z
*=
cis
(
π
/
(
λ
*
Dz
)
*
r²
)
end
tr
=
complex_plot
(;
x
,
y
,
z
=
fftshift
(
z
))
lt
=
Config
(;
xaxis
=
Config
(
title
=
"x"
),
yaxis
=
Config
(
title
=
"y"
,
scaleanchor
=
"x"
,
autorange
=
true
))
Plot
(
tr
,
lt
)
end
function
attributes_from_dump
(
fn
)
h5open
(
fn
,
"r"
)
do
fid
OrderedDict
(
attrs
(
fid
))
end
end
function
post_dump_sampling_check
(
fn
;
kwargs
...
)
meta
=
attributes_from_dump
(
fn
)
N
=
meta
[
"Nx"
]
dx1
,
dxn
=
extrema
(
meta
[
"dx"
])
D1
,
Dn
=
extrema
(
meta
[
"Dx"
])
λ
=
meta
[
"lambda"
]
r0
=
meta
[
"r0eff"
]
z
=
range
(
0
,
meta
[
"Dz"
],
meta
[
"Nz"
])
check_sampling
(
z
,
N
,
dx1
,
D1
,
dxn
,
Dn
;
λ
,
r0
,
kwargs
...
)
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
examples/plot_results.jl
+
0
−
37
View file @
060430f3
...
...
@@ -148,40 +148,3 @@ function plot_fields(T::DataType=Float64; domain::Domain=Domain{T}(), beam::Beam
η
end
function
plot_from_dump
(
fn
;
iter
=
1
,
mode
=
1
,
collimate
=
false
)
z0
,
meta
=
h5open
(
fn
,
"r"
)
do
fid
rx
=
fid
[
"RXFields"
]
_colons
=
ntuple
(
_
->
Colon
(),
ndims
(
rx
)
-
1
)
getindex
(
rx
,
_colons
...
,
iter
),
Dict
(
attrs
(
fid
))
end
# third dimension can contain fields for different TX modes
z
=
z0
[
:
,
:
,
mode
]
Dx
=
meta
[
"Dx"
]
Dy
=
meta
[
"Dy"
]
Nx
=
meta
[
"Nx"
]
Ny
=
meta
[
"Ny"
]
x
,
y
=
fftfreq
(
Nx
,
Dx
[
end
]),
fftfreq
(
Ny
,
Dy
[
end
])
if
collimate
λ
=
meta
[
"lambda"
]
Dz
=
meta
[
"Dz"
]
yt
=
transpose
(
y
)
r²
=
@.
x
^
2
+
yt
^
2
@.
z
*=
cis
(
π
/
(
λ
*
Dz
)
*
r²
)
end
tr
=
complex_plot
(;
x
,
y
,
z
=
fftshift
(
z
))
lt
=
Config
(;
xaxis
=
Config
(
title
=
"x"
),
yaxis
=
Config
(
title
=
"y"
,
scaleanchor
=
"x"
,
autorange
=
true
))
Plot
(
tr
,
lt
)
end
function
attributes_from_dump
(
fn
)
h5open
(
fn
,
"r"
)
do
fid
OrderedDict
(
attrs
(
fid
))
end
end
\ No newline at end of file
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