Menu English Ukrainian russian Home

Free technical library for hobbyists and professionals Free technical library


ENCYCLOPEDIA OF RADIO ELECTRONICS AND ELECTRICAL ENGINEERING
Free library / Schemes of radio-electronic and electrical devices

High-quality notch filter on transistors. Encyclopedia of radio electronics and electrical engineering

Free technical library

Encyclopedia of radio electronics and electrical engineering / Computers

Comments on the article Comments on the article

The article discusses a simple high-quality narrow-band notch filter on transistors, which works perfectly in the frequency band up to 1 MHz and quite satisfactorily up to 10 MHz. Simple calculation formulas are derived for filter synthesis using the rejection frequency and bandwidth as initial values. Mathematical CAD Maple with the MathSpice extension package [2] and electronic CAD OrCAD [3] were used for calculations.

Analytical tasks are difficult to solve manually. The use of MSpice is a good helper here, sharply shifting the boundary of the complexity of the tasks being solved. It makes available to radio amateurs those tasks that were previously considered academic. The Maple extension package called MathSpice (MSpice) [2] is intended for the analytical solution of electronic circuits and functional diagrams, but can be used as a tool for creating Spice models of signals and electronic devices for various simulators. You can learn more about MSpice by reading "MathSpice - an analytical engine for OrCAD and MicroCAP", MODERN ELECTRONICS Magazine, STA-PRESS, No. 5, No. 6, No. 7, No. 9, No. 10, No. 11, No. 12 2009.

 In some devices in which we are used to seeing op-amps, it is quite possible to get by with transistors. The benefits of using an op-amp to amplify DC signals are undeniable. But on alternating current, the advantages of an op-amp are not as serious as those of a single transistor. An op amp with a unity gain frequency of more than 10 MHz is expensive, while a transistor with a unity gain frequency of up to (100 ... 1000) MHz costs a penny.

Analytical calculations of transistor devices are somewhat more complicated due to the more complex equivalent circuit of an idealized transistor compared to an idealized op-amp. However, at present, this problem is facilitated by the availability of computer calculations [1], [2].

Obviously, the transistor has a much smaller number of zeros and poles, and an extremely large gain per band product. Modern transistors have a large DC gain h21= 300..1000. In many cases this is sufficient.

Resistor-capacitor double T-shaped bridge filters are used as narrow-band notch filters (Fig. 1). Their main advantage lies in the possibility of deep suppression of individual frequency components.

In the frequency domain, well below the unity gain frequency, most parasitic parameters of transistors can be neglected. Therefore, the simplest transistor equivalent circuit shown in Fig. 2 was used for calculations. 1. It is based on a voltage controlled current source (IXNUMX). It is convenient to use it in the calculation of circuits by the method of nodal potentials.

High-Q notch filter on transistors
Rice. 1. Scheme of a narrow-band notch filter at a frequency of 6,5 MHz

Compose the Kirchhoff equations for the filter circuit and solve it.

restart: with(MSpice): Devices:=[Same,[BJT,DC1,2]]:

ESolve(Q,`BJT-PSpiceFiles/SCHEMATIC1/SCHEMATIC1.net`):

High-Q notch filter on transistors

`DC1 model BJT transistor`

`Kirchhoff-Laplace system`

-V6/R7+(V4-V6)/`Rэб`-(V6-VOUT)/R6 = 0

(V4-V1)/R3+(V2-V1)*s*C2-(V1-`Vвх`)*s*C1 = 0

(`Vвх`-V3)/R1-(V3-V2)/R2-(V3-V4)*s*C3 = 0

(VOUT-V5)/`Rэб`-(V5-VB1)/R5-(V5-V2)*s*C4 = 0

(V5-V2)*s*C4+(V3-V2)/R2-(V2-V1)*s*C2 = 0

(V6-VOUT)/R6+(V5-VOUT)*beta/`Rэб`-(VOUT-V5)/`Rэб` = 0

-V4/R4+(V3-V4)*s*C3-(V4-V1)/R3+(V6-V4)*beta/`Rэб`-(V4-V6)/`Rэб` = 0

Solutions

{V2, V5, V6, V1, V3, VOUT, V4}

>MSpice v8.43: pspicelib.narod.ru

>Nodes given: {VINP, V12V} Sources: [Vin, VB1, Je]

>V_NET solutions: [V2, V5, V6, V1, V3, VOUT, V4]

>J_NET: [Je, JVin, JReb, JVB1, JR5, JC4, JR4, JR1, JC1, JR6, JR2, JR7, JR3, JC2, JC3, JFt, JJe, Jk, JT]

Find the transfer function of the filter. To simplify the formulas, we take into account that the following relations must hold for a filter with a Wien bridge:

C1:=C: C2:=C: C3:=2*C: R1:=R: R2:=R: R3:=R/2:

VB1:=0: # for linear PCB models

H:=simplify(VOUT/Vin);


(click to enlarge)

It's hard to work with this formula! Then suppose that beta= oo, C4=oo, R5=oo . Of course, it is somewhat rough to assume that the transistor has infinite gain, but for an emitter follower circuit it is quite appropriate. This allows you to get simple formulas for preliminary calculation. The exact formulas can be obtained using Maple, but they will be very difficult to evaluate the filter parameters (the formulas will take several pages). When setting up, the circuit parameters (quality factor) can be easily adjusted by selecting the resistor R6. After passing to the limit, we obtain a simpler expression for the operator transfer coefficient (1), which is more suitable for analysis.

beta:=x: C4:=x: R5:=x:

H:=collect(limit(H,x=infinity),s): 'H'=%, ` (1)`;

H = ((C^2*R^2*R6+C^2*R^2*R7)*s^2+R6+R7)/((C^2*R^2*R6+C^2*R^2*R7)*s^2+4*s*C*R*R6+R6+R7), ` (1)`

Now find the frequency domain gain, K=K(f), by substituting s=I*2*Pi*f .

Here I is the imaginary unit, f is the frequency [Hz].

K:=simplify(subs(s=I*2*Pi*f,H)): 'K(f)'=%, ` (2)`;

K(f) = (4*Pi^2*f^2*C^2*R^2*R6+4*Pi^2*f^2*C^2*R^2*R7-R6-R7)/(4*Pi^2*f^2*C^2*R^2*R6+4*Pi^2*f^2*C^2*R^2*R7-8*I*Pi*f*C*R*R6-R6-R7), ` (2)`

Let us find the rejection frequency (3).

Fp=I*solve(diff(K,f)=0,f)[2]: print(%,` (3)`);

Fp = 1/(2*Pi*C*R), ` (3)`

It is convenient to adjust the notch frequency by choosing the resistor R=R1=R2=2*R3.

R:=solve(%,R): print('R'=R,` (4)`);

R = 1/(2*Fp*Pi*C), ` (4)`

3 dB level notch

F_3dB:=solve(evalc(abs(K))=subs(f=0,K)/sqrt(2),f):

P:=simplify(F_3dB[4]-F_3dB[2]):

print('P'=P,` (5)`);

`P` = -4*R6*Fp/(R6+R7), ` (5)`

The quality factor is defined as Q=Fp/P, hence

Q:=Fp/P: 'Q'=Q,` (6)`;

Q = -1/4/R6*(R6+R7), ` (6)`

Let's express the transfer function in terms of the characteristic parameters of the filter by substituting R7=4*Qp*R6-R6, C=1/(2*Pi*R*Fp).

It turns out a very convenient formula (7), which makes it possible to obtain the required Laplace rejector transfer function, without knowing anything about the filter device. Here Hp(s) is the notch operator transfer function, Fp is the rejection frequency, Qp is the quality factor of the notch.

Hp:=simplify(subs(R7=4*Qp*R6-R6,C=1/(2*Pi*R*Fp),H)): 'Hp(s)'=Hp;

Hp(s) = Qp*(s^2+4*Fp^2*Pi^2)/(Qp*s^2+2*s*Fp*Pi+4*Qp*Fp^2*Pi^2)

Now let's find the modulus of the rejector function in the frequency domain (8).

abs(Kp(f)) = simplify(expand(AVM(Hp,f)),'symbolic'), ` (8)`:

abs(Kp(f)) = Qp*(f^2-Fp^2)/collect(Qp^2*f^4-2*Qp^2*f^2*Fp^2+Qp^2*Fp^4+Fp^2*f^2,f)^(1/2), ` (8)`:

abs(Kp(f)) = Qp*(f^2-Fp^2)/(Qp^2*f^4+collect(-2*Qp^2*Fp^2+Fp^2,Fp)*f^2+Qp^2*Fp^4)^(1/2), ` (8)`;

Kp:=Qp*(f^2-Fp^2)/collect(Qp^2*f^4-2*Qp^2*f^2*Fp^2+Qp^2*Fp^4+Fp^2*f^2,f)^(1/2):

abs(Kp(f)) = Qp*(f^2-Fp^2)/(Qp^2*f^4+(-2*Qp^2+1)*Fp^2*f^2+Qp^2*Fp^4)^(1/2), ` (8)`

 We have obtained a very convenient formula (8) for the synthesis of the rejector transfer function through the characteristic parameters of the filter. Ue can be used for digital prototypes, when programming filters on microcontrollers.

Example calculation

Suppose we need a filter that provides a rejection of the spectrum of the audio signal of television broadcasting with a center frequency Fp=6,5 MHz in the band P=1 MHz. We choose C=51 pF and, successively using formulas (4) and (6), we calculate the remaining components.

Fp:=6.5e6: R:=1e6: C := 51e-12;

C:= .51e-10

Digits:=5: Q:='Fp/P'=Fp/P; Q:=Fp/P:

Q := Fp/`P` = 6.5000

R:='1/(2*Pi*Fp*C)'=evalf(1/(2*Pi*Fp*C)); R:=rhs(%):

R := 1/(2*Fp*Pi*C) = 480.14

It is known that the amplifying properties of a transistor depend on the emitter current.

In the emitter follower circuit, the value of the emitter resistor of 1 kΩ will provide an operating current of the transistor of 6 mA at a supply voltage of 12V, which is sufficient to maintain high gain of the transistor at high frequencies.

Let's choose R6+R7=1 kΩ, then R6=(R6+R7)/4/Q=1K/4/Q, and R7=1K-R6.

R6:=1000.0/Q/4: print('R6'=R6); R7:=1000-R6: print('R7'=R7);

R6 = 38.462

R7 = 961.54

Let's plot the frequency response of the frequency gain module of our notch filter.

To do this, we use expression (8) for the transfer function module, substituting the calculated values ​​of the component ratings into it. The same values, rounded to the nearest integer, are indicated on the filter diagram (Fig. 1).

Values(AC,PRN,[]);Digits:=5:

Qp:= '1/4/R6*(R6+R7)'=evalf(1/4/R6*(R6+R7)); Qp:=rhs(%):

П:='4*R6*Fp/(R7+R6)'=evalf(4*R6*Fp/(R7+R6))*Unit([Hz]); П:=evalf(4*R6*Fp/(R7+R6)):

Fp:= '1/(2*Pi*C*R)'=evalf(1/(2*Pi*C*R))*Unit([Hz]); Fp:=evalf(1/(2*Pi*C*R)):

K:=simplify(expand(AVM(H,f))): print('abs(Kp(f))'=Kp); Digits:=10:

HSF([H],f=1e6..10e6,"3) semi[abs(Kp(f))]$500 notch filter |Kp(f)| ");

Qp := 1/4/R6*(R6+R7) = 6.5789

`P` := 4*R6*Fp/(R6+R7) = .98800e6*Unit([Hz])

Fp := 1/(2*Pi*C*R) = .64996e7*Unit([Hz])

abs(Kp(f)) = 6.5789*(f^2-.42245e14)/(43.282*f^4-.36146e16*f^2+.77241e29)^(1/2)

High-Q notch filter on transistors
(click to enlarge)

Download: BJT Filter 6.5MHz

Literature

  1. Petrakov O. M. . Analytical calculations in electronics. Magazine SCHEMOTEHNIKA №7, 2006
  2. Petrakov O. M. A series of articles "MathSpice - an analytical engine for OrCAD and MicroCAP", MODERN ELECTRONICS Journal, STA-PRESS, No. 5, No. 6, No. 7, No. 9, No. 10 2009. .
  3. Razevig VD Design system OrCAD 9.2. SOLON. Moscow 2001
  4. Efimov I. P. Design of electronic filters: Guidelines for course design for students studying in the direction 5515.
  5. Moshits G., Horn P. Design of active filters: Per. from English. Mir, 1984.- 320 p., ill.
  6. Volovich G. I. Analog and digital devices. 2005
  7. pspicelib.narod.ru Electronic CAD.
  8. pspice.narod.ru Automation of analytical calculations.

Author: Oleg Petrakov, pspicelib@narod.ru; Publication: cxem.net

See other articles Section Computers.

Read and write useful comments on this article.

<< Back

Latest news of science and technology, new electronics:

Artificial leather for touch emulation 15.04.2024

In a modern technology world where distance is becoming increasingly commonplace, maintaining connection and a sense of closeness is important. Recent developments in artificial skin by German scientists from Saarland University represent a new era in virtual interactions. German researchers from Saarland University have developed ultra-thin films that can transmit the sensation of touch over a distance. This cutting-edge technology provides new opportunities for virtual communication, especially for those who find themselves far from their loved ones. The ultra-thin films developed by the researchers, just 50 micrometers thick, can be integrated into textiles and worn like a second skin. These films act as sensors that recognize tactile signals from mom or dad, and as actuators that transmit these movements to the baby. Parents' touch to the fabric activates sensors that react to pressure and deform the ultra-thin film. This ... >>

Petgugu Global cat litter 15.04.2024

Taking care of pets can often be a challenge, especially when it comes to keeping your home clean. A new interesting solution from the Petgugu Global startup has been presented, which will make life easier for cat owners and help them keep their home perfectly clean and tidy. Startup Petgugu Global has unveiled a unique cat toilet that can automatically flush feces, keeping your home clean and fresh. This innovative device is equipped with various smart sensors that monitor your pet's toilet activity and activate to automatically clean after use. The device connects to the sewer system and ensures efficient waste removal without the need for intervention from the owner. Additionally, the toilet has a large flushable storage capacity, making it ideal for multi-cat households. The Petgugu cat litter bowl is designed for use with water-soluble litters and offers a range of additional ... >>

The attractiveness of caring men 14.04.2024

The stereotype that women prefer "bad boys" has long been widespread. However, recent research conducted by British scientists from Monash University offers a new perspective on this issue. They looked at how women responded to men's emotional responsibility and willingness to help others. The study's findings could change our understanding of what makes men attractive to women. A study conducted by scientists from Monash University leads to new findings about men's attractiveness to women. In the experiment, women were shown photographs of men with brief stories about their behavior in various situations, including their reaction to an encounter with a homeless person. Some of the men ignored the homeless man, while others helped him, such as buying him food. A study found that men who showed empathy and kindness were more attractive to women compared to men who showed empathy and kindness. ... >>

Random news from the Archive

ESP32-SOLO-1 WiFi module for low-end IoT devices 23.07.2019

The ESP32-SOLO-1 is Espressif's new high performance all-in-one module designed for a wide range of applications from low power wireless sensor networks to applications requiring voice processing or MP3 streaming audio encoding. The Wi-Fi+BT+BLE module is based on the ESP32-S0WD chip with one computing core.

Integration of Bluetooth, Bluetooth LE and Wi-Fi standards in a single chip guarantees the applicability of this module in any 2,4 GHz applications - both for direct data transfer to the user's device via Bluetooth, and for connection from anywhere in the world via a WiFi router. Support for BLE allows you to create inexpensive beacons (Beacon) based on the ESP32-SOLO-1 for positioning inside buildings or sending short information messages about goods.

Low current consumption - less than 5 μA - makes it possible to create stand-alone devices that can operate on batteries for years. The ESP32 supports speeds up to 150 Mbps and the 20 dBm output power guarantees good range.

ESP32-SOLO-1 uses freeRTOS operating system with LwIP and TLS 1.2 stack with hardware accelerator. Provides secure (encrypted) software download over the air (OTA).

Features of ESP32-SOLO-1:

Chip: ESP32-S0WD 5x5mm QFN
Integrated memory: 4 MB SPI FLASH
Frequency range: 2,4...2,5 GHz
WiFi support: 802.11 b/g/n (up to 150 Mbps)
Bluetooth support: v4.2 BR/EDR and BLE
Sensitivity: up to -97 dBm
Output power: 20 dBm (max, 11b mode)
Interfaces: UART, SPI, I2C, PWM, I2S, GPIO, ADC, DAC, etc.
Quartz resonator: 40MHz (10ppm)
Operating voltage: 2,7...3,6 V
Size: 18 x 25 x 3 mm; 38 pins (LCC)
Antenna: PCB with 2 dBi gain
Temperature range: -40...85°C.

Other interesting news:

▪ World's oldest cheese discovered

▪ Light in rolls

▪ Electric flying taxi tested

▪ Wireless power transfer technology between consumer devices

▪ Why there is no point in arguing about tastes

News feed of science and technology, new electronics

 

Interesting materials of the Free Technical Library:

▪ section of the site Note to the student. Article selection

▪ article by Adlai Ewing Stevenson II. Famous aphorisms

▪ article What color is a panther? Detailed answer

▪ article by Benincasa. Legends, cultivation, methods of application

▪ article Method of manufacturing chokes for TX. Encyclopedia of radio electronics and electrical engineering

▪ article Stabilized speed controller for power tools. Encyclopedia of radio electronics and electrical engineering

Leave your comment on this article:

Name:


Email (optional):


A comment:





All languages ​​of this page

Home page | Library | Articles | Website map | Site Reviews

www.diagram.com.ua

www.diagram.com.ua
2000-2024