diff options
Diffstat (limited to '3648/CH6/EX6.10')
-rw-r--r-- | 3648/CH6/EX6.10/Ex6_10.sce | 9 | ||||
-rw-r--r-- | 3648/CH6/EX6.10/Ex6_10.txt | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH6/EX6.10/Ex6_10.sce b/3648/CH6/EX6.10/Ex6_10.sce new file mode 100644 index 000000000..046f079dc --- /dev/null +++ b/3648/CH6/EX6.10/Ex6_10.sce @@ -0,0 +1,9 @@ +//Example 6_10
+clc();
+clear;
+//To find the average speed of the nitrogen molecule in air
+ap=1.01*10^5 //units in Newton/meter^2
+nofmol=2.69*10^25 //Number of molecules
+nitmass=4.65*10^-26 //units in Kg
+v=sqrt((ap*3)/(nofmol*nitmass)) //units in meters/sec
+printf("The average speed of the nitrogen molecule in air is V=%d meters/sec",v)
diff --git a/3648/CH6/EX6.10/Ex6_10.txt b/3648/CH6/EX6.10/Ex6_10.txt new file mode 100644 index 000000000..fcbe25d0a --- /dev/null +++ b/3648/CH6/EX6.10/Ex6_10.txt @@ -0,0 +1 @@ +The average speed of the nitrogen molecule in air is V=492 meters/sec
\ No newline at end of file |