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 --- 1376/CH8/EX8.2/8_2.sci | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 1376/CH8/EX8.2/8_2.sci (limited to '1376/CH8/EX8.2/8_2.sci') diff --git a/1376/CH8/EX8.2/8_2.sci b/1376/CH8/EX8.2/8_2.sci new file mode 100755 index 000000000..40abd29b7 --- /dev/null +++ b/1376/CH8/EX8.2/8_2.sci @@ -0,0 +1,16 @@ +//8.2 +clc; +I=125/10; +ZL=50/I; +printf("Load impedance=%.1f ohm",ZL) +Z_total=150/I; +printf("\nImpedance of the combination=%.2f ohm",Z_total) +I1=125; +I2=50; +I3=150; +P=(1/(2*10))*(I3^2-I1^2-I2^2); +printf("\nPower absorbed by load=%.2f W",P) +Pr=I^2*10; +printf("\nPower consumed by the resistor=%.2f W",Pr) +pf=P/(50*I); +printf("\npower factor of load=%.2f",pf) \ No newline at end of file -- cgit