diff options
Diffstat (limited to '3850/CH24/EX24.2')
-rw-r--r-- | 3850/CH24/EX24.2/Ex24_2.sce | 18 | ||||
-rw-r--r-- | 3850/CH24/EX24.2/Ex24_2.txt | 2 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH24/EX24.2/Ex24_2.sce b/3850/CH24/EX24.2/Ex24_2.sce new file mode 100644 index 000000000..09f923f8c --- /dev/null +++ b/3850/CH24/EX24.2/Ex24_2.sce @@ -0,0 +1,18 @@ + +//To calculate the rms speed of hydrogen molecules at the same temperature
+
+//Example 24.2
+
+clear;
+
+clc;
+
+v1=490;//rms speed of nitrogen at 273 Kelvin
+
+m1=28;//molecular weight of nitrogen
+
+m2=2;//molecular weight of hydrogen
+
+v2=v1*sqrt(m1/m2);//rms speed of hydrogen at 273 Kelvin
+
+printf("rms speed of hydrogen=%d m/s (wrong answer given in the book)",v2);
diff --git a/3850/CH24/EX24.2/Ex24_2.txt b/3850/CH24/EX24.2/Ex24_2.txt new file mode 100644 index 000000000..d14a70400 --- /dev/null +++ b/3850/CH24/EX24.2/Ex24_2.txt @@ -0,0 +1,2 @@ + + rms speed of hydrogen=1833 m/s (wrong answer given in the book)
\ No newline at end of file |