summaryrefslogtreecommitdiff
path: root/3875/CH1/EX1.6/Ex1_6.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3875/CH1/EX1.6/Ex1_6.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3875/CH1/EX1.6/Ex1_6.sce')
-rw-r--r--3875/CH1/EX1.6/Ex1_6.sce21
1 files changed, 21 insertions, 0 deletions
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