summaryrefslogtreecommitdiff
path: root/1427/CH25/EX25.7
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH25/EX25.7')
-rw-r--r--1427/CH25/EX25.7/25_7.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH25/EX25.7/25_7.sce b/1427/CH25/EX25.7/25_7.sce
new file mode 100644
index 000000000..d767452b8
--- /dev/null
+++ b/1427/CH25/EX25.7/25_7.sce
@@ -0,0 +1,8 @@
+//ques-25.7
+//Calculating rms velocity of a gas and temperature required
+clc
+M1=16; M2=30;//molar masses of two gases (in g/mol)
+T1=298;//temperature for 1st gas (in K)
+Crms=sqrt((3*8.314*T1)/(M1/1000));
+T2=(T1*M2)/M1;
+printf("The rms velocity of the gas is %.2f m/s and temperature of 2nd gas is %.2f K.",Crms,T2);