diff options
Diffstat (limited to '1052/CH32/EX32.9/329.sce')
-rwxr-xr-x | 1052/CH32/EX32.9/329.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1052/CH32/EX32.9/329.sce b/1052/CH32/EX32.9/329.sce new file mode 100755 index 000000000..20fd6ef45 --- /dev/null +++ b/1052/CH32/EX32.9/329.sce @@ -0,0 +1,15 @@ +clc;
+//Example 32.9
+//page no 516
+printf("Example 32.9 page no 516\n\n");
+//we have to determine the annulized cost of a new processing plant of enviromental control
+//input data
+CC=150000//capital cost,$
+I=.07//interst
+n=5//time,year
+CRF=(I*(1+I)^n)/((1+I)^5-1)//capital recovery factor CRF
+IC=CRF*CC//installation cost,$
+OC=15000//operation cost,$
+AC=IC + OC//annulized cost
+printf("\n annulized cost AC=%f $",AC);
+
|