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 --- 3169/CH6/EX6.9/Ex6_9.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3169/CH6/EX6.9/Ex6_9.sce (limited to '3169/CH6/EX6.9') diff --git a/3169/CH6/EX6.9/Ex6_9.sce b/3169/CH6/EX6.9/Ex6_9.sce new file mode 100644 index 000000000..8bea634a3 --- /dev/null +++ b/3169/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,23 @@ +//developed in windows XP operating system +//platform Scilab 5.4.1 +clc;clear all; +//example 6.9 +//calculation of self capacitance and leakage reactance + +//given data +Vi=350*10^3//rating(in VA) +V=350*10^3//secondary voltage(in V) +V1=6.6*10^3//primary voltage(in V) +perV=8//percentage ratedd voltage +perR=1//percentage rise +f=50//frequency(in Hz) + +//calculation +I=Vi/V +Xl=(perV*V)/(100*I) +I0=perR*V/(100*Xl) +Xc=((1+(perR/100))*V)/I0 +C=1/(Xc*2*%pi*f) + +printf('The value of self capacitance is %3.3f nF',C*10^9) +printf('\nThe value of leakage reactance is %d kohm',Xl*10^-3) -- cgit