summaryrefslogtreecommitdiff
path: root/1328/CH18/EX18.7/18_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1328/CH18/EX18.7/18_7.sce')
-rw-r--r--1328/CH18/EX18.7/18_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1328/CH18/EX18.7/18_7.sce b/1328/CH18/EX18.7/18_7.sce
new file mode 100644
index 000000000..cda06e521
--- /dev/null
+++ b/1328/CH18/EX18.7/18_7.sce
@@ -0,0 +1,11 @@
+printf("\t example 18.7 \n");
+t=20; // min
+alpha=0.40; // ft^2/hr
+delx=0.167; // ft
+// From the conditions of Eq. (18.61) take time increments such that alpha(deltheta/delx^2)=1/2
+printf("\t approximate values are mentioned in the book \n");
+deltheta=(delx^2/(2*alpha));
+printf("\t deltheta is : %.3f hr \n",deltheta);
+N=(t/(deltheta*60));
+printf("\t number of steps required : %.1f \n",N);
+// end