Skip to main content

Frequency of Oscillation of RC Phase Shift Oscillator

Derivation of Frequency of Oscillation

We have to find out the transfer function of RC feedback network.
Feedback Circuit of RC Phase Shift Oscillator

Applying KVL to various loops on the figure, we get, $$I_1 \left(R+\frac{1}{j \omega C }\right) -I_2R=V_i \text{ ....(1)}$$ $$-I_1R+I_2\left (2R+\frac {1}{j\omega C}\right)-I_3R=0\text{ ... (2)}$$ $$0-I_2R+I_3\left(2R+ \frac{1}{j\omega C}\right)=0\text{ ...(3)}$$
Replacing \(j\omega\) with \(s\) and writing equations in the matrix form, $$\begin{bmatrix}R+\frac{1}{sC} & -R & 0 \\-R & 2R+\frac{1}{sC} & -R \\0 & -R & 2R+\frac{1}{2sC} \end{bmatrix}\begin{bmatrix}I_1\\I_2\\I_3\end{bmatrix}=\begin{bmatrix}V_i\\0\\0\end{bmatrix}$$
Using Cramer's rule to find out \(I_3\),
$$\text{Let, }D=\begin{bmatrix}R+\frac{1}{sC} & -R & 0 \\-R & 2R+\frac{1}{sC} & -R \\0 & -R & 2R+\frac{1}{2sC} \end{bmatrix}$$ \(|D|=\begin{vmatrix}R+\frac{1}{sC} & -R & 0 \\-R & 2R+\frac{1}{sC} & -R \\0 & -R & 2R+\frac{1}{2sC} \end{vmatrix}\\ \begin{align} \text{ } &=\frac{1+sRC}{sC}\left[\frac{(1+2sRC)^2}{s^2C^2}-R^2\right]+R\left[-R\left(\frac{1+2sRC}{sC}\right) \right]+0\\ \\ & =\frac{1+sRC(1+2sRC)^2}{s^3C^3}-\frac{R^2(1+sRC)}{sC}-\frac{R^2(1+2sRC)}{C}\\ \\ & = \frac{(1+sRC)(1+4sRC+4s^2C^2R^2)-R^2s^2C^2[1+2sRC+1+sRC]}{s^3C^3}\\ \\ &= \frac{1+5sRC+8s^2C^2R^2+4s^3C^3R^3-3s^3R^3C^3-2s^2R^2C^2}{s^3C^3}\\ \\ &=\frac{1+5sRC+6s^2C^2R^2+s^3C^3R^3}{s^3C^3} \end{align}\) By replacing third column of matrix D with output we get(the vertical line is used for more convenience), $$D_3=\left [ \begin{array}{cc|c}R+\frac{1}{sC} & -R & V_i \\-R & 2R+\frac{1}{sC} & 0 \\ 0 & -R & 0 \end{array} \right] \\ $$ $$|D_3|=\begin{vmatrix}R+\frac{1}{sC} & -R & V_i \\-R & 2R+\frac{1}{sC} & 0 \\ 0 & -R & 0 \end{vmatrix}=V_iR^2$$ $$I_3=\frac{|D_3|}{|D|}=\frac{V_iR^2s^3C^3}{1+5sRC+6s^2C^2R^2+s^3C^3R^3}$$ Now $$V_O=V_f=I_3R=\frac{V_iR^3s^3C^3}{1+5sRC+6s^2C^2R^2+s^3C^3R^3}$$ Since feedback factor$$\beta=\frac{V_O}{V_i} \\ \beta =\frac{R^3s^3C^3}{1+5sRC+6s^2C^2R^2+s^3C^3R^3}$$ Replacing s by \(j\omega\), s2 by \(-\omega^2\) and s3 by \(j\omega^3\), $$\beta =\frac{-j \omega^3 R^3C^3}{1+5j\omega CR-6\omega^2R^2C^2-j\omega^3R^3C^3}$$ Deviding denominator and numerator by \(j\omega^3R^3C^3\) and using, $$\color{red} {\alpha =\frac{1}{\omega RC}}$$ Then, $$\beta= \frac{1}{1+6j\alpha -5\alpha^2-j\alpha^3}$$ $$\beta= \frac{1}{(1-5\alpha^2)+j\alpha(6-\alpha^2)}$$ To have phase shift of \(180^\circ\), the imaginary part of denominator must be zero. $$\alpha(6-\alpha^2)=0$$ $$\alpha^2=6$$ $$\alpha=\sqrt 6$$ That is, $$\frac{1}{\omega RC}=\sqrt 6$$ $$\omega =\frac{1}{RC\sqrt 6}$$ $$f= \frac{1}{2\pi RC\sqrt 6}$$ This is the frequency with which circuit oscillates.
At this frequency,$$\beta= \frac{1}{1-5(\sqrt 6)^2}=-\frac{1}{29}$$ Negative sign indicates that phase shift of \(180^\circ \). Thus, $$\color{red}{|\beta |=\frac{1}{29}}$$ Now to have oscillations, \(|A\beta | \geq 29 \). $$|A||\beta| \geq 1$$ $$|A|\geq \frac{1}{|\beta |}\geq \frac{1}{\left( \frac{1}{29} \right)}$$ $$\color{red}{|A| \geq 29}$$ Thus we can conclude that gain of amplifier should be at least 29 for getting oscillations from a RC Phase shift oscillator.

Comments

Popular posts from this blog

8051 Simple Programs

Sum of 8-bit Numbers Stored in Memory Here  we will discuss about 8051 programs but we can't discuss about all of the 8051 instructions. For programming 8051 we should know about assembler directives as well as instruction set. Click  here to download Atmel c51 user guide that will discuss about 8051(c51 family microcontroller) instruction set, assembler directives, c51 cross assembler from Atmel.  Program ORG 00H MOV R0,#50H   ; get memory location in memory pointer R0 MOV R1,#51H   ; get memory location on memory pointer register R1 MOV A,@R0       ; get content of memory location 50H to accumulator ADD A,@R1        ; add content of A with content of memory location 51H and store result in A MOV R0,#52H    ; get 52H to memory pointer R0 MOV@R0,A         ; copy content of A to memory location 52H END Add 16-bit Numbers ...

ATMEGA-32 Pin-out Diagram

Overview The Atmel®AVR®ATmega32 is a low-power CMOS 8-bit microcontroller based on the AVR enhanced RISC architecture. By executing powerful instructions in a single clock cycle, the ATmega32 achieves throughputs approaching 1 MIPS per MHz allowing the system designer to optimize power consumption versus processing speed. AVR spin-out diagrams Block diagram:- The Atmel®AVR®AVR core combines a rich instruction set with 32 general purpose working registers. All the 32 registers are directly connected to the Arithmetic Logic Unit (ALU), allowing two independent registers to be accessed in one single instruction executed in one clock cycle. The resulting architecture is more code efficient while achieving throughputs up to ten times faster than conventional CISC microcontrollers. The ATmega32 provides the following features: 32Kbytes of In-System Programmable Flash Program memory with Read-While-Write capabilities, 1024bytes EEPROM, 2Kbyte SRAM, 32 general purpose I/O ...

Even and Odd Memory Banks

The 8086 microprocessor uses a 20-bit address to access memory. With 20-bit address the processor can generate 2 20 = 1 Mega address. The basic memory word size of the memories used in the 8086 system is 8-bit or 1-byte (i.e., in one memory location an 8-bit binary information can be stored). Hence, the physical memory space of the 8086 is 1Mb (1 Mega-byte). For the programmer, the 8086 memory address space is a sequence of one mega-byte in which one location stores an 8-bit binary code/data and two consecutive locations store 16-bit binary code/data. But physically (i.e., in the hardware), the 1Mb memory space is divided into two banks of 512kb (512kb + 512kb = 1Mb). The two memory banks are called Even (or Lower) bank and Odd (or Upper) bank. The organization of even and odd memory banks in the 8086-based system is shown in Figure. The 8086-based system will have two sets of memory IC's. One set for even bank and another set for odd bank. The data lines D 0 -D 7 are conne...