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/CH7/EX7.2/7_2.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 '1328/CH7/EX7.2/7_2.sce')
-rw-r--r-- | 1328/CH7/EX7.2/7_2.sce | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/1328/CH7/EX7.2/7_2.sce b/1328/CH7/EX7.2/7_2.sce new file mode 100644 index 000000000..a9fe79bb9 --- /dev/null +++ b/1328/CH7/EX7.2/7_2.sce @@ -0,0 +1,42 @@ +printf("\t example 7.2 \n");
+printf("\t approximate values are mentioned in the book \n");
+printf("\t considering 50F approach \n");
+T1=350; //F
+T2=250; //F
+t2=T2-50; // formula for approach,f
+printf("\t t2 is : %.0f F \n",t2);
+printf("\t fluids are with equal ranges,so \n");
+t1=t2-(T1-T2); // F
+printf("\t t1 is : %.0f F \n",t1);
+R=((T1-T2)/(t2-t1));
+printf("\t R is : %.0f \n",R);
+S=((t2-t1)/(T1-t1));
+printf("\t S is : %.2f \n",S);
+printf("\t FT is 0.925 \n"); // from fig 18
+printf("\t considering 0F approach \n");
+T1=300; //F
+T2=200; //F
+t2=T2-0; // formula for approach,f
+printf("\t t2 is : %.0f F \n",t2);
+printf("\t fluids are with equal ranges,so \n");
+t1=t2-(T1-T2); // F
+printf("\t t1 is : %.0f F \n",t1);
+R=((T1-T2)/(t2-t1));
+printf("\t R is : %.0f \n",R);
+S=((t2-t1)/(T1-t1));
+printf("\t S is : %.2f \n",S);
+printf("\t FT is 0.80 \n"); // from fig 18
+printf("\t considering 20F cross \n");
+T1=280; //F
+T2=180; //F
+t2=T2+20; // formula for approach,f
+printf("\t t2 is : %.0f F \n",t2);
+printf("\t fluids are with equal ranges,so \n");
+t1=t2-(T1-T2); // F
+printf("\t t1 is : %.0f F \n",t1);
+R=((T1-T2)/(t2-t1));
+printf("\t R is : %.0f \n",R);
+S=((t2-t1)/(T1-t1));
+printf("\t S is : %.3f \n",S);
+printf("\t FT is 0.64 \n"); // from fig 18
+//end
|