-
-
Save xmalinov/b0d299aa54e801ecfe786d5e21dcb957 to your computer and use it in GitHub Desktop.
DSP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const settings = { | |
filters: { | |
timeSeries: [ | |
{ | |
title: 'Масштаб', | |
values: ['Авто', '50 мкВ', '100 мкВ', '200 мкВ', '400 мкВ', '1000 мкВ', '10000 мкВ'] | |
}, | |
{ | |
title: 'Шаг', | |
values: ['1 сек', '3 сек', '5 сек', '7 сек'] | |
} | |
], | |
fftPlot: [ | |
{ | |
title: 'Макс. частота', | |
values: ['20 Гц', '40 Гц', '60 Гц', '80 Гц', '100 Гц', '120 Гц'] | |
}, | |
{ | |
title: 'Макс. мкВ', | |
values: ['10 мкВ', '50 мкВ', '100 мкВ', '1000 мкВ'] | |
}, | |
{ | |
title: 'Log / Lin', | |
values: ['Log', 'Lin'] | |
}, | |
{ | |
title: 'Cглаживание', | |
values: ['0.0', '0.5', '0.75', '0.9', '0.95', '0.98'] | |
}, | |
{ | |
title: 'Фильтры', | |
values: ['Фильтр', 'Без фильтра'] | |
} | |
], | |
headPlot: [ | |
{ | |
title: 'Интенсивность', | |
values: ['0,02x', '0,2x', '0,5x', '1x', '2x', '4x'] | |
}, | |
{ | |
title: 'Полярность', | |
values: ['+/-', '+'] | |
}, | |
{ | |
title: 'Контуры', | |
values: ['ON', 'OFF'] | |
}, | |
{ | |
title: 'Cглаживание', | |
values: ['0,0', '0,5', '0,75', '0,9', '0,98'] | |
} | |
], | |
emg: [ | |
{ | |
title: 'Cглаживание', | |
values: ['0,01 сек', '0,1 сек', '0,5 сек', '0,75 сек', '1,0 сек', '2,0 сек'] | |
}, | |
{ | |
title: 'Лимит мкВ', | |
values: ['50 мкВ', '100 мкВ', '200 мкВ', '400 мкВ'] | |
}, | |
{ | |
title: 'Динамика', | |
values: ['0,9', '0,95', '0,98', '0,99', '0,999'] | |
}, | |
{ | |
title: 'Мин. ΔмкВ', | |
values: ['10 мкВ', '20 мкВ', '40 мкВ', '80 мкВ'] | |
} | |
] | |
} | |
} | |
export default settings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment