diff options
Diffstat (limited to '1991/CH6/EX6.7/7.sce')
-rwxr-xr-x | 1991/CH6/EX6.7/7.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1991/CH6/EX6.7/7.sce b/1991/CH6/EX6.7/7.sce new file mode 100755 index 000000000..31afa41d4 --- /dev/null +++ b/1991/CH6/EX6.7/7.sce @@ -0,0 +1,11 @@ +clc
+clear
+//input
+t1=273//initial tenperature
+t2=408//final temperature
+//calculation
+e=t1/t2//ratio of mean molecuar KE
+c1=402*sqrt(0.67)//rms speed
+//output
+printf("the ratio of kinetic energy is %3.3f",e)
+printf("\n the rms speed of gas molecule is %3.0f ms^-1",c1)
|