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 --- 3793/CH5/EX5.1/exp_5_1.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3793/CH5/EX5.1/exp_5_1.sce (limited to '3793/CH5/EX5.1') diff --git a/3793/CH5/EX5.1/exp_5_1.sce b/3793/CH5/EX5.1/exp_5_1.sce new file mode 100644 index 000000000..b0ff219b9 --- /dev/null +++ b/3793/CH5/EX5.1/exp_5_1.sce @@ -0,0 +1,18 @@ +clear; +clc; +S=250; +V=3330; +r=.25; +x=3.5; +pf=0.8; +i=(S*1000)/(sqrt(3)*V); +Il=i; +Vp=(V/sqrt(3)); +z=complex(r,x); +Ia=complex(34.99,-26.24); +E=Vp+(Ia*z); + +Vv=sqrt((real(E)^2)+(imag(E)^2)); +reg=((Vv-Vp)/Vp)*100; + +mprintf("regulation=%f percent",reg); -- cgit