summaryrefslogtreecommitdiff
path: root/3888/CH10/EX10.3
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.3
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.3')
-rw-r--r--3888/CH10/EX10.3/Ex10_3.JPGbin0 -> 17535 bytes
-rw-r--r--3888/CH10/EX10.3/Ex10_3.sce20
2 files changed, 20 insertions, 0 deletions
diff --git a/3888/CH10/EX10.3/Ex10_3.JPG b/3888/CH10/EX10.3/Ex10_3.JPG
new file mode 100644
index 000000000..0ba34b3c8
--- /dev/null
+++ b/3888/CH10/EX10.3/Ex10_3.JPG
Binary files differ
diff --git a/3888/CH10/EX10.3/Ex10_3.sce b/3888/CH10/EX10.3/Ex10_3.sce
new file mode 100644
index 000000000..ff9e179e5
--- /dev/null
+++ b/3888/CH10/EX10.3/Ex10_3.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.3
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+d=3; //Distance of two Wires in m
+r=0.02; //Radius of conductor in m
+L1=(2*10^(-7))*(log(d/(0.7788*r))); //Inductance of each conductor in H/m
+LI=2*L1/(10^(-6)); //Loop inductance of the line in mH/km
+
+
+printf("\nThe loop inductance of the line is %.3f mH/km",LI);
+printf("\nThe inductance of the each conductor is % .3e H/m",L1);
+
+