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/CH7/EX7.6 | |
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/CH7/EX7.6')
-rwxr-xr-x | 51/CH7/EX7.6/7_6.sce | 19 | ||||
-rwxr-xr-x | 51/CH7/EX7.6/7_6graph.jpg | bin | 0 -> 26209 bytes |
2 files changed, 19 insertions, 0 deletions
diff --git a/51/CH7/EX7.6/7_6.sce b/51/CH7/EX7.6/7_6.sce new file mode 100755 index 000000000..00dac5414 --- /dev/null +++ b/51/CH7/EX7.6/7_6.sce @@ -0,0 +1,19 @@ +clc;
+clear;
+D=2;//ft
+Q=30;//cfs
+Dm=3;//in
+//Rem=Re; hence (Vm*Dm/kvism)=(V*D/kvis); where kvis is kinematic viscosity
+//kvis=kvism; same fluid is used for model and prototype
+//(Vm/V)=(D/Dm)
+//Q=VA; hence Qm/Q = (Vm*Am)/(V*A)=(Dm/D)
+Qm=(Dm/12)*Q/D;//cfs
+disp("cfs",Qm,"The required flowrate in the model=")
+Drat=0.04:0.01:1;
+count=1;
+for i=0.04:0.01:1
+ Vrat(count)=1/i;
+ count=count+1;
+end
+plot2d(Drat,Vrat,rect=[0,0,1,25])
+xtitle("Vm/V vs Dm/D","Dm/D","Vm/V")
diff --git a/51/CH7/EX7.6/7_6graph.jpg b/51/CH7/EX7.6/7_6graph.jpg Binary files differnew file mode 100755 index 000000000..dfbf80842 --- /dev/null +++ b/51/CH7/EX7.6/7_6graph.jpg |