summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.33
diff options
context:
space:
mode:
Diffstat (limited to '2498/CH5/EX5.33')
-rwxr-xr-x2498/CH5/EX5.33/ex5_33.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2498/CH5/EX5.33/ex5_33.sce b/2498/CH5/EX5.33/ex5_33.sce
new file mode 100755
index 000000000..320f10c84
--- /dev/null
+++ b/2498/CH5/EX5.33/ex5_33.sce
@@ -0,0 +1,16 @@
+// Exa 5.33
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+f = 1;// in kHz
+f = f * 10^3;// in Hz
+R = 10;// in k ohm
+R = R * 10^3;// in ohm
+omega = 2*%pi*f;//in rad/sec
+phi = 60;// in degree
+// tand(phi) = Alpha_C/R = 1/(omega*C*R);
+C = 1/(omega*R*tand(phi));// in F
+C = C * 10^6;// in µF
+disp(C,"The value of C in µF is");