All Topics  
High-pass filter

 

   Email Print
   Bookmark   Link






 

High-pass filter



 
 
A high-pass filter is a filter
Electronic filter

Electronic filters are electronic circuits which perform signal processing functions, specifically to remove unwanted frequency components from the signal and/or to enhance wanted ones....
 that passes high frequencies
Frequency

Frequency is the number of occurrences of a repeating event per unit time. It is also referred to as temporal frequency.The period is the duration of one cycle in a repeating event, so the period is the reciprocal of the frequency....
 well, but attenuates
Attenuation

In physics, attenuation is the gradual loss in intensity of any kind of flux through a medium. For instance, sunlight is attenuated by dark glasses, and X-rays are attenuated by lead....
 (reduces the amplitude of) frequencies lower than the cutoff frequency
Cutoff frequency

In physics and electrical engineering, a cutoff frequency, corner frequency, or break frequency is a boundary in a system's frequency response at which energy flowing through the system begins to be reduced rather than passing through....
. The actual amount of attenuation for each frequency varies from filter to filter. It is sometimes called a low-cut filter; the terms bass-cut filter or rumble filter are also used in audio applications. A high-pass filter is the opposite of a low-pass filter
Low-pass filter

A low-pass filter is a electronic filter that passes low-frequency signal but attenuates signals with frequencies higher than the cutoff frequency....
, and a band-pass filter
Band-pass filter

A band-pass filter is a device that passes frequency within a certain range and rejects frequencies outside that range. An example of an analog circuitue electronic band-pass electronic filter is an RLC circuit ....
 is a combination of a high-pass and a low-pass.

It is useful as a filter to block any unwanted low frequency components of a complex signal while passing the higher frequencies.






Discussion
Ask a question about 'High-pass filter'
Start a new discussion about 'High-pass filter'
Answer questions from other users
Full Discussion Forum



Encyclopedia


A high-pass filter is a filter
Electronic filter

Electronic filters are electronic circuits which perform signal processing functions, specifically to remove unwanted frequency components from the signal and/or to enhance wanted ones....
 that passes high frequencies
Frequency

Frequency is the number of occurrences of a repeating event per unit time. It is also referred to as temporal frequency.The period is the duration of one cycle in a repeating event, so the period is the reciprocal of the frequency....
 well, but attenuates
Attenuation

In physics, attenuation is the gradual loss in intensity of any kind of flux through a medium. For instance, sunlight is attenuated by dark glasses, and X-rays are attenuated by lead....
 (reduces the amplitude of) frequencies lower than the cutoff frequency
Cutoff frequency

In physics and electrical engineering, a cutoff frequency, corner frequency, or break frequency is a boundary in a system's frequency response at which energy flowing through the system begins to be reduced rather than passing through....
. The actual amount of attenuation for each frequency varies from filter to filter. It is sometimes called a low-cut filter; the terms bass-cut filter or rumble filter are also used in audio applications. A high-pass filter is the opposite of a low-pass filter
Low-pass filter

A low-pass filter is a electronic filter that passes low-frequency signal but attenuates signals with frequencies higher than the cutoff frequency....
, and a band-pass filter
Band-pass filter

A band-pass filter is a device that passes frequency within a certain range and rejects frequencies outside that range. An example of an analog circuitue electronic band-pass electronic filter is an RLC circuit ....
 is a combination of a high-pass and a low-pass.

It is useful as a filter to block any unwanted low frequency components of a complex signal while passing the higher frequencies. The meanings of 'low' and 'high' frequencies are relative to the cutoff frequency
Cutoff frequency

In physics and electrical engineering, a cutoff frequency, corner frequency, or break frequency is a boundary in a system's frequency response at which energy flowing through the system begins to be reduced rather than passing through....
 chosen by the filter designer.

Implementation


The simplest electronic high-pass filter consists of a capacitor
Capacitor

A capacitor or condenser is a Passive component electronic component consisting of a pair of electrical conductor separated by a dielectric....
 in series with the signal path in conjunction with a resistor
Resistor

|- align = "center"||width = "25"|| |- align = "center"||| Potentiometer|- align = "center"| || |- align = "top"| Resistor|| Variable resistor...
 in parallel with the signal path. The resistance times the capacitance (R×C) is the time constant
Time constant

In physics and engineering, the time constant usually denoted by the Greek language letter , , characterizes the frequency response of a first-order, LTI system theory system....
 (τ); it is inversely proportional to the cutoff frequency, at which the output power is half the input (-3 dB
Decibel

The decibel is a logarithmic units of measurement that expresses the magnitude of a physical quantity relative to a specified or implied reference level....
):

Where f is in hertz
Hertz

The hertz is a measure of frequency per unit of time, or the number of list of cycles per second. It is the SI base unit of frequency in the International System of Units , and is used worldwide in both general-purpose and scientific contexts....
, τ is in second
Second

The second , sometimes abbreviated sec., is the name of a units of measurement of time, and is the International System of Units SI base unit of time....
s, R is in ohms, and C is in farad
Farad

The farad is the SI unit of capacitance. The farad is named after the British physicist Michael Faraday....
s.

Discrete-time realization


The effect of a high-pass filter can be simulated on a computer by analyzing its behavior in the time domain, and then discretizing
Discrete signal

A discrete signal or discrete-time signal is a time series, perhaps a signal that has been sampling from a continuous signal.Unlike a continuous-time signal, a discrete-time signal is not a function of a continuous-time argument, but is a sequence of quantities; that is, a function over a Domain of discrete integers....
 the model.

From the circuit diagram above, according to Kirchoff's Laws and the definition of capacitance
Capacitance

In electromagnetism and electronics, capacitance is the ability of a body to hold an electrical charge.Capacitance is also a measure of the amount of electric charge stored for a given electric potential....
:

where is the charge stored in the capacitor at time . Substituting Equation (Q) into Equation (I) and then Equation (I) into Equation (V) gives:

This equation can be discretized. For simplicity, assume that samples of the input and output are taken at evenly-spaced points in time separated by time. Let the samples of be represented by the sequence , and let be represented by the sequence which correspond to the same points in time. Making these substitutions:

And rearranging terms gives the recurrence relation
Recurrence relation

In mathematics, a recurrence relation is an equation that defines a sequence recursion: each term of the sequence is defined as a Function of the preceding terms....


That is, this discrete-time implementation of a simple RC high-pass filter is

By definition, . The expression for parameter yields the equivalent time constant
Time constant

In physics and engineering, the time constant usually denoted by the Greek language letter , , characterizes the frequency response of a first-order, LTI system theory system....
  in terms of the sampling period and :

If , then the time constant equal to the sampling period. If , then is significantly smaller than the sampling interval, and .

Algorithmic implementation


The filter recurrence relation provides a way to determine the output samples in terms of the input samples and the preceding output. The following pseudocode
Pseudocode

Pseudocode is a compact and informal high-level description of a computer programming algorithm that uses the structural conventions of some programming language, but is intended for human reading rather than machine reading....
 algorithm will simulate the effect of a high-pass filter on a series of digital samples:

// Return RC high-pass filter output samples, given input samples, // time interval dt, and time constant RC function highpass(real[0..n] x, real dt, real RC) var real[0..n] y var real α := RC / (RC + dt) y[0] := x[0] for i from 1 to n y[i] := α * y[i-1] + α * (x[i] - x[i-1]) return y

The loop which calculates each of the outputs can be refactored into the equivalent:

for i from 1 to n y[i] := α * (y[i-1] + x[i] - x[i-1])

However, the earlier form shows how the parameter α changes the impact of the prior output y[i-1] and current change in input (x[i] - x[i-1]). In particular,
  • A large α implies that the output will decay very slowly but will also be strongly influenced by even small changes in input. By the relationship between parameter α and time constant
    Time constant

    In physics and engineering, the time constant usually denoted by the Greek language letter , , characterizes the frequency response of a first-order, LTI system theory system....
      above, a large α corresponds to a large and therefore a low corner frequency of the filter. Hence, this case corresponds to a high-pass filter with a very narrow stop band. Because it is excited by small changes and tends to hold its prior output values for a long time, it can pass relatively low frequencies. However, a constant input (i.e., an input with (x[i] - x[i-1])=0) will always decay to zero, as would be expected with a high-pass filter with a large .
  • A small α implies that the output will decay quickly and will require large changes in the input (i.e., (x[i] - x[i-1]) is large) to cause the output to change much. By the relationship between parameter α and time constant above, a small α corresponds to a small and therefore a high corner frequency of the filter. Hence, this case corresponds to a high-pass filter with a very wide stop band. Because it requires large (i.e., fast) changes and tends to quickly forget its prior output values, it can only pass relatively high frequencies, as would be expected with a high-pass filter with a small .


Applications


Such a filter could be used as part of an audio crossover
Audio crossover

Audio crossovers are a class of electronic filters designed specifically for use in audio applications, especially hi-fi. Commonly used loudspeaker speaker driver are incapable of covering the entire audio spectrum with acceptable loudness and lack of distortion by themselves....
 to direct high frequencies to a tweeter
Tweeter

A tweeter is a loudspeaker designed to produce high frequencies, typically from around 2,000 hertz to 20,000 hertz . A few tweeters can manage response up to an octave or more higher ....
 while blocking bass signals which could interfere with, or damage, the speaker. When such a filter is built into a loudspeaker
Loudspeaker

A loudspeaker, speaker, or speaker system is an electroacoustical transducer that converts an electricity signal processing to sound....
 cabinet it is normally a passive filter that also includes a low-pass filter
Low-pass filter

A low-pass filter is a electronic filter that passes low-frequency signal but attenuates signals with frequencies higher than the cutoff frequency....
 for the woofer
Woofer

Woofer is the term commonly used for a loudspeaker speaker driver designed to produce low frequency sounds, typically from around 40 hertz up to about a kilohertz or higher....
 and so often employs both a capacitor and inductor (although very simple high-pass filters for tweeters can consist of a series capacitor and nothing else). An alternative, which provides good quality sound without inductors (which are prone to parasitic coupling, are expensive, and may have significant internal resistance) is to employ bi-amplification with active RC filters
Active filter

An active filter is a type of analog electronic filter, distinguished by the use of one or more active components i.e. voltage amplifiers or buffer amplifiers....
 with separate power amplifiers for each loudspeaker
Loudspeaker

A loudspeaker, speaker, or speaker system is an electroacoustical transducer that converts an electricity signal processing to sound....
 making an active crossover.

Rumble filters are high-pass filters applied to the removal of unwanted sounds below or near to the lower end of the audible range. For example, noises (e.g., footsteps or motor noises from record players and tape decks) may be removed because they are undesired or may overload the RIAA equalization
RIAA equalization

RIAA equalization is a specification for the correct playback of gramophone records, established by the Recording Industry Association of America ....
 circuit of the preamp.

High-pass and low-pass filters are also used in digital image processing
Image processing

In electrical engineering and computer science, image processing is any form of signal processing for which the input is an , such as photographs or video frame; the output of image processing can be either an image or a set of characteristics or parameters related to the image....
 to perform transformations in the spatial frequency domain
Frequency domain

In electronics and control systems engineering, frequency domain is a term used to describe the analysis of mathematical functions or Signal with respect to frequency, rather than time....
.

High-pass filters are also used for AC coupling at the input and output of amplifiers.

See also

  • DSL filter
    DSL filter

    A DSL filter is an analog circuit low-pass filter installed between analog devices and a Plain old telephone service telephone line, in order to prevent interference between such devices and a Digital Subscriber Line service operating on the same line....
  • Band-stop filter
    Band-stop filter

    In signal processing, a band-stop filter or band-rejection filter is a electronic filter that passes most frequency unaltered, but attenuates those in a specific range to very low levels....
  • Bias tee
    Bias tee

    A bias tee is a kind of multiplexer which has 3 ports arranged in the shape of a T and where frequencies from 1 MHz to 10 GHz pass horizontally through the T and lower frequencies take a 90? turn....
  • Low-pass filter
    Low-pass filter

    A low-pass filter is a electronic filter that passes low-frequency signal but attenuates signals with frequencies higher than the cutoff frequency....


External links

  • — Short primer on the mathematical analysis of (electrical) LTI systems.
  • — Gives an intuitive explanation of the source of phase shift in a high-pass filter. Also verifies simple passive LPF transfer function
    Transfer function

    A transfer function is a mathematical representation, in terms of spatial or temporal frequency, of the relation between the input and output of a system analysis....
     by means of trigonometric identity.