diff options
Diffstat (limited to '509/CH9/EX9.3/9_3.sci')
-rw-r--r-- | 509/CH9/EX9.3/9_3.sci | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/509/CH9/EX9.3/9_3.sci b/509/CH9/EX9.3/9_3.sci new file mode 100644 index 000000000..896061f90 --- /dev/null +++ b/509/CH9/EX9.3/9_3.sci @@ -0,0 +1,16 @@ +//Chapter 9 Example 3//
+clc
+clear
+// radius of each conductor=r,distance beween the seperation of conductors=d//
+r=2;// in cm//
+d=300;// in cms//
+// inductance of conductor=l//
+r1=0.7788*r;
+l1=2*10^-7*(log(d/r1));
+printf("\n Inductance of one conductor = %.9f H/m\n",l1);
+// to convert it into mH/km multiply by 10^6//
+// loop inductance =l//
+l=2*l1*10^6;// 10^6 conversion factor//
+printf("\n Loop Inductance = %.3f mH/km\n",l);
+
+
|