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 --- 147/CH4/EX4.15/Example4_15.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 147/CH4/EX4.15/Example4_15.sce (limited to '147/CH4/EX4.15/Example4_15.sce') diff --git a/147/CH4/EX4.15/Example4_15.sce b/147/CH4/EX4.15/Example4_15.sce new file mode 100644 index 000000000..045798448 --- /dev/null +++ b/147/CH4/EX4.15/Example4_15.sce @@ -0,0 +1,18 @@ +close(); +clear; +clc; +//resistance 'R', capacitance 'C, maximum voltage 'Vm', source frequency 'w' +R = 1; //ohm +C = 1000 * 10^(-6); //F +Vm = 10; //V +w = 1000; //s^(-1) +//impedance 'Z' +Z = sqrt(R^2 + (1/(w*C))^2); +//phase difference in radian 'rad' +rad = atan(-1/(w*R*C)); +//phase difference in theta 'theta' +theta = rad*180/%pi; +A = -Vm*sin(rad)/(w*R*C*Z); +//time constant 't' +t = 1/(R*C); +mprintf("i(t) = %d e^(-%d)t + %0.2f cos(%d t -( %d))",round(A), t, A*Z, t, theta); -- cgit