summaryrefslogtreecommitdiff
path: root/3875/CH1/EX1.6
diff options
context:
space:
mode:
Diffstat (limited to '3875/CH1/EX1.6')
-rw-r--r--3875/CH1/EX1.6/1_6.txt4
-rw-r--r--3875/CH1/EX1.6/Ex1_6.sce21
2 files changed, 25 insertions, 0 deletions
diff --git a/3875/CH1/EX1.6/1_6.txt b/3875/CH1/EX1.6/1_6.txt
new file mode 100644
index 000000000..5b6c5ef75
--- /dev/null
+++ b/3875/CH1/EX1.6/1_6.txt
@@ -0,0 +1,4 @@
+(i)Impedance = 94.5 ohm
+(ii)Current = 2.43 A
+(iii)Power Factor = 0.53 (Lead)
+(iv)Power Consumed = 296 W \ No newline at end of file
diff --git a/3875/CH1/EX1.6/Ex1_6.sce b/3875/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..f22eb0161
--- /dev/null
+++ b/3875/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,21 @@
+clc;
+clear;
+R=50 //resistance in ohm
+C=25 //capacitance in micro-F
+L=0.15 //inductance in H
+V=230 //voltage in Volts
+f=50 //frequency in Hz
+
+//calculation
+XL=2*%pi*f*L //in ohm
+XC=(10^6)/(2*%pi*f*C) //in ohm
+X=XL-XC //in ohm
+Z=sqrt(R^2+X^2)
+I=V/Z
+pf=R/Z
+power_consumed=V*I*pf
+
+mprintf("(i)Impedance = %2.1f ohm\n",Z) //The answers vary due to round off error
+mprintf("(ii)Current = %1.2f A\n",I) //The answers vary due to round off error
+mprintf("(iii)Power Factor = %1.2f (Lead)\n",pf)
+mprintf("(iv)Power Consumed = %d W",power_consumed) //The answers vary due to round off error