From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3843/CH1/EX1.5/Ex1_5.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 3843/CH1/EX1.5/Ex1_5.sce (limited to '3843/CH1/EX1.5/Ex1_5.sce') diff --git a/3843/CH1/EX1.5/Ex1_5.sce b/3843/CH1/EX1.5/Ex1_5.sce new file mode 100644 index 000000000..b72f7d917 --- /dev/null +++ b/3843/CH1/EX1.5/Ex1_5.sce @@ -0,0 +1,12 @@ +// Example 1_5 +clc;funcprot(0); +// Given data +V=3*5*20;// The volume of the room in(m*m*m) +m=350;// The mass of air in kg +g=9.81;// The acceleration due to gravity in m/s^2 + +// Calculation +rho=m/V;// The density in kg/m^3 +c=1/rho;// The specific volume in m^3/kg +gamma=rho*g;// The specific weight in N/m^3 +printf("\nThe density,rho=%1.3f kg/m^3 \nThe specific volume,c=%0.3f m^3/kg \nThe specific weight,gamma=%2.2f N/m^3",rho,c,gamma); -- cgit