diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /680/CH9/EX9.07/9_07.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '680/CH9/EX9.07/9_07.sce')
-rwxr-xr-x | 680/CH9/EX9.07/9_07.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/680/CH9/EX9.07/9_07.sce b/680/CH9/EX9.07/9_07.sce new file mode 100755 index 000000000..63a349d5a --- /dev/null +++ b/680/CH9/EX9.07/9_07.sce @@ -0,0 +1,13 @@ +//Problem 9.07:
+
+//initializing the variables:
+
+//calculation:
+//Since enthalpy is a point function, it is reasonable to assume that the temperature effects are additive. Therefore, the temperature increases are:
+//Scenario 1: DT = DT1.5 - DT0.0
+DT1 = 10 - 0
+//Scenario 2: DT = DT3.0-DT1.5
+DT2 = 15 - 10
+
+printf("\n\nResult\n\n")
+printf("\n the discharge temperature increase for scenario 1 is %.0f degC and for scenario 2 is %.0f degC",DT1,DT2)
|