Here is a 1D transient example in cartesian coordiantes. The equation of heat is:
\frac{\partial^2 T}{\partial x^2} = \frac{1}{\alpha}\frac{\partial T}{\partial t}
The boundary conditions are:
<br />
\begin{equation}<br />
\begin{split}<br />
T(x,0) &= f(x) \\<br />
T(0,t) &= 0 \\<br />
T(L,t) &= 0<br />
\end{split}<br />
\end{equation}<br />
These are homogeneous boundary conditions, which are important. They will make life easier. Typically you can at the very least make one boundary condition homogeneous by imposing T* = T-T(0,t), etc.
The key to solving these problems is separation of variables. We write the solution to the problem as a combination of functions:
<br />
T(x,t) = \Psi(x)\cdot\Gamma(t) = \frac{\Psi''}{\Psi} = \frac{1}{\alpha}\frac{\Gamma'}{\Gamma} = \lambda^2<br />
Where we are homoegenous in the x direction. We separate the equation into two:
<br />
\begin{equation}<br />
\begin{split}<br />
{\Psi''} + \lambda^2\Psi = 0 \\<br />
{\Gamma'} + \alpha\lambda^2\Gamma = 0<br />
\end{split}<br />
\end{equation}<br />
The solution to these two equations are:
<br />
\begin{equation}<br />
\begin{split}<br />
\Psi &= A\sin\lambda x + B\cos \lambda x \\<br />
\Gamma &= C e^{-\alpha \lambda^2 t}<br />
\end{split}<br />
\end{equation}<br />
We impose our boundary conditions
<br />
\begin{equation}<br />
\begin{split}<br />
x&=0\rightarrow \Psi = B cos\lambda x = 0 \rightarrow B = 0 \\<br />
x &= L \rightarrow A\sin\lambda L = 0<br />
\end{split}<br />
\end{equation}<br />
We combine the solutions for:
<br />
T(x,t) = \sum_{n=1}^\infty A_n e^{-\alpha \lambda_n^2 t} \sin\lambda_n x<br />
Where
<br />
\lambda_n = \frac{n\pi}{L}\,\,\, n=1,2,3...<br />
Imposing the initial condition:
<br />
\begin{equation}<br />
\begin{split}<br />
&f(x) = T(x,0) \rightarrow f(x) = \sum_{n=1}^\infty A_n \sin\lambda_n x \\<br />
&A_n = \frac{2}{L} \int_0^L f(x) \sin\frac{n\pi}{L}x<br />
\end{split}<br />
\end{equation}<br />
Which makes the final solution:
<br />
T(x,t) = \frac{2}{L}\sum_{n=1}^\infty e^{-\alpha\left(\frac{n\pi}{L}\right)^2 t} \sin\frac{n\pi}{L}x \int_0^L f(x)\sin\frac{n\pi}{L}x\,dx<br />
This may look difficult because it is. It's very difficult. This is graduate level mathematics. The class Conduction is merely a coverup; a way to teach partial differential equations without scaring people to dropping the class.
Aside from that, this equation was homogeneous, and only 1D. Additional dimensions don't add too much difficulty, but imposing non-homoegenous boundary conditions really confuses things. I can post an example with non-homoegenous boundary conditions, but as said, I would draw your control volume such that you can just assume a semi-infinite solid. Use the error function.