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 /1784/CH31/EX31.3 | |
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 '1784/CH31/EX31.3')
-rwxr-xr-x | 1784/CH31/EX31.3/example3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1784/CH31/EX31.3/example3.sce b/1784/CH31/EX31.3/example3.sce new file mode 100755 index 000000000..6bb1c7967 --- /dev/null +++ b/1784/CH31/EX31.3/example3.sce @@ -0,0 +1,19 @@ +//chapter 31
+//example3
+clc
+//given
+disp("Dimensions of rectangular carbon block are 1.0cm*1.0cm*50cm")
+l=1.0*10^-2 //in meter
+b=1.0*10^-2//in meter
+h=50*10^-2 //in meter
+p=3.5*10^-5 //resisivity of carbon in ohm-m
+//(a)Resistance b/w two square ends
+l1=h
+A1=b*l
+R1=p*l1/A1
+disp(R1,"(a) Resistance measured b/w the two square ends in ohm is")
+l2=l
+A2=b*h
+R2=p*l2/A2
+disp(R2,"(a) Resistance measured b/w the two opposite rectangular faces in ohm is")
+
|