From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3556/CH10/EX10.15/Ex10_15.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 3556/CH10/EX10.15/Ex10_15.sce (limited to '3556/CH10/EX10.15/Ex10_15.sce') 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) -- cgit