summaryrefslogtreecommitdiff
path: root/1328/CH17/EX17.4/17_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1328/CH17/EX17.4/17_4.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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/CH17/EX17.4/17_4.sce')
-rw-r--r--1328/CH17/EX17.4/17_4.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1328/CH17/EX17.4/17_4.sce b/1328/CH17/EX17.4/17_4.sce
new file mode 100644
index 000000000..e39675bc4
--- /dev/null
+++ b/1328/CH17/EX17.4/17_4.sce
@@ -0,0 +1,22 @@
+printf("\t example 17.4 \n");
+printf("\t approximate values are mentioned in the book \n");
+// The area between the saturation line and the operating line represents the potential for heat transfer
+// at T=79.3F
+Hs=43.4; // fig 17.12
+H=30.4; // fig 17.12
+d1=(Hs-H);
+printf("\t difference is : %.1f \n",d1);
+//at t=85
+Hs=50; // fig 17.12
+H=35.7; // fig 17.12
+d2=Hs-H;
+printf("\t difference is : %.1f \n",d2);
+d=(d1+d2)/(2);
+printf("\t average of difference is : %.2f \n",d);
+dT=(85-79.3); // F
+nd1=(dT/d);
+printf("\t nd1 is : %.3f \n",nd1);
+// similarly calculating nd at each temperature and adding them will give you total nd value
+nd=1.72;
+printf("\t number of diffusing units : %.2f \n",nd);
+// end