Question: Write a Python program to calculate the performance of the drying system: Performance = Electric Energy / Water Evaporated Calculate the average, the variance and
Write a Python program to calculate the performance of the drying system:
Performance = Electric Energy / Water Evaporated
Calculate the average, the variance and the standard deviation of the daily performance values.
Follow the specifications:
Use functions for each of the tasks. main() function should reflect calls to functions.
Use a GUI using the graphics.py library to interact with the user.
Use tkinter and tkinter.filedialog to open an input csv file with measurements.
Calculate the performance based on the performance equation.
Place a picture in the GUI at a proper location.
Write the input data, performance values, statistical measures to the GUI and to an output file.
Handle day, energy, and water using lists.

Thursday Friday Saturday Sunday Monday Tuesday Wednesday Thursday Friday \begin{tabular}{|l|r|r|r|r|rrrrrr} \hline Electric Energy & 897 & 987 & 1125 & 1087 & 1000 & 874 & 1085 & 999 & 1100 \\ \hline Water Evaporated & 9.6 & 6.2 & 8.5 & 7.5 & 7 & 5 & 7.1 & 6.9 & 8.5 \end{tabular}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
