From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3554/CH11/EX11.8/Ex11_8.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 3554/CH11/EX11.8/Ex11_8.sce (limited to '3554/CH11/EX11.8/Ex11_8.sce') diff --git a/3554/CH11/EX11.8/Ex11_8.sce b/3554/CH11/EX11.8/Ex11_8.sce new file mode 100644 index 000000000..b9511ba11 --- /dev/null +++ b/3554/CH11/EX11.8/Ex11_8.sce @@ -0,0 +1,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); -- cgit