Lowpass FilterSnapshot of the front panel of the simulator:
AimsThe aims of this simulator are:
MotivationLowpass filters are frequently needed in practical application based in some processing of measurements. This is because all practical measurements are noisy. Typically the noise is approximately a random signal. The filter is used to attenuate the noise. One very important application is in a control system. The process measurement (temperature, level, pressure, speed etc.) always contains some noise. If the noise is not attenuated it will propagate through the controller and cause abrupt (noisy) variations in the control signal, causing excessive wear of the actuator (pump, valve, motor). The filter algorithm given above is relatively simple, but still it is probably the most commonly used filter algorithm in practical application. Description of the system that is simulatedInput signals to the filterA discrete-time first order filter is simulated. The input signal to the filter consists of three additive terms:
Each of these signals can be deactivated (removed). The (total) input and the output signals are plotted in real time in a chart. Also, the amplitude gain plot (Bode plot) of the filter is plotted. The filter functionThe filter is a discretized version of a continuous-time time-constant filter given by the following s-transfer function: H(s) = Y(s)/U(s) = 1/(Tfs+1) The user can select the following filter parameters:
The filter algorithm that is implemented in the simulator is given by the following difference equation: y(tk) = (1-a)*y(tk-1) + a*u(tk) (Eq. 1) where tk is the discrete point of time at time index k. Hence, tk-1 means the previous discrete point of time. y is the filter output, and u is the filter input. In general the filter parameter a can be set directly. In this simulator Eq. 1 is developed by discretizing a continuous-time filter. The derivation is shown in detail in filter_algorithm.pdf. There it is shown that a = h/(Tf + h) (Eq. 2) For the filter given by Eq. 1 to be stable, a must be between 0 and 1. Frequency responseThe amplitude gain of the frequency response of a filter expresses how a sinusoid is attenuated through the filter. In the simulator the amplitude gain of the filter is plotted. The amplitude gain is calculated from the z-transfer function of Eq. 1. This transfer function found by taking the z-transform of Eq. 1, and it is Hf(z) = Y(z)/U(z) = az/[z-(1-a)] (Eq. 3) The amplitude gain is calculated as the absolute value of Hf(z) when z = ejwh where w is the frequency [rad/s] and h [s] is the sampling interval. j is the imaginary unit. In the simulator the Bode.vi function in LabVIEW is used to calculate and plot the amplitude gain in a Bode diagram. The relation beween the time-constant Tf and the filter bandwidth fb [Hz] for Hf(z) is rather complicated. However, if the sampling time h is relatively small (less than 1/5 of Tf) the following relation holds (approximately): fb [Hz] ~ 1/(2*pi*Tf) (Eq. 4) How random noise is propagated through the filterIt is useful to know how the filter attenuates random noise. The attenuation can be expressed as the ratio between the standard deviation of the filter output and the standard deviation of the filter input, hence "standard deviation gain", Ksigma (sigma is the greek character symbol for standard deviation). In random_noise_attenuation.pdf it is shown that Ksigma = sqrt(a/(2-a)) (Eq. 5) where a is given by Eq. 2. Tasks
Updated 2 September 2017. Developed by Finn Haugen. E-mail: finn@techteach.no. |