summaryrefslogtreecommitdiff
path: root/1052/CH32/EX32.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1052/CH32/EX32.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1052/CH32/EX32.9')
-rwxr-xr-x1052/CH32/EX32.9/329.sce15
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);
+