diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /680/CH2/EX2.08 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '680/CH2/EX2.08')
-rwxr-xr-x | 680/CH2/EX2.08/2_08.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/680/CH2/EX2.08/2_08.sce b/680/CH2/EX2.08/2_08.sce new file mode 100755 index 000000000..01173f014 --- /dev/null +++ b/680/CH2/EX2.08/2_08.sce @@ -0,0 +1,10 @@ +//Problem 2.08:
+
+//initializing the variables:
+tc = 0.0512 // in cal/m.s.°C
+
+//calculation:
+k = tc*0.3048*3600/(252*1.8) // in Btu/ft.h.°F
+
+printf("\n\nResult\n\n")
+printf("\n thermal conductivity in english units is %.3f Btu/ft.h.°F\n",k)
|