summaryrefslogtreecommitdiff
path: root/3888/CH13/EX13.1
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.1
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.1')
-rw-r--r--3888/CH13/EX13.1/Ex13_1.JPGbin0 -> 16184 bytes
-rw-r--r--3888/CH13/EX13.1/Ex13_1.sce21
2 files changed, 21 insertions, 0 deletions
diff --git a/3888/CH13/EX13.1/Ex13_1.JPG b/3888/CH13/EX13.1/Ex13_1.JPG
new file mode 100644
index 000000000..ee5567507
--- /dev/null
+++ b/3888/CH13/EX13.1/Ex13_1.JPG
Binary files differ
diff --git a/3888/CH13/EX13.1/Ex13_1.sce b/3888/CH13/EX13.1/Ex13_1.sce
new file mode 100644
index 000000000..965014ac5
--- /dev/null
+++ b/3888/CH13/EX13.1/Ex13_1.sce
@@ -0,0 +1,21 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 13.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+L=160; //Span length in m
+w=4; //Weight of the conductor in N/m
+Ts=8000; //Tensile strength in N
+T=Ts/w; //Working stress in N
+d=w*L^(2)/(8*T); //Sag of the line in m
+l=L+(w^(2)*L^(3)/(24*T^(2))); //Total length of conductor in spans in m
+
+
+printf("\nSag of the line between span is %.1f m",d);
+printf("\nTotal length of the line between span is %.2f m",l);
+