diff options
Diffstat (limited to '1052/CH32/EX32.8')
-rwxr-xr-x | 1052/CH32/EX32.8/328.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1052/CH32/EX32.8/328.sce b/1052/CH32/EX32.8/328.sce new file mode 100755 index 000000000..418971ff5 --- /dev/null +++ b/1052/CH32/EX32.8/328.sce @@ -0,0 +1,19 @@ +clc;
+//Example 32.8
+//page no 514
+printf("Example 32.8 page no 514\n\n");
+//a filter press is in operation
+//we have to determine the appraisal value of the press
+i=0.03375//intrest on fund
+n=9//time,year
+SFDF=i/((1+i)^n -1)//sinking fund depreciation factor
+P=60000//cost of filter press,$
+L=500//salvage value,$
+UAP= (P-L)*SFDF//uniform annual payment,$
+printf("\n uniform annual payment UAP=%f $",UAP);
+//in determing the appraisel value where the straight line method of depreciation is used
+// B = P -(P-L/n)x
+//where x refers to any time the present before the end of usable
+x=5//let for 5 year
+B5=P-((P-L)/n)*x//appraissl value for 5 year
+printf("\n apprasial value B=%f $",B5);
|