diff options
Diffstat (limited to '3856/CH3/EX3.1')
-rw-r--r-- | 3856/CH3/EX3.1/Ex3_1.sce | 25 | ||||
-rw-r--r-- | 3856/CH3/EX3.1/Ex3_1.txt | 3 |
2 files changed, 28 insertions, 0 deletions
diff --git a/3856/CH3/EX3.1/Ex3_1.sce b/3856/CH3/EX3.1/Ex3_1.sce new file mode 100644 index 000000000..715a21797 --- /dev/null +++ b/3856/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,25 @@ +//Calculate the Most probable speed ,Mean speed and Root mean square speed for Oxygen molecule
+
+//Example 3.1
+
+clc;
+
+clear;
+
+R=8.314; //Gas constant in J K^-1 mol^-1
+
+T=300; //Temperature in kelvin
+
+mew=0.03200; //Molar mass of Oxygen kg mol^-1
+
+Cmp=sqrt((2*R*T)/(mew))//Most probable speed in m s^-1
+
+printf("most probable speed = %.0f m s^-1",Cmp);
+
+Cbar=sqrt((8*R*T)/(%pi*mew)); //Mean speed in m s^-1
+
+printf("\nMean speed = %.0f m s^-1",Cbar);
+
+Crms=sqrt((3*R*T)/(mew)); //Root mean square speed in m s^-1
+
+printf("\nroot mean square speed = %.0f m s^-1",Crms);
diff --git a/3856/CH3/EX3.1/Ex3_1.txt b/3856/CH3/EX3.1/Ex3_1.txt new file mode 100644 index 000000000..27e059727 --- /dev/null +++ b/3856/CH3/EX3.1/Ex3_1.txt @@ -0,0 +1,3 @@ + most probable speed = 395 m s^-1
+Mean speed = 446 m s^-1
+root mean square speed = 484 m s^-1
\ No newline at end of file |