diff options
Diffstat (limited to '3556/CH9/EX9.10/Ex9_10.sce')
-rw-r--r-- | 3556/CH9/EX9.10/Ex9_10.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3556/CH9/EX9.10/Ex9_10.sce b/3556/CH9/EX9.10/Ex9_10.sce new file mode 100644 index 000000000..517b83fdc --- /dev/null +++ b/3556/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,27 @@ +clc
+// Fundamental of Electric Circuit
+// Charles K. Alexander and Matthew N.O Sadiku
+// Mc Graw Hill of New York
+// 5th Edition
+
+// Part 2 : AC Circuits
+// Chapter 9 : Sinusoids and Phasors
+// Example 9 - 10
+
+clear; clc; close;
+//
+// Given data
+Z1 = complex(0.0000,-10.0000);
+Z2 = complex(3.0000,-2.0000);
+Z3 = complex(8.0000,10.0000);
+//
+// Calculations Zp = Z2//Z3
+Zp = (Z2*Z3)/(Z2+Z3);
+// Calculations Ztot
+Zin = Z1 + Zp
+Zin_real = real(Zin);
+Zin_imaginer = imag(Zin);
+//
+disp("Example 9-10 Solution : ");
+printf(" \n Zin_real = Real Part of Zin = %.3f Ohm",Zin_real)
+printf(" \n Zin_angle = Imaginer Part of Zin = %.3f Ohm",Zin_imaginer)
|