summaryrefslogtreecommitdiff
path: root/3888/CH12/EX12.1/Ex12_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3888/CH12/EX12.1/Ex12_1.sce')
-rw-r--r--3888/CH12/EX12.1/Ex12_1.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3888/CH12/EX12.1/Ex12_1.sce b/3888/CH12/EX12.1/Ex12_1.sce
new file mode 100644
index 000000000..51eac99cc
--- /dev/null
+++ b/3888/CH12/EX12.1/Ex12_1.sce
@@ -0,0 +1,22 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 12.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V=33; //Operating voltage of line in kV
+m=10; //Mutual capacitance of unit
+n=4; //No of string units
+V_tot=V/3^(1/2); //Total voltage across the string in kV
+V1=V_tot/(1+1.1+1.31+1.651); //Voltage across the topmost unit in kV
+V2=V1*(1+(1/m)); //Voltage across the second unit from the top in kV
+V3=V1*(1+(3/m)+(1/m^(2))); //Voltage across the third unit from the top in kV
+V4=V3*(1+(1/m))+(V2/m)+(V1/m); //Voltage across the fourth unit from the top in kV
+str_eff=V_tot/(n*V4); //String efficiency in percentage
+
+
+printf("\nThe string efficiency is %.2f percentage",str_eff*100);