diff options
Diffstat (limited to '3556/CH10/EX10.15/Ex10_15.sce')
-rw-r--r-- | 3556/CH10/EX10.15/Ex10_15.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3556/CH10/EX10.15/Ex10_15.sce b/3556/CH10/EX10.15/Ex10_15.sce new file mode 100644 index 000000000..2bb1fd9e1 --- /dev/null +++ b/3556/CH10/EX10.15/Ex10_15.sce @@ -0,0 +1,21 @@ +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 10 : Sinusoidal Steady State Analysis
+// Example 10 - 15
+clear; clc; close;
+
+// Given data
+R1 = 10000.0000;
+R2 = 1.0000 * 10^6;
+C = 1.0000 * 10^-9;
+// Calculations Ceg
+Ceq = (1+(R2/R1))*C
+//
+// Display the result
+disp("Example 10-15 Solution : ");
+printf(" \n Ceq = C Equivalen = %.3f Volt",Ceq)
|