summaryrefslogtreecommitdiff
path: root/132/CH13/EX13.1/Example13_1.sce
blob: 0ce5dd5add9fc98263a621a80371393ce9e352e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 13.1
//Program to Calculate Frequency of Oscillation of 
//Tuned Collector Oscillator
clear;
clc ;
close ;
//Given Circuit Data
L=58.6*10^(-6);// H
C=300*10^(-12);// F
//Calculation
fo=1/(2*%pi*sqrt(L*C));
//Displaying The Results in Command Window
printf("\n\t The Frequency of Oscillation of Tuned Collector Oscillator is fo = %f kHz .",fo/10^3);