summaryrefslogtreecommitdiff
path: root/3876/CH2/EX2.8/Ex2_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH2/EX2.8/Ex2_8.sce')
-rw-r--r--3876/CH2/EX2.8/Ex2_8.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3876/CH2/EX2.8/Ex2_8.sce b/3876/CH2/EX2.8/Ex2_8.sce
new file mode 100644
index 000000000..c3f4eddd1
--- /dev/null
+++ b/3876/CH2/EX2.8/Ex2_8.sce
@@ -0,0 +1,15 @@
+//Chapter 2 Gases
+
+clc;
+clear;
+
+//Initialisation of Variables
+R= 8.31*10**7 //ergs mole^-1
+T= 27 //C
+M= 28 //gram per mole
+
+//CALCULATIONS
+c= sqrt(3*R*(273+T)/M)
+
+//RESULTS
+mprintf("Root-Mean-Square Velocity = %.2e cm per sec",c)