summaryrefslogtreecommitdiff
path: root/3888/CH15/EX15.3/Ex15_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3888/CH15/EX15.3/Ex15_3.sce')
-rw-r--r--3888/CH15/EX15.3/Ex15_3.sce37
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);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+