summaryrefslogtreecommitdiff
path: root/3554/CH11/EX11.8
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH11/EX11.8')
-rw-r--r--3554/CH11/EX11.8/Ex11_8.sce21
1 files changed, 21 insertions, 0 deletions
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);