Doppler
Doppler shift module.
Attributes
Functions
velocity_from_doppler_shift
velocity_from_doppler_shift(f1, f2, c=SOUNDSPEED) -> float
Calculate velocity based on measured frequency shifts due to Doppler shift.
The assumption is made that the velocity is constant between the observation times.
| PARAMETER | DESCRIPTION |
|---|---|
f1
|
Lower frequency \(f_1\).
|
f2
|
Upper frequency \(f_2\).
|
c
|
Speed of sound \(c\).
DEFAULT:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Calculated velocity. |
Source code in acoustic_toolbox/doppler.py
frequency_shift
frequency_shift(
frequency,
velocity_source,
velocity_receiver,
soundspeed=SOUNDSPEED,
) -> float
Frequency shift due to Doppler effect.
| PARAMETER | DESCRIPTION |
|---|---|
frequency
|
Emitted frequency \(f\).
|
velocity_source
|
Velocity of source \(v_s\). Positive if the source is moving away from the receiver (and negative in the other direction).
|
velocity_receiver
|
Velocity of receiver \(v_r\). Positive if the receiver is moving towards the source (and negative in the other direction);
|
soundspeed
|
Speed of sound \(c\). $$ f = \frac{c + v_r}{c + v_s} f_0 $$
DEFAULT:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Frequency after shift. |
Source code in acoustic_toolbox/doppler.py
:::