diff options
Diffstat (limited to '3876/CH2/EX2.9/Ex2_9.sce')
-rw-r--r-- | 3876/CH2/EX2.9/Ex2_9.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3876/CH2/EX2.9/Ex2_9.sce b/3876/CH2/EX2.9/Ex2_9.sce new file mode 100644 index 000000000..0f432cac7 --- /dev/null +++ b/3876/CH2/EX2.9/Ex2_9.sce @@ -0,0 +1,15 @@ +//Chapter 2 Gases + +clc; +clear; + +//Initialisation of Variables +V= 5.16*10**14 //cm per sec +M2= 28 //gms +M1= 2.02 //gms + +//CALCULATIONS +c1= V*sqrt(M2/M1) + +//RESULTS +mprintf("Velocity of hydrogen molecule = %.2e cm per sec",c1) |