Split timeweighting into different types for each of the possible use cases.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9aba6040f7
commit
b61fb7b014
1
.gitignore
vendored
1
.gitignore
vendored
@ -20,3 +20,4 @@ doc
|
|||||||
.spyproject
|
.spyproject
|
||||||
.cache
|
.cache
|
||||||
_skbuild
|
_skbuild
|
||||||
|
acme_log.log
|
||||||
|
@ -35,6 +35,7 @@ SLM::SLM(const d fs, const d Lref, const us downsampling_fac, const d tau,
|
|||||||
|
|
||||||
{
|
{
|
||||||
DEBUGTRACE_ENTER;
|
DEBUGTRACE_ENTER;
|
||||||
|
DEBUGTRACE_PRINT(_alpha);
|
||||||
|
|
||||||
// Make sure thread pool is running
|
// Make sure thread pool is running
|
||||||
getPool();
|
getPool();
|
||||||
@ -42,7 +43,7 @@ SLM::SLM(const d fs, const d Lref, const us downsampling_fac, const d tau,
|
|||||||
if (Lref <= 0) {
|
if (Lref <= 0) {
|
||||||
throw rte("Invalid reference level");
|
throw rte("Invalid reference level");
|
||||||
}
|
}
|
||||||
if (tau <= 0) {
|
if (tau < 0) {
|
||||||
throw rte("Invalid time constant for Single pole lowpass filter");
|
throw rte("Invalid time constant for Single pole lowpass filter");
|
||||||
}
|
}
|
||||||
if (fs <= 0) {
|
if (fs <= 0) {
|
||||||
@ -67,8 +68,8 @@ std::vector<unique_ptr<Filter>> createBandPass(const dmat &coefs) {
|
|||||||
return bf;
|
return bf;
|
||||||
}
|
}
|
||||||
us SLM::suggestedDownSamplingFac(const d fs, const d tau) {
|
us SLM::suggestedDownSamplingFac(const d fs, const d tau) {
|
||||||
if(tau<0) throw rte("Invalid time weighting time constant");
|
if (fs <= 0)
|
||||||
if(fs<=0) throw rte("Invalid sampling frequency");
|
throw rte("Invalid sampling frequency");
|
||||||
// A reasonable 'framerate' for the sound level meter, based on the
|
// A reasonable 'framerate' for the sound level meter, based on the
|
||||||
// filtering time constant.
|
// filtering time constant.
|
||||||
if (tau > 0) {
|
if (tau > 0) {
|
||||||
@ -170,8 +171,8 @@ dmat SLM::run(const vd &input_orig) {
|
|||||||
/* DEBUGTRACE_PRINT(res.n_rows); */
|
/* DEBUGTRACE_PRINT(res.n_rows); */
|
||||||
/* DEBUGTRACE_PRINT(futs.size()); */
|
/* DEBUGTRACE_PRINT(futs.size()); */
|
||||||
|
|
||||||
// Update the total number of samples harvested so far. NOTE: *This should be
|
// Update the total number of samples harvested so far. NOTE: *This should
|
||||||
// done AFTER the threads are done!!!*
|
// be done AFTER the threads are done!!!*
|
||||||
}
|
}
|
||||||
N += input.n_rows;
|
N += input.n_rows;
|
||||||
|
|
||||||
|
@ -286,46 +286,57 @@ class this_lasp_shelve(Shelve):
|
|||||||
return os.path.join(lasp_appdir, f'{node}_config.shelve')
|
return os.path.join(lasp_appdir, f'{node}_config.shelve')
|
||||||
|
|
||||||
class TimeWeighting:
|
class TimeWeighting:
|
||||||
none = (-1, 'Raw (no time weighting)')
|
# This is not actually a time weighting
|
||||||
|
none = (0, 'Raw (no time weighting)')
|
||||||
|
|
||||||
uufast = (1e-4, '0.1 ms')
|
uufast = (1e-4, '0.1 ms')
|
||||||
ufast = (35e-3, 'Impulse (35 ms)')
|
ufast = (35e-3, 'Impulse (35 ms)')
|
||||||
fast = (0.125, 'Fast (0.125 s)')
|
fast = (0.125, 'Fast (0.125 s)')
|
||||||
slow = (1.0, 'Slow (1.0 s)')
|
slow = (1.0, 'Slow (1.0 s)')
|
||||||
tens = (10., '10 s')
|
tens = (10., '10 s')
|
||||||
infinite = (0, 'Infinite')
|
|
||||||
types_realtime = (ufast, fast, slow, tens, infinite)
|
# All-averaging: compute the current average of all history. Kind of the
|
||||||
types_all = (none, uufast, ufast, fast, slow, tens, infinite)
|
# equivalent level. Only useful for power spectra. For Sound Level Meter,
|
||||||
|
# equivalent levels does that thing.
|
||||||
|
averaging = (-1, 'All-averaging')
|
||||||
|
|
||||||
|
types_all = (none, uufast, ufast, fast, slow, tens, averaging)
|
||||||
|
|
||||||
|
# Used for combobox of realt time power spectra
|
||||||
|
types_realtimeaps = (ufast, fast, slow, tens, averaging)
|
||||||
|
# Used for combobox of realt time sound level meter
|
||||||
|
types_realtimeslm = (ufast, fast, slow, tens)
|
||||||
|
|
||||||
|
# Used for combobox of sound level meter - time dependent
|
||||||
|
types_slmt = (none, uufast, ufast, fast, slow, tens)
|
||||||
|
|
||||||
|
# Used for combobox of sound level meter - Lmax statistics
|
||||||
|
types_slmstats = (uufast, ufast, fast, slow, tens)
|
||||||
|
|
||||||
default = fast
|
default = fast
|
||||||
default_index = 3
|
|
||||||
default_index_realtime = 1
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def fillComboBox(cb, realtime=False):
|
def fillComboBox(cb, types):
|
||||||
"""
|
"""
|
||||||
Fill TimeWeightings to a combobox
|
Fill TimeWeightings to a combobox
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
cb: QComboBox to fill
|
cb: QComboBox to fill
|
||||||
|
types: The types to fill it with
|
||||||
"""
|
"""
|
||||||
cb.clear()
|
cb.clear()
|
||||||
if realtime:
|
|
||||||
types = TimeWeighting.types_realtime
|
logging.debug(f'{types}')
|
||||||
defindex = TimeWeighting.default_index_realtime
|
|
||||||
else:
|
|
||||||
types = TimeWeighting.types_all
|
|
||||||
defindex = TimeWeighting.default_index
|
|
||||||
for tw in types:
|
for tw in types:
|
||||||
cb.addItem(tw[1], tw)
|
cb.addItem(tw[1], tw)
|
||||||
|
if TimeWeighting.default == tw:
|
||||||
cb.setCurrentIndex(defindex)
|
cb.setCurrentIndex(cb.count()-1)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def getCurrent(cb):
|
def getCurrent(cb):
|
||||||
if cb.count() == len(TimeWeighting.types_realtime):
|
for type in TimeWeighting.types_all:
|
||||||
return TimeWeighting.types_realtime[cb.currentIndex()]
|
if cb.currentText() == type[1]:
|
||||||
else:
|
return type
|
||||||
return TimeWeighting.types_all[cb.currentIndex()]
|
|
||||||
|
|
||||||
|
|
||||||
class FreqWeighting:
|
class FreqWeighting:
|
||||||
|
@ -72,7 +72,8 @@ class SLM:
|
|||||||
self.xs = list(range(xmin, xmax + 1))
|
self.xs = list(range(xmin, xmax + 1))
|
||||||
|
|
||||||
nfilters = len(self.xs)
|
nfilters = len(self.xs)
|
||||||
if include_overall: nfilters +=1
|
if include_overall:
|
||||||
|
nfilters += 1
|
||||||
self.include_overall = include_overall
|
self.include_overall = include_overall
|
||||||
self.offset_t = offset_t
|
self.offset_t = offset_t
|
||||||
|
|
||||||
@ -137,7 +138,6 @@ class SLM:
|
|||||||
# Initialize counter to 0
|
# Initialize counter to 0
|
||||||
self.N = 0
|
self.N = 0
|
||||||
|
|
||||||
|
|
||||||
def run(self, data):
|
def run(self, data):
|
||||||
"""
|
"""
|
||||||
Add new fresh timedata to the Sound Level Meter
|
Add new fresh timedata to the Sound Level Meter
|
||||||
@ -169,7 +169,6 @@ class SLM:
|
|||||||
|
|
||||||
return output
|
return output
|
||||||
|
|
||||||
|
|
||||||
def return_as_dict(self, dat):
|
def return_as_dict(self, dat):
|
||||||
"""
|
"""
|
||||||
Helper function used to return resulting data in a proper way.
|
Helper function used to return resulting data in a proper way.
|
||||||
|
Loading…
Reference in New Issue
Block a user