summaryrefslogtreecommitdiff
path: root/2873/CH1/EX1.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2873/CH1/EX1.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2873/CH1/EX1.3')
-rwxr-xr-x2873/CH1/EX1.3/Ex1_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2873/CH1/EX1.3/Ex1_3.sce b/2873/CH1/EX1.3/Ex1_3.sce
new file mode 100755
index 000000000..419f85982
--- /dev/null
+++ b/2873/CH1/EX1.3/Ex1_3.sce
@@ -0,0 +1,17 @@
+// Display mode
+mode(0);
+// Display warning for floating point exception
+ieee(1);
+clear;
+clc;
+disp("Engineering Thermodynamics by Onkar Singh,Chapter 1,Example 3")
+h=30*10^-2;// pressure of compressed air in m of mercury
+Patm=101*10^3;//atmospheric pressure in pa
+g=9.78;//acceleration due to gravity in m/s^2
+rho=13550;//density of mercury at room temperature in kg/m^3
+disp("pressure measured by manometer is gauge pressure(Pg)in kpa")
+disp("Pg=rho*g*h/10^3")
+Pg=rho*g*h/10^3
+disp("actual pressure of the air(P)in kpa")
+disp("P=Pg+Patm/10^3")
+P=Pg+Patm/10^3