summaryrefslogtreecommitdiff
path: root/3169/CH6/EX6.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3169/CH6/EX6.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3169/CH6/EX6.9')
-rw-r--r--3169/CH6/EX6.9/Ex6_9.sce23
1 files changed, 23 insertions, 0 deletions
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)