diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /509/CH9/EX9.3/9_3.sci | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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);
+
+
|