summaryrefslogtreecommitdiff
path: root/3878/CH24/EX24.1/Ex24_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3878/CH24/EX24.1/Ex24_1.sce')
-rw-r--r--3878/CH24/EX24.1/Ex24_1.sce10
1 files changed, 10 insertions, 0 deletions
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)
+