summaryrefslogtreecommitdiff
path: root/1427/CH25/EX25.5/25_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH25/EX25.5/25_5.sce')
-rw-r--r--1427/CH25/EX25.5/25_5.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH25/EX25.5/25_5.sce b/1427/CH25/EX25.5/25_5.sce
new file mode 100644
index 000000000..33c89a71b
--- /dev/null
+++ b/1427/CH25/EX25.5/25_5.sce
@@ -0,0 +1,7 @@
+//ques-25.5
+//Calculating rms velocity at 392 K
+clc
+C1=1.8*10^3;//rms velocity at 288 K (in m/s)
+T1=273+15; T2=273+119;//temperature (in K)
+C2=C1*sqrt(T2/T1);
+printf("The rms velocity at 392 K is %d m/s.",C2);