I am on my way to bed, but I will give you a hint for setting up the problem.
This is a fairly typical application for the 4D heat equation (x,y,z,t) with non-zero boundary conditions.
For brevity, I will use the following shorthand for a partial derivative: partial of function u with respect to x is ux.
Let us assume a cartesian coordinate system with the corner of the cube at the origin, and the cube extending into octant I.
Assume there exists some (possibly non-trivial) function T(x,y,z,t) for all points and times inside the cube.
The sides of the cube are .05m on a side (cube root of 125 cm3)
T must solve the partial differential equation
Tt=a2(Txx+Tyy+Tzz) where a is the thermal diffusivity of the material (you will have to calculate this from thermal conductivity, density, and specific heat provided (it is thermal conductivity / (specific heat capacity * density)))
Now, we know that the boundary of the cube is held at 90C, aka T(x,y,z,t) = 90 for all (x,y,z) on the surface of the cube, and for all t>0
We also know that T(x,y,z,0) = 20C for all (x,y,z) inside the cube as provided by our initial conditions
Applying a Fourier series method to the problem we see that
T(x,y,z,t) = 90C + ΣiΣjΣkai,j,kexp(-a2ci,j,kt)sin(iπx/.05)sin(jπy/.05)sin(kπz/.05)
with ci,j,k=(π/.05)2(i2+j2+k2)
and ai,j,k=-(90-20)(2/π)3(1/ijk)(1-(-1)i)(1-(-1)j)(1-(-1)k)
Once you carry through all the numerical aspects, you can simply plug in .025 for x, y, and z and set the RHS of the equation to 80C, and pick your method of choice for solving / approximating t.
-------
The following document provides a reasonable overview of heat and wave equations solved for various simple geometries in R2 and R3.
http://ocw.mit.edu/courses/mathematics/18-303-linear-partial-differential-equations-fall-2006/lecture-notes/pde3d.pdf
Given that your major is food engineering, most things are not as convenient as the cube example and require approximate solutions rather than analytic ones.
You may want to, for less contrived problems, look to find a good software package for performing finite element methods. If you are unfamiliar with the ideas of numerical methods (finite difference / element / volume as well as others) this paper will perhaps provide a bit of background on the idea http://www.f.kth.se/~jjalap/numme/FDheat.pdf
and this powerpoint for something shorter: http://auc.cz/summerschool2013/slides_NoveHrady_2013.pdf
for just a quick fix, sans the theory, the following matlab package should suffice http://www.mathworks.com/matlabcentral/fileexchange/40096-numerical-solutions-of-heat-equation though you will have to adapt it to your geometries
If that does not get you unstuck, I can help you tomorrow :)
Brad M.
11/10/13