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.4/Ex12_4.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2 Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip |
Diffstat (limited to '3888/CH12/EX12.4/Ex12_4.sce')
-rw-r--r-- | 3888/CH12/EX12.4/Ex12_4.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3888/CH12/EX12.4/Ex12_4.sce b/3888/CH12/EX12.4/Ex12_4.sce new file mode 100644 index 000000000..7bb1b4253 --- /dev/null +++ b/3888/CH12/EX12.4/Ex12_4.sce @@ -0,0 +1,23 @@ +//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 12.4
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V4=12; //Rated voltage of each unit in kV
+m=10; //Mutual capacitance of unit
+n=4; //No of string units
+V1=V4/1.651; //Voltage across the topmost unit in kV
+V2=1.1*V1; //Voltage across the second unit from the top in kV
+V3=1.31*V1; //Voltage across the third unit from the top in kV
+V_tot=V1+V2+V3+V4; //Total voltage Voltage across the string in kV
+mlv=3^(1/2)*V_tot; //Maximum line voltage in kV
+str_eff=(V_tot/(n*V4))*100; //String efficiency in percentage
+
+
+printf("\nSafe operating maximum line voltage is %.2f kV",mlv);
+printf("\nThe string efficiency is %.2f percentage",str_eff);
|