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/CH12/EX12.6 | |
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/CH12/EX12.6')
-rwxr-xr-x | 1571/CH12/EX12.6/Chapter12_Example6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1571/CH12/EX12.6/Chapter12_Example6.sce b/1571/CH12/EX12.6/Chapter12_Example6.sce new file mode 100755 index 000000000..a465c65e5 --- /dev/null +++ b/1571/CH12/EX12.6/Chapter12_Example6.sce @@ -0,0 +1,16 @@ +clc
+clear
+
+//INPUT
+d=0.35;//diameter of the mirror in m
+t=5;//time in min
+T=16;//temperature of water found to be in deg.C
+m=60;//mass of water in gm
+mc=30;//mass of calorimeter in gm
+cp=0.1;//specific heat of copper in cal/gm/deg.C
+
+//CALCULATIONS
+q=(m+cp*mc)*T*4/(5*3.14*d^2);//amount of heat received by earth in cal
+
+//OUTPUT
+mprintf('amount of heat received by earth is %3.2f cal',q)
|