From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3888/CH15/EX15.3/Ex15_3.sce | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 3888/CH15/EX15.3/Ex15_3.sce (limited to '3888/CH15/EX15.3/Ex15_3.sce') 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); + + + + + + + + + + + + + + + + + -- cgit