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 /530/CH1/EX1.1 | |
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 '530/CH1/EX1.1')
-rwxr-xr-x | 530/CH1/EX1.1/example_1_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/530/CH1/EX1.1/example_1_1.sce b/530/CH1/EX1.1/example_1_1.sce new file mode 100755 index 000000000..1696faa88 --- /dev/null +++ b/530/CH1/EX1.1/example_1_1.sce @@ -0,0 +1,18 @@ +clear;
+clc;
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 1
+// Introduction
+
+
+// Example 1.1
+// Page 5
+// Given that the viscosity of water at 100 degree Celsius is 28.8 * 10^-6 kgf s/m^2 in MKS system , express this value in SI system.
+printf("Example 1.1, Page 5 \n \n")
+
+// Solution:
+
+//at 100 degree Celsius
+v1=28.8 * 10^-6; // [kgf s/m^2]
+v2=28.8 * 10^-6 * 9.8; // [N s/m^2]
+printf("Viscosity of water at 100 degree celsius in the SI system is %e N.s/m^-2 (or kg/m s)",v2)
\ No newline at end of file |