`atmosphere.py` has an impulse response function that I can convolve with the signal to obtain an attenuated signal. How to use the `reflection.py` module? ```python from acoustics.reflection import Boundary signal = ... # a numpy array in time domain representing sound pressure in Pa b = Boundary(frequency=np.linspace(1, 1000, 1000), flow_resistivity=1e3, angle=np.deg2rad(120), reflection_model='spherical', distance=1) rf = b.reflection_factor ir = impulse_response(rf) ??? ``` Thank you. Best, Danylo
atmosphere.pyhas an impulse response function that I can convolve with the signal to obtain an attenuated signal.How to use the
reflection.pymodule?Thank you.
Best,
Danylo