summaryrefslogtreecommitdiff
path: root/132/CH13/EX13.3/Example13_3.sce
blob: 9be4912e1ff55a3b4c1e7ab5c33a9d7a3b53ec4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example 13.3
//Program to Calculate Frequency of Oscillation of 
//Wein Bridge Oscillator
clear;
clc ;
close ;
//Given Circuit Data
R1=220*10^3;// Ohms
R2=220*10^3;// Ohms
C1=250*10^(-12);//F
C2=250*10^(-12);//F
//Calculation
fo=1/(2*%pi*sqrt(R1*C1*R2*C2));
//Displaying The Results in Command Window
printf("\n\t The Frequency of Oscillation of Wein Bridge Oscillator is fo = %f kHz .",fo/10^3);