diff options
Diffstat (limited to '3556/CH13/EX13.15')
-rw-r--r-- | 3556/CH13/EX13.15/Ex13_15.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3556/CH13/EX13.15/Ex13_15.sce b/3556/CH13/EX13.15/Ex13_15.sce new file mode 100644 index 000000000..cf44622d6 --- /dev/null +++ b/3556/CH13/EX13.15/Ex13_15.sce @@ -0,0 +1,22 @@ +clc
+// Fundamental of Electric Circuit
+// Charles K. Alexander and Matthew N.O Sadiku
+// Mc Graw Hill of New York
+// 5th Edition
+
+// Part 1 : AC Circuits
+// Chapter 13 : Magnetically Couple Circuits
+// Example 13 - 15
+
+clear; clc; close;
+//
+// Given data
+V1 = 120.0000;
+n = 3.0000;
+//
+// Calculatioons V2
+V2 = V1/n;
+// Display the result
+disp("Example 13-15 Solution : ");
+printf(" \n V2 = Voltage Accros Thr Load = %.3f Volt",V2)
+
|