From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 51/CH7/EX7.6/7_6.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 51/CH7/EX7.6/7_6.sce (limited to '51/CH7/EX7.6/7_6.sce') 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") -- cgit