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/CH2/EX2.2.1/2_2_1.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/CH2/EX2.2.1/2_2_1.sce')
-rwxr-xr-x | 2762/CH2/EX2.2.1/2_2_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2762/CH2/EX2.2.1/2_2_1.sce b/2762/CH2/EX2.2.1/2_2_1.sce new file mode 100755 index 000000000..6b3b19e62 --- /dev/null +++ b/2762/CH2/EX2.2.1/2_2_1.sce @@ -0,0 +1,15 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 2
+//Example 2.2-1
+//Principles of Momentum Transfer and Overall Balances
+//given data
+//a)
+Fl=3*32.174*(1/32.174);// lbm*(ft/s^2)*(1/(ft/s^2))=m*g/gc
+//b)
+Fdyne=3*453.59*980.665;//lbm*(g/lbm)8(cm/s^2)
+//c)
+Fnewt=3*(1/2.2046)*9.80665;//(lbm*(kg/lbm)*(m/s^2))
+mprintf("the force in lb is %f lb force ",Fl)
+mprintf("the force in dynes is %f dyn ",Fdyne)
+mprintf("the force in Newtons is %f N ",Fnewt)
+//end
|