Kvach
Registered
Thread Starter
- Joined
- Dec 11, 2023
- Posts
- 2
More
- DAC
- Tascam us-366 Roland edirol fa-66 Focusrite saffire pro 24
- Front Speakers
- Yamaha NSg 40 GRUNDIG FINE ARTS BX-1
Hi
I'm writing my own soft (online PHP) for measure soundcart by recordet file and I test different measure from different soft and my results were the same only with rew with fft Falt-top window , 1M Length - from generated distortion file
THD+N: 0,0012 %
vs teoreticaly
0.0011826877702029%
vs my method
0.001188020099145558%
file generated (32 bit int) with formula $db_to_abs(-1) * sin($n * $w)+ db_to_abs(-100)*sin($n * 2* $w) + db_to_abs(-110)*sin($n * 3* $w) + db_to_abs(-120)*sin($n * 4* $w) + db_to_abs(-130)*sin($n * 5* $w) + white noice (-140dB)
$w=2 * M_PI * 960 / $sampleRate; 960Hz best for dft transform frequency
noice log file in 32 bit integer
$fen=average noice from file log
formula THD+n = ( (sqrt(pow(db_to_abs(-100),2)+pow(db_to_abs(-110),2)+pow(db_to_abs(-120),2)+pow(db_to_abs(-130),2)) + $fen*sqrt(2)) /db_to_abs(-1)*100 );
energy of each sine equal amplitude^2/sqrt(2) where sqrt(2) in numerator and denominator are abbreviated
Are these REW parameters (fft Falt-top window , 1M Length) optimal and is it possible to focus on them?
My measure in attachment 32 bit int 192000 distortion.flac + distortion.log + distortion.mdat
I'm writing my own soft (online PHP) for measure soundcart by recordet file and I test different measure from different soft and my results were the same only with rew with fft Falt-top window , 1M Length - from generated distortion file
THD+N: 0,0012 %
vs teoreticaly
0.0011826877702029%
vs my method
0.001188020099145558%
file generated (32 bit int) with formula $db_to_abs(-1) * sin($n * $w)+ db_to_abs(-100)*sin($n * 2* $w) + db_to_abs(-110)*sin($n * 3* $w) + db_to_abs(-120)*sin($n * 4* $w) + db_to_abs(-130)*sin($n * 5* $w) + white noice (-140dB)
$w=2 * M_PI * 960 / $sampleRate; 960Hz best for dft transform frequency
noice log file in 32 bit integer
$fen=average noice from file log
formula THD+n = ( (sqrt(pow(db_to_abs(-100),2)+pow(db_to_abs(-110),2)+pow(db_to_abs(-120),2)+pow(db_to_abs(-130),2)) + $fen*sqrt(2)) /db_to_abs(-1)*100 );
energy of each sine equal amplitude^2/sqrt(2) where sqrt(2) in numerator and denominator are abbreviated
Are these REW parameters (fft Falt-top window , 1M Length) optimal and is it possible to focus on them?
My measure in attachment 32 bit int 192000 distortion.flac + distortion.log + distortion.mdat
Attachments
Last edited: