@@ -49,52 +49,6 @@ function screen_to_refraction_op(screen::AbstractArray{T,3}, r0::AbstractVector)
@.R=cis(R)
end
function turbulent_channel!(u::AbstractMatrix{Complex{T}},domain::Domain{T}=Domain{T}(),channel::TurbulentChannel{T}=TurbulentChannel{T}();λ=1.55e-6,uniform::Bool=false,fftplan=plan_fft!(u))where{T<:Union{Float32,Float64}}
# fried parameter for each **partial** propagation
r0=T(fried_pw(2π/λ,domain.dz,channel.Cn²))
# choose number of subharmonics Nsh such that 3^Nsh * domain.d ≥ L0
Nsh=round(Int,cld(log(channel.L0/min(domain.Dx,domain.Dy)),log(3)))# we assume L0 > d
# we need Nz-1 screens since Nz takes the source plane into account
Ncplx=cld(domain.Nz-1,2)
# preallocate phase screen array
screen=similar(u,size(u)...,Ncplx)
# Uniform sampling with subharmonics / nonuniform sampling
function turbulent_channel!(u::AbstractMatrix{Complex{T}},domain::Domain{T,<:AbstractVector}=Domain{T}(1e-3,2e-3,1e2,256,11),channel::TurbulentChannel{T}=TurbulentChannel{T}(s);λ=1.55e-6,uniform::Bool=false,fftplan=plan_fft!(u))where{T<:Union{Float32,Float64}}
# preallocate refraction operator array
R=similar(u,domain.Nx,domain.Ny,domain.Nz-1)
# complex-valued array to store phase screen generated with nu-ft (output always complex-valued)
screen=similar(u,domain.Nx,domain.Ny)
form∈1:domain.Nz-1
# fried parameter for each **partial** propagation
r0=T(fried_pw(2π/λ,domain.dz,channel.Cn²))
# choose number of subharmonics Nsh such that 3^Nsh * domain.d ≥ L0
Nsh=round(Int,cld(log(channel.L0/min(domain.Dx[m],domain.Dy[m])),log(3)))# we assume L0 > d
# Uniform sampling with subharmonics / nonuniform sampling
function turbulent_channel!(u::AbstractMatrix{Complex{T}},r0::AbstractVector,domain::Domain{T}=Domain{T}(),channel::TurbulentChannel{T}=TurbulentChannel{T}();λ=1.55e-6,uniform::Bool=false,fftplan=plan_fft!(u))where{T<:Union{Float32,Float64}}
# choose number of subharmonics Nsh such that 3^Nsh * domain.d ≥ L0