summaryrefslogtreecommitdiff
path: root/3888/CH10/EX10.8
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH10/EX10.8
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3888/CH10/EX10.8')
-rw-r--r--3888/CH10/EX10.8/Ex10_8.JPGbin0 -> 14816 bytes
-rw-r--r--3888/CH10/EX10.8/Ex10_8.sce20
2 files changed, 20 insertions, 0 deletions
diff --git a/3888/CH10/EX10.8/Ex10_8.JPG b/3888/CH10/EX10.8/Ex10_8.JPG
new file mode 100644
index 000000000..1da2f9fc4
--- /dev/null
+++ b/3888/CH10/EX10.8/Ex10_8.JPG
Binary files differ
diff --git a/3888/CH10/EX10.8/Ex10_8.sce b/3888/CH10/EX10.8/Ex10_8.sce
new file mode 100644
index 000000000..62bbcdbf6
--- /dev/null
+++ b/3888/CH10/EX10.8/Ex10_8.sce
@@ -0,0 +1,20 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 10.8
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+d=0.25; //Diameter of conductor in m
+r=0.0125; //Radius of conductor in m
+Dab=5; //Distance between conductors a & b in m
+Dbc=4; //Distance between conductors b & c in m
+Dac=6; //Distance between conductors a & c in m
+Deq=nthroot((Dab*Dbc*Dac),3); //Diameter equivalent of line in m
+Can=(2*%pi*10^(-9)/(36*%pi))/log(Deq/r); //Capacitance between phase a & neutral in pF/m
+
+
+printf("\nThe capacitance of the transmissin line is %.2f pF/m",Can/(10^-12));