summaryrefslogtreecommitdiff
path: root/3673/CH5/EX5.4
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH5/EX5.4')
-rw-r--r--3673/CH5/EX5.4/Ex5_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3673/CH5/EX5.4/Ex5_4.sce b/3673/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..15ddd6e03
--- /dev/null
+++ b/3673/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,17 @@
+//Example 5_4 page no:195
+clc
+f=500//frequency in Hz
+Vrms=10
+R=2*10^3
+C=0.1*10^-6//capacitance in farad
+Xc=1/(2*%pi*f*C)
+Z=sqrt(R^2+Xc^2)
+disp(Z,"impedence is (in ohm)")
+angle=atand(-Xc/R)
+disp(angle,"the phase angle is (in degree)")
+I=Vrms/Z
+disp(I*1000,"the current is (in mA)")//converting to milli ampere
+Vc=I*Xc
+disp(Vc,"capacitive voltage is (in volt)")
+Vr=I*R
+disp(Vr,"resistive voltage is (in volt)")