DeepSOIC
Registered
Thread Starter
- Joined
- Mar 6, 2019
- Posts
- 16
More
- Main Amp
- diy
- Front Speakers
- diy
Hi! Log sweeps are nice, but the results it generates have excessive resolution in the high frequencies and poor resolution in the low end, forcing me to do long measurements to have a decent bass response accuracy in the measurement. Hyperbolic sweeps are better in that regard, they have a fixed number of oscillation cycles per octave, so should give a naturally even data density in the resulting frequency response plotted on log scale. I have generated a sweep file using scipy, in hopes of trying it out:
but when i try to use it for a measurement, i get an error:
using REW 5.20 on Windows10
Python:
import scipy.signal as sig
import numpy as np
times = np.linspace(0,30, 30*44100)
wf = sig.chirp(times, 20000, 30, 20, method='hyperbolic')
import scipy.io.wavfile as wavfile
wavfile.write(r'drive:\path\to\logchirp-20-20k-30s.wav', 44100, wf)
but when i try to use it for a measurement, i get an error:
So, apparently, i can't just trick REW into doing the hyperbolic sweep, it needs an in-depth support in the code... or does it?the file does not contain the data REW requires to generate the measurement, please use a measurement sweep saved from this REW version
using REW 5.20 on Windows10