Skip to main content
. 2023 Jun 10;23(12):5480. doi: 10.3390/s23125480
Algorithm 1. Algorithm to determine the depth range for data reception in a saltwater environment.
Data:
f0 sample frequencies
σ medium conductivity
μ medium permeability
ε permittivity of the medium
ateσ penetration depth considering σ
ate penetration depth considering σ, μ and ε
begin
For the penetration depth considering σ
  for k = 0:1: f0final (f0final maximum value of f0) do
   ateσ=0.0173f0·σ
  end for
For the penetration depth considering σ,μ0 and ε0
  for k = 0:1: f0final do
   ω=2·π·f0
   ate=ωμ·ε121+σω·ε211/2
  end for
end