summaryrefslogtreecommitdiff
path: root/3554/CH11/EX11.8/Ex11_8.sce
blob: b9511ba11150902c54a7afdb77e1018e2be0d4c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Exa 11.8

 clc;
clear all;

// Given data

w=3000; // Angular frequency in rad/s
R2=10*10^3; // Ohms
R1= 2*10^3; // Ohms
C1=1*10^-6; // farads
R3=1*10^3; // Ohms

// Solution

// Using equations 11.19 and 11.18 (page no.326)to find values of Rx and Lx

Rx=w^2*R1*R2*R3*C1^2/(1+w^2*R1^2*C1^2);
Lx=R2*R3*C1/(1+w^2*R1^2*C1^2);

printf(' The series equivalent inductance and resistance of the network consist of\n  Rx of %.2f k Ohms and Lx of %d mH \n',Rx/1000,Lx*10^3);