Silencer

AUTD3 provides a Silencer to reduce noise of the output. The Silencer suppresses sudden changes in the drive signal of the transducers, making it quieter.

Theory

For details, refer to the paper by Suzuki et al.1.

In summary,

  • Amplitude-modulated ultrasound generates audible sound.
  • When driving ultrasonic transducers, phase changes cause amplitude fluctuations.
    • Therefore, audible noise is generated.
  • By linearly interpolating phase changes and gradually changing them, amplitude fluctuations can be suppressed.
    • Therefore, noise can be reduced.
  • The finer the interpolation, the smaller the noise.

Silencer Settings

To configure the Silencer, send Silencer.

The Silencer is set to appropriate values by default. To disable the Silencer, send disable.

use autd3::prelude::*;
fn main() {
let _ = 
Silencer::default();
let _ = 
Silencer::disable();
}
#include<autd3.hpp>
int main() {
using namespace autd3;
Silencer();
Silencer::disable();
return 0; }
using AUTD3Sharp;
new Silencer();
Silencer.Disable();
from pyautd3 import Silencer
Silencer()
Silencer.disable()

For finer settings, you need to choose between the following two modes:

By default, it is set to Fixed completion time mode.

Fixed update rate mode

Phase Change in Fixed update rate mode

In this mode, the Silencer linearly interpolates and gradually changes the phase to reduce noise. In other words, it is almost equivalent to passing the time series data of phase through a moving average filter. However, it differs in that it considers the periodicity of the phase data.

For example, consider the case where the period of ultrasound is . That is, corresponds to , and corresponds to . Here, suppose the phase changes from to at time . In this case, the phase change by the Silencer will be as shown in the following figure.

Phase change

On the other hand, suppose the phase changes from to at time . In this case, the phase change by the Silencer will be as shown in the following figure. This is because is closer than .

Phase change (when the phase change amount is greater than )

In other words, the Silencer updates the phase as follows for the current and target value : where represents the update amount per step (step of Silencer). The update frequency is .

The smaller is, the smoother the phase change and the more noise is suppressed.

Difference in changes due to

Due to the nature of this implementation, it may behave differently from a moving average filter. One case is when the phase change amount is greater than , as shown above, and another case is when the phase changes again in the middle. An example of phase change in the second case is shown below. From the perspective of fidelity to the original time series, the moving average filter is correct, but considering the phase change amount greater than or making variable (i.e., making the filter length variable) is difficult, so the current implementation is adopted.

Comparison with moving average filter

Amplitude Change in Fixed update rate mode

Since amplitude fluctuations cause noise, applying the same filter to the intensity parameter can suppress noise due to AM.

Unlike phase, the intensity parameter is not periodic, so it is updated as follows for the current and target value :

Setting Fixed update rate mode

To set Fixed update rate mode, do as follows. The arguments correspond to the aforementioned (unit is ).

use autd3::prelude::*;
use std::num::NonZeroU16;
fn main() {
let _ = 
Silencer {
    config: FixedUpdateRate {
        intensity: NonZeroU16::MIN,
        phase: NonZeroU16::MIN,
    },
};
}
#include<autd3.hpp>
int main() {
using namespace autd3;
Silencer{FixedUpdateRate{.intensity = 1, .phase = 1}};
return 0; }
using AUTD3Sharp;
new Silencer(
    config: new FixedUpdateRate
    {
        Intensity = 1,
        Phase = 1
    }
);
from pyautd3 import Silencer, FixedUpdateRate
Silencer(
    config=FixedUpdateRate(
        intensity=1,
        phase=1,
    ),
)

Fixed completion time mode

In this mode, phase/intensity changes are completed within a fixed time.

Setting Fixed completion time mode

To set Fixed completion time mode, do as follows.

intensity and phase correspond to the completion time of intensity/phase changes, respectively. These must be integer multiples of the ultrasound period ().

use autd3::prelude::*;
use std::time::Duration;
fn main() {
let _ = 
Silencer {
    config: FixedCompletionTime {
        intensity: Duration::from_micros(250),
        phase: Duration::from_micros(250),
        strict_mode: true,
    },
};
}
#include<chrono>
#include<autd3.hpp>
int main() {
using namespace autd3;
Silencer{FixedCompletionTime{.intensity = std::chrono::microseconds(250),
                             .phase = std::chrono::microseconds(250),
                             .strict_mode = true}};
return 0; }
using AUTD3Sharp;
new Silencer(
    config: new FixedCompletionTime
    {
        Intensity = Duration.FromMicros(250),
        Phase = Duration.FromMicros(250),
        StrictMode = true
    }
);
from pyautd3 import Duration, FixedCompletionTime, Silencer
Silencer(
    config=FixedCompletionTime(
        intensity=Duration.from_micros(250),
        phase=Duration.from_micros(250),
        strict_mode=True,
    ),
)

The default values are for phase changes and for intensity changes. Disabling the Silencer is equivalent to completing phase/intensity changes within the ultrasound period ().

In this mode, an error is returned if the phase/intensity changes specified by Modulation, FociSTM, or GainSTM cannot be completed within the time specified by the Silencer. Therefore, the following conditions must be met:

  • Silencer intensity change completion time Modulation sampling period
  • Silencer intensity change completion time FociSTM/GainSTM sampling period
  • Silencer phase change completion time FociSTM/GainSTM sampling period

If strict_mode is set to false, no error is returned even if these conditions are not met, but it is not recommended.

1

Suzuki, Shun, et al. “Reducing amplitude fluctuation by gradual phase shift in midair ultrasound haptics.” IEEE transactions on haptics 13.1 (2020): 87-93.