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 /1571/CH3/EX3.11/Chapter3_Example11.sce | |
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 '1571/CH3/EX3.11/Chapter3_Example11.sce')
-rwxr-xr-x | 1571/CH3/EX3.11/Chapter3_Example11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1571/CH3/EX3.11/Chapter3_Example11.sce b/1571/CH3/EX3.11/Chapter3_Example11.sce new file mode 100755 index 000000000..eb685fde7 --- /dev/null +++ b/1571/CH3/EX3.11/Chapter3_Example11.sce @@ -0,0 +1,14 @@ +clc
+clear
+
+//INPUT DATA
+h=5000;//height of the niagara falls in cm
+J=4.2*10^7;//joules constant in ergs per cal
+g=981;//accelaration due to gravity in cm/sec^2
+
+//CALCULATIIONS
+w=h*g;//work done per unit mass in ergs/gn
+T=w/J;//rise in temperature in deg.C
+
+//OUTPUT
+mprintf('the rise in temperature is %3.2f deg.C',T)
|