summaryrefslogtreecommitdiff
path: root/3876/CH2/EX2.3/Ex2_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH2/EX2.3/Ex2_3.sce')
-rw-r--r--3876/CH2/EX2.3/Ex2_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH2/EX2.3/Ex2_3.sce b/3876/CH2/EX2.3/Ex2_3.sce
new file mode 100644
index 000000000..f5937d4ea
--- /dev/null
+++ b/3876/CH2/EX2.3/Ex2_3.sce
@@ -0,0 +1,17 @@
+//Chapter 2 Gases
+
+clc;
+clear;
+
+//Initialisation of Variables
+P= 100 //cm
+m= 2*10**20 //molecules
+N= 6*10**23
+R= 0.0821 //lit atm mole^-1
+T= 27 //C
+
+//CALCULATIONS
+V= m*R*(T+273)*760*100/(N*P)
+
+//RESULTS
+mprintf("Volume = %.2f cm^3",V)