diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH12/EX12.1/Ex12_1.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3888/CH12/EX12.1/Ex12_1.sce')
-rw-r--r-- | 3888/CH12/EX12.1/Ex12_1.sce | 22 |
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);
|