Asymmetric Clipped Waveform - find RMS

  • Context: Graduate 
  • Thread starter Thread starter pdelaney
  • Start date Start date
  • Tags Tags
    Rms Waveform
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
pdelaney
Messages
1
Reaction score
0
I have an asymmetrical clipped repeating waveform and I want to be able to find the root mean square.

The function is as follows, with r and b constants:

y(t) = ((exp(sin(t)*b)-exp(-sin(t)*b*r))/(exp(sin(t)*b)+exp(-sin(t)*b)))*(1/b)

This is pretty computationally heavy. What are some approaches to use to get to a simpler root mean square? Should I use a Fourier transform?
 
Physics news on Phys.org
This simplifies to y=1/b * tanh(bsin(t)). If b is small, tanh is approximately linear and you can expand the function to calculate the rms. Alternately, you can calculate the result numerically for various values of b. Note that you must have |b|<1 for convergence.