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 --- 3878/CH24/EX24.1/Ex24_1.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 3878/CH24/EX24.1/Ex24_1.sce (limited to '3878/CH24/EX24.1') diff --git a/3878/CH24/EX24.1/Ex24_1.sce b/3878/CH24/EX24.1/Ex24_1.sce new file mode 100644 index 000000000..02e6a5c00 --- /dev/null +++ b/3878/CH24/EX24.1/Ex24_1.sce @@ -0,0 +1,10 @@ +clear +// Variable declaration +Z=4500// Altitude in m +p=575// mbar barometric pressure +t=-10// Temperature in °C + +// Calculation +rho=1.2*(p/1013.25)*((273.15+20)/(273.15+t))// The density of dry air in kg/m**3 +printf("\n The density of dry air,rho=%0.2f kg/m**3",rho) + -- cgit