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 /2762/CH3/EX3.2.2/3_2_2.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 '2762/CH3/EX3.2.2/3_2_2.sce')
-rwxr-xr-x | 2762/CH3/EX3.2.2/3_2_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2762/CH3/EX3.2.2/3_2_2.sce b/2762/CH3/EX3.2.2/3_2_2.sce new file mode 100755 index 000000000..8f18271b8 --- /dev/null +++ b/2762/CH3/EX3.2.2/3_2_2.sce @@ -0,0 +1,16 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 3
+//Example 3.2-2
+//Principles of Momentum Transfer and Applications
+//given data
+delP=9.32e+4;//pressure diff in N/m2
+D1=0.1541;//external diameter in m
+D0=0.0566;//internal diameter in m
+Dr=D0/D1;
+Co=0.61;
+rho=878; //oil density in kg/m3
+v0=(Co/(sqrt(1-(Dr^4))))*sqrt((2*delP)/rho);//velocity calculation in m/s
+A=(%pi/4)*D0*D0;//cross section area
+V=A*v0;//volumetric flow rate
+mprintf("the volumetric flow rate is %f m3/s",V);
+//end
|