From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1760/CH2/EX2.83/EX2_83.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 1760/CH2/EX2.83/EX2_83.sce (limited to '1760/CH2/EX2.83') diff --git a/1760/CH2/EX2.83/EX2_83.sce b/1760/CH2/EX2.83/EX2_83.sce new file mode 100755 index 000000000..a8651b2ac --- /dev/null +++ b/1760/CH2/EX2.83/EX2_83.sce @@ -0,0 +1,19 @@ + //EXAMPLE 2-83 PG NO-117-118 +V=125+%i*0; +I1=5+%i*0; +I2=1.2+%i*1.964; +Z2=V/I2; +disp('iv) IMPEDANCE (Z2) is in polar form = '+string (Z2) +' ohm '); +R=28.26; +XC=46.43; +F=50; +C=1/[2*%pi*F*XC]; +disp('iv) CAPACITOR (C) is in polar form = '+string (C) +' F '); +I=I1+I2; +disp('iv) CURRENT (I) is in polar form = '+string (I) +' A '); +S=V*I; +disp('i) Apparent Power (S) is in polar form = '+string (S) +' VA '); +P=S*0.953; +disp('i) Active Power (P) is in polar form = '+string (P) +' W '); +Q=S*0.302; +disp('i) Reactive Power (Q) is in polar form = '+string (Q) +' Var '); -- cgit