diff options
Diffstat (limited to '147/CH4/EX4.15/Example4_15.sce')
-rw-r--r-- | 147/CH4/EX4.15/Example4_15.sce | 18 |
1 files changed, 18 insertions, 0 deletions
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);
|