|
Laboratory 10: Cup of tea
Prerequisits: curve fitting, data analysis, inverting function (root find)
Preparation
In this lab, we will be using the curve_fit
function from scipy, which is located at:
scipy.optimize.curve_fit
Background
Enjoying a good cup of tea or coffee is an important part of our
academic activities. Here, we study how a hot cup of tea or coffee
cools down once the liquid has been poured into the cup.
A dedicated research unit in a little known university in central Java,
Indonesia, has conducted temperature measurements for a cup of tea
and made the data available:
The specialised equipment takes one temperature reading (in degree
Celsius) every 10 seconds, although the measurements are somewhat
noisy. Unfortunately, something went wrong in the beginning of the
measurement, so the data for the first minute are missing.
Research questions
The questions we aim to answer are:
- what was the initial temperature of the tea in the cup at time t=0s?
- how quickly does the tea cool down? In particular: after what time is it safe to drink it (we assume that 60C are a safe temperature).
- what will be the final temperature of the tea if we wait infinitely long (presumably this will be the room temperature in this particular lab in Java).
Strategy
To make progress with this task, we define some variable names and have to make a few simplifying assumptions.
We assume that initial temperature, Ti, is the temperature with which the tea has been poured into the cup.
If we wait infinitely long, the final temperature will reach the value of the ambient temperature, Ta, which will be the environmental temperature in the lab where the measurements have been taken.
We further assume that the cup has no significant heat capacity to keep the problem simple.
We assume that the cooling process follows a particular model. In particular we assume that the rate with which the temperature T changes as a function of time t is proportional to the difference between the current temperature T(t) and the temperature of the environment Ta, i.e.:
We can solve this differential equation analytically and obtain a model equation:
where c is the time constant for the cooling process (which is
expressed in seconds). The larger
c, the longer it takes for the hot drink to cool down. Over a
period of c seconds, the drink's temperature will decrease by
roughly 2/3.
Training
Create a file training10.py which you populate with the following functions:
A function model(t, Ti, Ta, c) which implements equation (1).
Examples
In [ ]: model(0, 100, 0, 10)
Out[ ]: 100.0
In [ ]: model(10, 100, 0, 10)
Out[ ]: 36.787944117144235
In [ ]: import math
In [ ]: math.exp(-1) * 100
Out[ ]: 36.787944117144235
In [ ]: model(10, 100, 100, 10)
Out[ ]: 100.0
In [ ]: model(1000000, 100, 25, 10)
Out[ ]: 25.0
The function model(t, Ti, Ta, c) should return a single value if
t is a floating point number, and an array if t is an
array. For example:
In [ ]: model(0, 100, 20, 500)
Out[ ]: 100.0
In [ ]: from numpy import linspace
In [ ]: ts = linspace(0, 3600, 4)
In [ ]: ts
Out[ ]: array([ 0., 1200., 2400., 3600.])
In [ ]: model(ts, 100, 20, 500)
Out[ ]: array([ 100. , 27.25743626, 20.65837976, 20.05972686])
You achieve this behaviour by using the exponential function from
numpy (i.e. numpy.exp rather than the exponential function
from the math module) when you implement equation (1) in the
model function.
Submit your file training10.py with subject line training10 to
get your code tested and obtain some feedback.
Assessed part
Create a file lab10.py and include a copy of the model()
function definition from the training part (Do not use from training10 import model -- although this is an elegant solution in general, it will not work when we test your submission automatically).
Then add the following functions to lab10.py:
read2coldata(filename) which opens a text file with two columns of data. The columns have to be separated by white space. The function should return a tuple of two numpy-arrays where the first contains all the data from the first column in the file, and the second all the data in the second column.
Example: for a data file testdata.txt which contains
1.5 4
8 5
16 6
17 6.2
we expect this behaviour:
In [ ]: read2coldata('testdata.txt')
Out[ ]: (array([ 1.5, 8. , 16. , 17. ]), array([ 4. , 5. , 6. , 6.2]))
In [ ]: a, b = read2coldata('testdata.txt')
In [ ]: a
Out[ ]: array([ 1.5, 8. , 16. , 17. ])
In [ ]: b
Out[ ]: array([ 4. , 5. , 6. , 6.2])
A function extract_parameters(ts, Ts) which expects a numpy
array ts with time values and a numpy array Ts of the same
length as ts with corresponding temperature values. The function
should estimate and return a tuple of the three model parameters
Ti, Ta and c (in this order) by fitting the model
function as in equation (1) to the data ts and Ts.
Hints:
The curve_fit function may need some initial guesses (through the
optional function parameter p0) for the model parameters to
be able to find a good fit.
You are strongly encouraged to plot your fitted curve together with
the raw data to check that the fit is reasonable.
You can use a function like this:
def plot(ts, Ts, Ti, Ta, c):
"""Input Parameters:
ts : Data for time (ts)
(numpy array)
Ts : data for temperature (Ts)
(numpy arrays)
Ti : model parameter Ti for Initial Temperature
(number)
Ta : model parameter Ta for Ambient Temperature
(number)
c : model parameter c for the time constant
(number)
This function will create plot that shows the model fit together
with the data.
Function returns None.
"""
pylab.plot(ts, Ts, 'o', label='data')
fTs = model(ts, Ti, Ta, c)
pylab.plot(ts, fTs, label='fitted')
pylab.legend()
pylab.savefig('testcompare.pdf') # or pylab.show()
A function sixty_degree_time(Ti, Ta, c) which expects the model
paramaters Ti (initial temperature), Ta (ambient
temperature) and c the cooling rate time constant. The function
should return an estimate of the number of seconds after which the
temperature of the drink has cooled down to 60 degree Celsius (60
degree is a temperature that is generally considered low enough not
to damage tissue).
You have at least two different possible ways of obtaining this number of
seconds for a given set of model parameters (Ti, Ta, c). One
involves a root finding algorithm. You can assume that Ti > 60 degree Celsius,
and that Ti > Ta.
To test your functions, you can put them together like
this in the ipython or in a separate file:
from lab10 import read2coldata, extract_parameters, sixty_degree_time
ts, Ts = read2coldata('time_temp.txt')
Ti, Ta, c = extract_parameters(ts, Ts)
print("Model parameters are Ti={} C, Tf={}C,".format(Ti, Ta))
print(" time constant={}s".format(c))
waittime = sixty_degree_time(Ti, Ta, c)
print("The drink reaches 60 degrees after {:.2f} seconds = {:.2f} minutes"
.format(waittime, waittime / 60.))
If you want to include the testing in your lab10.py file, you need to put it inside the if __name__ == "___main__" statement, such as
if __name__ == "__main__":
ts, Ts = read2coldata('time_temp.txt')
Ti, Ta, c = extract_parameters(ts, Ts)
print("Model parameters are Ti={} C, Tf={}C,".format(Ti, Ta))
print(" time constant={}s".format(c))
waittime = sixty_degree_time(Ti, Ta, c)
print("The drink reaches 60 degrees after {:.2f} seconds = {:.2f} minutes"
.format(waittime, waittime / 60.))
Written like this, the test will only be executed if you execute
lab10.py as the main file (for example by pressing F5 when editing
lab10.py in Spyder), but not if the file is imported from elsewhere (which is what the testing system does).
Can you now answer the three research questions, i.e. (No need to submit these answers.)
- what was the initial temperature of the tea in the cup at time t=0s?
- how quickly does the tea cool down? In particular: after what time is it safe to drink it (we assume that 60C are a safe temperature).
- what will be the final temperature of the tea if we wait infinitely long (presumably this will be the room temperature in this particular lab in Java).
When you have completed your work, check and test the code carefully (including
documentation strings). Submit your file by email with subject line lab 10.
|