Merge branch 'develop' of ssh://code.ascee.nl:12001/ASCEE/lasp into develop
This commit is contained in:
commit
4649232767
@ -117,11 +117,15 @@ void PowerSpectra_compute(const PowerSpectra* ps,
|
|||||||
|
|
||||||
TRACE(15,"fft done");
|
TRACE(15,"fft done");
|
||||||
|
|
||||||
/* Scale fft such that power is easily computed
|
/* Scale fft such that power is easily comxputed */
|
||||||
|
const c scale_fac = d_sqrt(2/win_pow)/nfft;
|
||||||
|
|
||||||
|
/* POWER SPECTRAL DENSITY? Scale fft such that power is easily computed
|
||||||
* - Multiply power spectral density by 2 except at f=0 and f=fNq
|
* - Multiply power spectral density by 2 except at f=0 and f=fNq
|
||||||
* - Divide by energy of window function = nfft * window_power
|
* - Divide by energy of window function = nfft * window_power
|
||||||
* - .. sqrt(factors) because it is applied to output fft instead of psd */
|
* - .. sqrt(factors) because it is applied to output fft instead of psd */
|
||||||
const c scale_fac = d_sqrt(2/(nfft*win_pow));
|
// const c scale_fac = d_sqrt(2/(nfft*win_pow));
|
||||||
|
|
||||||
cmat_scale(&fft_work,scale_fac);
|
cmat_scale(&fft_work,scale_fac);
|
||||||
TRACE(15,"scale done");
|
TRACE(15,"scale done");
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ class SmoothingWidth(Enum):
|
|||||||
twelve = (12, '1/12th octave smoothing')
|
twelve = (12, '1/12th octave smoothing')
|
||||||
twfo = (24, '1/24th octave smoothing')
|
twfo = (24, '1/24th octave smoothing')
|
||||||
ftei = (48, '1/48th octave smoothing')
|
ftei = (48, '1/48th octave smoothing')
|
||||||
|
# hundred = (100, '1/100th octave smoothing') # useful for removing 'grass'
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def fillComboBox(cb):
|
def fillComboBox(cb):
|
||||||
@ -136,7 +137,6 @@ def smoothSpectralData(freq, M, sw: SmoothingWidth,
|
|||||||
x0 = 1 if freq[0] == 0 else 0 # Skip first data point if zero frequency
|
x0 = 1 if freq[0] == 0 else 0 # Skip first data point if zero frequency
|
||||||
Psm[0] = P[0] # Reuse old value in case first data..
|
Psm[0] = P[0] # Reuse old value in case first data..
|
||||||
# ..point is skipped. Not plotted any way.
|
# ..point is skipped. Not plotted any way.
|
||||||
P[-1] = P[-2] # Last data point (Nyquist f) can be invalid
|
|
||||||
|
|
||||||
# Loop through data points
|
# Loop through data points
|
||||||
for x in range(x0, L):
|
for x in range(x0, L):
|
||||||
@ -162,6 +162,7 @@ def smoothSpectralData(freq, M, sw: SmoothingWidth,
|
|||||||
fu = fNq # no data beyond fNq
|
fu = fNq # no data beyond fNq
|
||||||
fl = fc**2 / fu # keep window symmetric
|
fl = fc**2 / fu # keep window symmetric
|
||||||
|
|
||||||
|
# Find indices corresponding to frequencies
|
||||||
xl = bisect.bisect_left(freq, fl) # index corresponding to fl
|
xl = bisect.bisect_left(freq, fl) # index corresponding to fl
|
||||||
xu = bisect.bisect_left(freq, fu)
|
xu = bisect.bisect_left(freq, fu)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user