跳至主要內容

Homework 5

AI悦创原创1v1python 1v1数据结构一对一留学生辅导留学生作业辅导northeastern一对一辅导东北大学Python辅导东北大学Python一对一辅导大约 7 分钟...约 2088 字

Homework 5

Water Consumption

This week you'll write a program that performs some analysis on actual, real-life data! My friend Brad moved into a new house — one that has a device that monitors how much electricity is used. Once a minute, it records the power usage on each of the electrical circuits in the house. The water comes from a well, and it dawned on him that he could calculate how much water the house is using by looking at the power data.

He knows that the pump produces two gallons of water per minute when it's running. So in order to calculate how much water is used, we can look through the power usage data for the pump, and count the number of data points (minutes) where the pump is drawing power. The value of each line describes the number of watts of power drawn by the pump during the corresponding minute, and the pump should be expected to draw about 1000 watts a minute when it's running.

Once we know how many minutes it ran, we can multiply by the flow rate to get the number of gallons produced. (For example, if I see that the pump ran for five minutes, we know that it produced 10 gallons, since it produces two gallons per minute.)

You'll write a program called pump_analysis.py to read data from a file and do some analysis on it, including determining water use.

Analyzing the data

First, download the dataLinks to an external site.open in new window. Unzip that file to find two text files. pump_data.txt contains minute-by-minute power consumption data for the well pump from January and February of this year. The short_data.txt file contains just one hour's worth of data from the pump. (The short file is small enough that you could calculate the expected results by hand and use that to verify that your program is working correctly.)

To keep things simple, place both of these text files directly into the directory where you save your Python script for this assignment.

Look at the content of the data files in a text editor so you understand how the data is structured.

Reading data from a file

Opening a file and reading it line by line is easy in Python. Read the docs about open() here: https://docs.python.org/3/library/functions.html#openLinks to an external site.open in new window

The name of the file will be passed in by the user after a prompt. The open() function takes a string argument representing the name of the file, and returns a file object. The file object will behave as a generator for lines of the file. This means that you can use a plain for loop to loop through the lines of the file. Each line is a string ending with a new line character, so you will need to strip off the new line character and convert the result to an int in order to use it as a number. The .rstrip() string method may be helpful here.

Making sense of the values

This is real data, from a real pump. The pump's specifications do in fact state that it should use 1000 watts per minute of energy when it is running, and clearly it should use no energy when it is not running. Probably the first thing you will notice about the data is that minutes are not cleanly reported as either 1000 or 0! Some of the values even show up as -1! So what's the deal?

The deal is that the pump, the electricity monitor, and perhaps other elements of the electrical system, like most things in the real world, are not perfect devices. The pump does not use precise amounts of energy, the monitor does not sense electricity to perfect precision, and other aspects of the system may also contribute small amounts of noise. Furthermore, the pump does not start and stop instantaneously, so the process of its starting and stopping gets expressed over more than just a single minute's measurement.

However, we don't know any more about the system than the information presented. We know that the fully-active pump should draw 1000 watts in a minute, and we know the data we've collected. The best we can do with the ramp-up or ramp-down times is to assume that the noisy values will approximately cancel each other out. Think about the simplest way to do this in a way that allows us to generalize and get a good approximation of the number of minutes the pump is operating.

To be clear, there are more than ways too do this. I opted for what I thought was the simplest, and if you do it the way I did it, your results should match mine. However, if you take a different approach, you may get slightly different values. Make sure that you can justify and explain your choices on this.

Creating the report

Your program should use the data it reads to compile a report of pump operation and power use. It should do the following:

  • Report the duration of the data file in both hours and days
  • Report both the total number of gallons produced and the average daily consumption.
  • Report the total power used by the pump. As shown below, I'm reporting this is both Watt minutes and the more traditional Kilowatt Hours (kWh). You can divide the Watt minutes value by 1000 to turn the Watts into Kilowatts, and then divide by 60 to turn minutes into hours. (Power costs about 11 cents per kWh here, so once you've got kWh you could also estimate the cost of the electricity used.)
  • Print how long it took to consume a certain quantity of water. In my output below I'm reporting results for 5 gallons and for 100 gallons.
  • Round to 3 decimal places where necessary.

Here is some sample output from a run of my program. The name of the file is input by the user.

$ python pump_analysis.py
Please enter the file name: short_data.txt
Data covers a total of 1.0 hours
(That's 0.042 days)

Pump was running for 7 minutes, producing 14 gallons
(That's 336.0 gallons per day)

Pump required a total of 6795 watt minutes of power
That's 0.113 kWh

It took 11 minutes of data to reach 5 gallons.
It took -1 minutes of data to reach 100 gallons.

The last line, saying it took '-1' minutes, means that in this sample, 100 gallons is never reached.

Handling exceptions

What happens if the user enters the name of a file that does not correspond to a file in the directory of the program? At present, the program will crash, reporting FileNotFoundError: [Errno 2] No such file or directory: 'fakefile.txt'.

A user inputting an invalid file name is a good example of what's called an exception in programming. An exception is a possible state of the system that is not a part of the designed behavior of the system. Exception handling requires anticipating possible things that could go wrong and making sure that they are dealt with by the program in a useful and clear way.

Python's exception handling is done using try: and except: blocks. Python tries to execute the code in the try: block. If it executes successfully, then the code proceeds to execute as expected. If the code in the try: block raises an exception, then the code in the except: block will be executed instead. Read the documentation for exception handling here: https://docs.python.org/3/tutorial/errors.html#handling-exceptionsLinks to an external site.open in new window

Use try: and except: blocks to modify your code so that the user receives a more user-friendly message if they enter an invalid file name, like this:

$ python pump_analysis.py
Please enter the file name: no_such_file.txt
Unable to open no_such_file.txt

After printing the message to the screen, you can call return which will end the execution of the function (this assumes that your code is in a main function, as it should be!)

Extra credit

If you finish the code above and are anxious for more, consider taking on this extra challenge.

The pump's water softener (which removes minerals from the water) needs to operate for a sustained period in order to "recharge". So in order to analyze the behavior of the pump's water softener, it is useful to know when there have been particularly long stretches of continuous operation of the pump.

The goal for the extra credit challenge is to look through the data file for times when the pump runs for at least 120 minutes in a row, and report when the long run started and how long it lasted. This information is of interest for answering several questions about the water softener, but all you need to do for the extra credit is find those long runs and report them. Add the necessary code to your program to print output something like this when run on pump_data.txt (it shouldn't get anything on short_data.txt):

Information on water softener recharges:
179 minute run started at 9799
173 minute run started at 29944
228 minute run started at 48978
244 minute run started at 69133

This assignment is worth 100 points without the extra credit, and you can receive 15 points, maximum, for your efforts on the extra credit problem.

Style Guide

Please familiarize yourself with the PEP 8 Python Style guideLinks to an external site.open in new window. These are excellent tips for writing clear Python code and you should follow this style.

Before you submit your assignment, go through the checklist below and make sure your code conforms to the style guide.

  • No unused variables or commented-out code is left in the class
  • Your code is appropriately commented
  • All numbers have been replaced with constants (i.e. no "magic numbers").
  • Proper capitalization of any names used: snake_case for ordinary variables and functions, CapWords for class names, and ALL_CAPS for constants
  • Use white space to separate different sections of your code (follow the PEP8 linter's guidance)

Using the Pycodestyle linter

In addition to the checklist above, use the Pycodestyle linter in your editor to make sure you're catching small style issues of spacing and consistency. The graders will use the Pycodestyle linter as a guide for enforcing PEP8 style, which should simplify the process for them and you. It's easy to track down issues with the linter and you should make sure that the linter report is completely error and warning free before submitting.

Submission

Push all code to GitHub. Submit pump_analysis.py to Canvas.

公众号:AI悦创【二维码】

AI悦创·编程一对一

AI悦创·推出辅导班啦,包括「Python 语言辅导班、C++ 辅导班、java 辅导班、算法/数据结构辅导班、少儿编程、pygame 游戏开发、Web、Linux」,全部都是一对一教学:一对一辅导 + 一对一答疑 + 布置作业 + 项目实践等。当然,还有线下线上摄影课程、Photoshop、Premiere 一对一教学、QQ、微信在线,随时响应!微信:Jiabcdefh

C++ 信息奥赛题解,长期更新!长期招收一对一中小学信息奥赛集训,莆田、厦门地区有机会线下上门,其他地区线上。微信:Jiabcdefh

方法一:QQopen in new window

方法二:微信:Jiabcdefh

上次编辑于:
贡献者: AndersonHJB
你认为这篇文章怎么样?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
评论
  • 按正序
  • 按倒序
  • 按热度