diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3685/CH22/EX22.5/Ex22_5.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3685/CH22/EX22.5/Ex22_5.sce')
-rw-r--r-- | 3685/CH22/EX22.5/Ex22_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3685/CH22/EX22.5/Ex22_5.sce b/3685/CH22/EX22.5/Ex22_5.sce new file mode 100644 index 000000000..9c970abff --- /dev/null +++ b/3685/CH22/EX22.5/Ex22_5.sce @@ -0,0 +1,14 @@ +clc
+// Given that
+p = 1 // Pressure in atm
+t = 300 // Temperature in K
+F = 5 // For oxygen gas degree of freedom
+printf("\n Example 22.5 \n")
+v = 445 // In m/s as given in the book
+m = 5.31e-26 // Mass of oxygen molecule in kg
+sigma = 3.84e-19 // As given in the book in m^2
+k = (1/6)*(v*F*(1.38*10^-23))/sigma
+// If the gas has Maxwellian velocity distribution,
+k_ = (1/3)*(F*(1.38*10^-23)/sigma)*((1.38*10^-23)*t/(%pi*m))^(1/2)
+printf("\n Thermal conductivity = %f W/mK,\n If the gas has Maxwellian velocity distribution,\n Thermal conductivity = %f W/mK",k,k_)
+
|