diff options
Diffstat (limited to '3648/CH14/EX14.1/Ex14_1.sce')
-rw-r--r-- | 3648/CH14/EX14.1/Ex14_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH14/EX14.1/Ex14_1.sce b/3648/CH14/EX14.1/Ex14_1.sce new file mode 100644 index 000000000..bb06fed98 --- /dev/null +++ b/3648/CH14/EX14.1/Ex14_1.sce @@ -0,0 +1,10 @@ +//Example 14_1
+clc();
+clear;
+//To find the speed of sound in neon
+gama=1.66 //units in Constant
+r=8314 //Units in J/Kmol
+t=273 //Units in K
+m=20.18 //Units in Kg/Kmol
+v=sqrt((gama*r*t)/m) //Units in meters/sec
+printf("The speed of the sound in neon is v=%d meters/sec",v)
|