From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3875/CH1/EX1.6/1_6.txt | 4 ++++ 3875/CH1/EX1.6/Ex1_6.sce | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 3875/CH1/EX1.6/1_6.txt create mode 100644 3875/CH1/EX1.6/Ex1_6.sce (limited to '3875/CH1/EX1.6') 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 -- cgit