diff options
Diffstat (limited to '3554/CH11/EX11.7/Ex11_7.sce')
-rw-r--r-- | 3554/CH11/EX11.7/Ex11_7.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3554/CH11/EX11.7/Ex11_7.sce b/3554/CH11/EX11.7/Ex11_7.sce new file mode 100644 index 000000000..f9c3a66ba --- /dev/null +++ b/3554/CH11/EX11.7/Ex11_7.sce @@ -0,0 +1,19 @@ +// Exa 11.7
+
+clc;
+clear all;
+
+// Given data
+
+C1=0.01; // micro farads
+R1=470; // k Ohms
+R2=5.1; // k Ohms
+R3=100; // k Ohms
+
+// Solution
+// Using equation 11.15 given on page no. 324 to find Rx and Lx
+
+Rx=R2*R3/R1;
+Lx=R2*R3*C1;
+
+printf(' The series equivalent of the unknown impedence consist of series combination\n of Rx = %.2f k Ohms and Lx= %.1f H \n' , Rx, Lx);
|