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 /3745/CH1/EX1.57/Ex1_57.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 '3745/CH1/EX1.57/Ex1_57.sce')
-rw-r--r-- | 3745/CH1/EX1.57/Ex1_57.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3745/CH1/EX1.57/Ex1_57.sce b/3745/CH1/EX1.57/Ex1_57.sce new file mode 100644 index 000000000..632e61881 --- /dev/null +++ b/3745/CH1/EX1.57/Ex1_57.sce @@ -0,0 +1,21 @@ +// Ex 57 Page 401 + +clc;clear;close; +// Given +theta1=30;//degree C +theta2=45;//degree C +t1=0.5;//hour +t2=1;//hour +theta_m_dashBYthetam=60/100;//temperature rise + +//theta=theta_m*(1-e**(-t/alfa)) +//theta1/theta2=(1-%e**(-t1/alfa))/(1-%e**(-t2/alfa)) +ee1=theta2/theta1-1;//let ee1=exp(-1/2/alfa) +theta_m=theta1/(1-ee1);//degree C +theta_2=theta_m*(1-ee1**4);// degree C (after 2 hours) +printf("temperature rise after 2 hours full load = %.f degree C",theta_2) +alfa=-1/2/log(ee1);//hour +alfa_dash=theta_m_dashBYthetam*alfa;//hour +theta_m_dash=theta_m_dashBYthetam*theta_m +theta_dash=theta_m_dash*(1-%e**(-t2/alfa)) +printf("\n temperature rise of cold water after 1 hour = %.f degree C",theta_dash) |