diff options
Diffstat (limited to '1427/CH25/EX25.6/25_6.sce')
-rw-r--r-- | 1427/CH25/EX25.6/25_6.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH25/EX25.6/25_6.sce b/1427/CH25/EX25.6/25_6.sce new file mode 100644 index 000000000..7bd13025d --- /dev/null +++ b/1427/CH25/EX25.6/25_6.sce @@ -0,0 +1,7 @@ +//ques-25.6
+//Calculating total random kinetic energy of helium at 200 K
+clc
+T=200;//temperature (in K)
+M=4;//molar mass of He (in g/mol)
+Rand=(3*8.314*T)/(2*M);
+printf("Total random kinetic energy of Helium at 200 K is %.1f J.",Rand);
|