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 /51/CH1/EX5/1_5.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 '51/CH1/EX5/1_5.sce')
-rwxr-xr-x | 51/CH1/EX5/1_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/51/CH1/EX5/1_5.sce b/51/CH1/EX5/1_5.sce new file mode 100755 index 000000000..01c63bd87 --- /dev/null +++ b/51/CH1/EX5/1_5.sce @@ -0,0 +1,14 @@ +clc;
+clear;
+exec ("C:\Program Files\scilab-5.3.0\bin\TCP\1.5data.sci");
+//given u=(3*vel/2)(1-(y/h)^2)
+//shearing stress t=vis*(du/dy)
+//(du/dy)=-(3*vel*y/h)
+//along the bottom of the wall y=-h
+//(du/dy)=(3*vel/h)
+t=vis*(3*vel/(h/12));//lb/ft^2
+disp("lb/ft^2",t,"shaering stress t on bottom wall=")
+//along the midplane y=0
+//(du/dy)=0
+t1=0;//lb/ft^2
+disp("lb/ft^2",t1,"shearing stress t on midplane=")
|