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 /839/CH1 | |
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 '839/CH1')
-rwxr-xr-x | 839/CH1/EX1.1/Example_1_1.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/839/CH1/EX1.1/Example_1_1.sce b/839/CH1/EX1.1/Example_1_1.sce new file mode 100755 index 000000000..83165a78a --- /dev/null +++ b/839/CH1/EX1.1/Example_1_1.sce @@ -0,0 +1,26 @@ +//clear//
+clear;
+clc;
+
+//Example 1.1
+
+//Solution
+//(a)
+//Using Eq.(1.6,), (1.26), and (1.27)
+//Let N = 1N
+N = 0.3048/(9.80665*0.45359237*0.3048); //[lbf]
+
+//(b)
+//Using (1.38), (1.16), (1.26), and (1.31)
+//Let B = 1 Btu
+B = 0.45359237*1000/1.8; //[cal]
+
+//(c)
+//Using Eq.(1.6), (1.14), (1.15), (1.26), (1.27), and (1.36)
+//Let P = 1 atm
+P = 1.01325*10^5*0.3048/(32.174*0.45359237*12^2); //[lbf/in.^2]
+
+//(d)
+// Using Eq.(1.8), (1.33), (1.37), (1.26), and (1.27)
+//Let hp = 1hp
+hp = 550*32.174*0.45359237*0.3048^2/1000; //[kW]
|