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 /1328/CH18/EX18.5 | |
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 '1328/CH18/EX18.5')
-rw-r--r-- | 1328/CH18/EX18.5/18_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1328/CH18/EX18.5/18_5.sce b/1328/CH18/EX18.5/18_5.sce new file mode 100644 index 000000000..0aaaedb89 --- /dev/null +++ b/1328/CH18/EX18.5/18_5.sce @@ -0,0 +1,18 @@ +printf("\t example 18.5 \n");
+Ts=400;
+t0=200;
+k=25; // from appendix
+c=0.12; // from appendix
+row=490; // from appendix
+alpha=0.45; // alpha=(k/(c*row))
+theta=15/60;
+l=8/12; // ft
+h=50;
+X=(4*alpha*theta)/(l^2);
+Z=(2*k)/(h*l);
+printf("\t X is : %.2f \n",X);
+printf("\t Z is : %.1f \n",Z);
+Y=0.31; // Y=(Ts-t)/(Ts-t0), from fig 18.13
+t=Ts+(t0-Ts)*(Y); // eq 18.43
+printf("\t t is : %.0f F \n",t);
+//end
|