summaryrefslogtreecommitdiff
path: root/1319/CH1/EX1.20/1_20.sce
blob: 5dbd3d47db9fc0bfb72709781a221ffe08de3005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Determine the frequency of resonance and Max value of Rc at resonance

clc;
clear;

Rl=6;
L=1*(10^-3);
Rc=4;
C=20*(10^-6);

w0=(1/(sqrt(L*C)))*(sqrt(((Rl^2)-(L/C))/((Rc^2)-(L/C))));

Rcmax=sqrt(L/C);

printf(' The frequency of resonance = %g rad/sec\n',w0)
printf(' The Maximum value of Rc = %g ohms \n',Rcmax)