diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2078/CH4/EX4.10/Example4_10.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2078/CH4/EX4.10/Example4_10.sce')
-rwxr-xr-x | 2078/CH4/EX4.10/Example4_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2078/CH4/EX4.10/Example4_10.sce b/2078/CH4/EX4.10/Example4_10.sce new file mode 100755 index 000000000..73586bed8 --- /dev/null +++ b/2078/CH4/EX4.10/Example4_10.sce @@ -0,0 +1,12 @@ +//Exa 4.10
+clc;
+clear;
+close;
+//Given data :
+r=1.2/2*10;//mm
+rdash=0.7788*r;//mm
+d=3.5*1000;//mm
+L=2*10^-7*log(d/rdash);//H/m
+Lav=1/3*(L+L+L);//H/m
+d=rdash*exp(Lav/(2*10^-7)-1/3*log(2));//mm
+disp(d/1000,"Spacing between adjacent conductors(m)");
|