diff options
Diffstat (limited to '3648/CH14/EX14.1')
-rw-r--r-- | 3648/CH14/EX14.1/Ex14_1.sce | 10 | ||||
-rw-r--r-- | 3648/CH14/EX14.1/Ex14_1.txt | 1 |
2 files changed, 11 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)
diff --git a/3648/CH14/EX14.1/Ex14_1.txt b/3648/CH14/EX14.1/Ex14_1.txt new file mode 100644 index 000000000..f9216bdcb --- /dev/null +++ b/3648/CH14/EX14.1/Ex14_1.txt @@ -0,0 +1 @@ +The speed of the sound in neon is v=432 meters/sec
\ No newline at end of file |