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 --- 2873/CH1/EX1.3/Ex1_3.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2873/CH1/EX1.3/Ex1_3.sce (limited to '2873/CH1/EX1.3') 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 -- cgit