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/CH15/EX15.3/Ex15_3.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/CH15/EX15.3/Ex15_3.sce')
-rw-r--r-- | 3888/CH15/EX15.3/Ex15_3.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/3888/CH15/EX15.3/Ex15_3.sce b/3888/CH15/EX15.3/Ex15_3.sce new file mode 100644 index 000000000..be27a465c --- /dev/null +++ b/3888/CH15/EX15.3/Ex15_3.sce @@ -0,0 +1,37 @@ +//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 15.3
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V=11; //Supply voltage in kV
+die_strength=50; //Dielectric strength of conductor in kV/cm
+Sf=2; //Safety factor
+e=2.718; //Constant value
+E_max=die_strength/Sf; //Maximum stress in kV/cm
+R=11*e/25; //Outer insulation radius in cm
+r=R/e; //Radius of the conductor in cm
+D=2*r; //Diameter of the conductor in cm
+
+printf("\nThe radius and diameter of a single conductor cable is %.2f cm and %.2f cm",r,D);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|