diff options
Diffstat (limited to '3526/CH5/EX5.7')
-rw-r--r-- | 3526/CH5/EX5.7/Ex5_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3526/CH5/EX5.7/Ex5_7.sce b/3526/CH5/EX5.7/Ex5_7.sce new file mode 100644 index 000000000..84926d0f1 --- /dev/null +++ b/3526/CH5/EX5.7/Ex5_7.sce @@ -0,0 +1,13 @@ +//Example 5.6
+//page 155
+clc
+T=[1173 1273 1373 1473]
+//in K
+
+
+//for loop t
+
+for i=1:1:4
+t(i)=0.0861/exp(-16558/T(i))
+end
+disp(t,"The combination temp in second is")
|