summaryrefslogtreecommitdiff
path: root/3888/CH13/EX13.2
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH13/EX13.2
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/CH13/EX13.2')
-rw-r--r--3888/CH13/EX13.2/Ex13_2.JPGbin0 -> 24226 bytes
-rw-r--r--3888/CH13/EX13.2/Ex13_2.sce29
2 files changed, 29 insertions, 0 deletions
diff --git a/3888/CH13/EX13.2/Ex13_2.JPG b/3888/CH13/EX13.2/Ex13_2.JPG
new file mode 100644
index 000000000..2576b647f
--- /dev/null
+++ b/3888/CH13/EX13.2/Ex13_2.JPG
Binary files differ
diff --git a/3888/CH13/EX13.2/Ex13_2.sce b/3888/CH13/EX13.2/Ex13_2.sce
new file mode 100644
index 000000000..f73866fb6
--- /dev/null
+++ b/3888/CH13/EX13.2/Ex13_2.sce
@@ -0,0 +1,29 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 13.2
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+w=0.35; //Weight of the conductor in kg/m
+Ts=800; //Tensile strength in kg
+Sf=2; //Safety factor
+L=160; //Span length in m
+h=70; //Height of support from the ground in m
+T=Ts/Sf; //Working stress in kg
+h1=h-40;; //Difference between supports in m
+x1=(L/2)-(T*h1/(w*L)); //Distance of minimum point from the lower support in m
+h2=h-65; //Difference between supports in m
+x2=(L/2)-(T*h2/(w*L)); //Distance of minimum point from the lower support in m
+d1=w*x2^(2)/(2*T); //Sag from lower support in m
+mgc=65-d1; //Minimum ground clearance in m
+
+
+printf("\nThe minimum clearance from the ground %.2f m",mgc);
+printf("\nThe distance of minimum point from the lower support at 40m is %.2f m",x1);
+printf("\nThe distance of minimum point from the lower support at 65m is %.2f m",x2);
+
+