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.
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started