Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Jupyter notebook ENSP-338-Homeworks/ENSP-338-HW-04/HW-04.ipynb
Homework 4
This homework focuses on economic concepts discussed in the reading and in class:
Present Value
Finding the true cost of loan payments using Capital Recovery Factor
Conserved Cost of Energy
Calculating NPV
You invest 1000 USD in energy-efficient light bulbs today. Each year, these lights allow you to avoid 180 USD in energy costs. If these lights last 10 years, what is the net present value of the investment?
Draw out the cash flow diagram and include it below
Calculate the net present value with a discount rate of 0.05
Make a recommendation
These notes may be helpful.
hint: NPV = sum of each year's PV. Start with the cost at year 0, and end with the PV of energy savings at year 10
NPV Solution
Cash Flow Diagram below
The Present Value equation is,
Net Present Value is defined as the sum of payments for each time period. In this case, we sum the Present Value of the avoided energy cost for each year. Such that
Therefore, NPV is calulated using: or
: at year_0 (t = 0), the initial purchase makes PV_0 negative and equal to the investment. In the above equation, the initial investment is moved outside the sum
Here's the equation with the given values
In a code cell, the calulation can be written in expanded form or you can use the sum command. You should be typing this all out. Make the computer do most of the heavy lifting
Advanced Methods
Based on this last calculation; it can be seen that it would take more than six years to make the money back from this initial investment. From an economic standpoint, the recommendation would be to make the investment. Plus, as environmental studies students, this investment is exspecially enticing.
Capital Recovery Function
You are taking out a loan at 150K USD to pay for efficiency improvements for a large building. You have secured an 8-year loan at an interest rate of 4 percent.
What is the yearly payment for this loan?
Things to consider: CRF is used to convert the PV of a loan into the true cost of payments per period.
Show your calculation using the explicit formula for the CRF as well as by using the numpy library. This link may be helpful.
Cut and paste this to use the function:
CRF Solution
The Capital Recovery Funtion, where t is the number of payments, is defined as
Solve for the yearly payments by plugging in the given values and multiplying the calculated CRF by the Total Loan amount
The Calulation should look like this
Conserved Cost of Energy
A computer lab intends to replace several older workstations with newer more efficient computers.
Explain how you will determine the avoided energy cost per year for the lab. List the data you need and the method you will use in sufficient detail for someone to use it to make a calculation.
Explain how you will determine the annual investment cost. As above, provide enough detail so another student could easily construct a calculation.
Your answer should be a conceptual explination (make sure you're in a markdown cell)
Solution
Concept:
You will need the average power from both the existing and proposed workstations. The proposed workstations should have lower power consumption, to save energy. You will also need to know the hours per day or year that the workstations are used. The third piece is the number of workstations in the room.
The avoided energy is the product of: the hours per year of use, the difference in the powers of the workstations, and the number of computers.
Concept:
You need to know the number of workstations, and the cost of each, to determine the total cost to purchase the computers. To determine the annual cost, you must use the capital recovery function. To use the CRF, you also need to know the interest rate and the duration of the loan. Once you have all these, you can multiply the initial purchase cost by the CRF to get the annual cost.