Clear Filters
Clear Filters

Retrieving RMS of a signal with variable sample rate

16 views (last 30 days)
Greg
Greg on 19 Jul 2024 at 13:51
Answered: Greg ongeveer 16 uur ago
Hello community,
I'm using PLECS, with a variable solver, and would like to postprocess its data within matlab. Trying to extract the RMS value of signals has been a struggle, as the sampling rate increases a lot when there are transient phenomena. Therefore, using rms(values) gives me an extremely higher rms value than the expected, as I am working with pulsed values. Also changing to a discrete solver to have equal sampling rate, is not wanted because it's much slower.
I've been looking at a method to attach the timestamps in my signals somehow, to work around this problem. Yet, I'm not having any luck. Does anyone know of an available function or code snipper to figure this out, please?
Thank you for any help.
  1 Comment
Mathieu NOE
Mathieu NOE on 19 Jul 2024 at 15:46
if we had the timestamps we could resample the data with fixed sampling rate and do the rms computation
I assume that if PLECS is able to plot the results, those timestamps should be available somewhere...

Sign in to comment.

Answers (2)

dpb
dpb on 19 Jul 2024 at 14:54
Straightforward, deadahead solution would be something like
y=resample(y,tx,fs);
y_rms=rms(y);
where y is your beginning signal y resampled at the time points tx using a polyphase antialiasing filter at the uniform sample rate specified in fs. tx --> [0 : 1/fs : T]. <resample> is in the Signal Processing TB.
Lacking it, use a timetable and retime; multilple choices of interpolation method.
This has the possibility of creating memory issues if the minimum dt of your solution vector is extremely small; you might be forced to more clever soutions weighting sections of the overall signal by the length in time.

Greg
Greg ongeveer 15 uur ago
Thank you all for the suggestions. I've found the answer in the PLECS manual, although the given answers likely work, with bigger computational need.
For anyone who might have the same issue in the future, you can return PLECS scope measurements in matlab using the commands:
plecs('scope', 'scopePath', 'GetCursorData', [t1 t2], ...
'analysis1', 'analysis2', ...)

Products


Release

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!