summaryrefslogtreecommitdiff
path: root/2273/CH4/EX4.6/ex4_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2273/CH4/EX4.6/ex4_6.sce')
-rwxr-xr-x2273/CH4/EX4.6/ex4_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2273/CH4/EX4.6/ex4_6.sce b/2273/CH4/EX4.6/ex4_6.sce
new file mode 100755
index 000000000..9d7a747f0
--- /dev/null
+++ b/2273/CH4/EX4.6/ex4_6.sce
@@ -0,0 +1,12 @@
+//Find the inductance per phase of 30 km line
+clear;
+clc;
+//soltion
+//given
+r=(15)/2;//mm//radius of the conductor
+re=r*exp(-1/4);
+d=1.5*1000;//mm//spacing
+L=0.2*log(d/re);
+printf("Loop Inductance of line= %.2f mH/km\n",L);
+Ll=L*30/1000;
+printf("Inductance per phase of 30 km long line= %.4f H",Ll);