summaryrefslogtreecommitdiff
path: root/2870/CH3/EX3.10/Ex3_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2870/CH3/EX3.10/Ex3_10.sce')
-rwxr-xr-x2870/CH3/EX3.10/Ex3_10.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2870/CH3/EX3.10/Ex3_10.sce b/2870/CH3/EX3.10/Ex3_10.sce
new file mode 100755
index 000000000..d2c0745ec
--- /dev/null
+++ b/2870/CH3/EX3.10/Ex3_10.sce
@@ -0,0 +1,17 @@
+clc;clear;
+//Example 3.10
+
+//constants used
+R=0.287// in kPa m^3/kg K
+
+//given values
+l=4;
+b=5;
+h=6;
+P=100;
+T=25+273;//in Kelvin
+
+//calculation
+V=l*b*h;
+m=P*V/R/T;
+disp(m,'the mass of the air in kg')