summaryrefslogtreecommitdiff
path: root/509/CH9/EX9.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /509/CH9/EX9.1
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.1')
-rw-r--r--509/CH9/EX9.1/9_1.sci18
1 files changed, 18 insertions, 0 deletions
diff --git a/509/CH9/EX9.1/9_1.sci b/509/CH9/EX9.1/9_1.sci
new file mode 100644
index 000000000..644680ac9
--- /dev/null
+++ b/509/CH9/EX9.1/9_1.sci
@@ -0,0 +1,18 @@
+//Chapter 9 Example1//
+clc
+clear
+// number of strands=n//
+n=7;
+//from the diagram we get below realtions where dxy= distance between x amd y//
+k=2;//d12=d23=d34=d45=d56=d17=d27=d37=d47=d57=d67=k and assume r=1//
+k1=0.7788;//d11=d22=d33=d44=d55=d66=d77=k1//
+k2=2*2*sind(60);//d13=d24=d35=d46=k3//
+// self geometric mean distance(GMD) of srtand1=ds1//
+ds1=(k1*k*k2*2*k*k2*k*k)^(1/7);
+printf("\n Self GMD of strand1 = %.4f r\n",ds1);// by observation ds1=ds2=ds3=ds4=ds5=ds6//
+// self GMD of strand7=ds7//
+ds7=(k*k*k*k*k*k*k1)^(1/7);
+printf("\n Self GMD of strand7 = %.4f r\n",ds7);
+//equivalent radius of the conductor=ds//
+ds=(((ds1)^6)*ds7)^(1/7);
+printf("\n Equivalent radius of 7-strand conductor = %.4f r\n",ds); \ No newline at end of file