summaryrefslogtreecommitdiff
path: root/3888/CH15/EX15.4/Ex15_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH15/EX15.4/Ex15_4.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3888/CH15/EX15.4/Ex15_4.sce')
-rw-r--r--3888/CH15/EX15.4/Ex15_4.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3888/CH15/EX15.4/Ex15_4.sce b/3888/CH15/EX15.4/Ex15_4.sce
new file mode 100644
index 000000000..f8fd169c3
--- /dev/null
+++ b/3888/CH15/EX15.4/Ex15_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 15.4
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V=110; //Line voltage in kV
+r=1; //Conductor radius in cm
+p1=5; //Permittivitie of the material A
+p2=4; //Permittivitie of the material B
+p3=2; //Permittivitie of the material C
+G1=50; //Permissible stress of the material A in kV/cm
+G2=40; //Permissible stress of the material B in kV/cm
+G3=30; //Permissible stress of the material C in kV/cm
+r1=p1*r*G1/(p2*G2); //Outer radius of the material A in cm
+r2=p2*r1*G2/(p3*G3); //Outer radius of the material B in cm
+R=exp(1.638); //Outer radius of the material C in cm(solving the eqn 15.24 in the book )
+
+printf("\nThe minimum internal sheath radius of the cable is %.2f cm",R)