summaryrefslogtreecommitdiff
path: root/2345/CH15/EX15.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2345/CH15/EX15.10
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2345/CH15/EX15.10')
-rwxr-xr-x2345/CH15/EX15.10/Ex15_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2345/CH15/EX15.10/Ex15_10.sce b/2345/CH15/EX15.10/Ex15_10.sce
new file mode 100755
index 000000000..82187aa3c
--- /dev/null
+++ b/2345/CH15/EX15.10/Ex15_10.sce
@@ -0,0 +1,13 @@
+//Finding resistance
+//Example 15.10(pg 398)
+clc
+clear
+rho=1.7*(10^-6)//resistivity of copper in ohm-cm
+l=5//length in metres
+t=0.005//thickness in m
+D=0.08//external diameter in m
+d=D-(2*t)//internal diameter in m
+a=%pi*(D^2-d^2)/4//cross section area in cm^2
+R=rho*l/a//resistance of copper tube in ohm
+R1=R/(10^-4)//resistance in micro-ohm
+printf('Thus the resistance of copper tube is %3.2f micro-ohm',R1)