summaryrefslogtreecommitdiff
path: root/3843/CH1/EX1.5/Ex1_5.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3843/CH1/EX1.5/Ex1_5.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3843/CH1/EX1.5/Ex1_5.sce')
-rw-r--r--3843/CH1/EX1.5/Ex1_5.sce12
1 files changed, 12 insertions, 0 deletions
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);