| 1 | \documentclass{article} |
|---|
| 2 | \usepackage{fullpage} |
|---|
| 3 | \begin{document} |
|---|
| 4 | \begin{enumerate} |
|---|
| 5 | \item Cast-a-Box |
|---|
| 6 | |
|---|
| 7 | The {\tt castabox} software required for this problem simulates transient |
|---|
| 8 | three-dimensional heat conduction with phase change and complex boundary |
|---|
| 9 | conditions in a right regular hexahedron using finite differences on a uniform |
|---|
| 10 | grid. You will use {\tt castabox} to modify a casting design such that the |
|---|
| 11 | last place to freeze is not the inside, but the top surface, preventing the |
|---|
| 12 | formation of a large shrinkage cavity in the ``casting''. |
|---|
| 13 | |
|---|
| 14 | Note that by ignoring fluid flow and convective heat transport, and not |
|---|
| 15 | actually modeling the change in geometry due to shrinkage, this program |
|---|
| 16 | enormously simplifies actual casting processes and is not likely to be terribly |
|---|
| 17 | accurate. But it does illustrate the principle in a simple, fast parallel C |
|---|
| 18 | program which is easy to read and modify if you are interested in doing so. |
|---|
| 19 | |
|---|
| 20 | \begin{enumerate} |
|---|
| 21 | \item Run {\tt castabox} with its default geometry and boundary conditions, and |
|---|
| 22 | capture (and submit) a couple of temperature plots and their associated |
|---|
| 23 | times, particularly one when the top surface is just fully frozen. (You may |
|---|
| 24 | find the program {\tt xv} useful for grabbing window snapshots.) Document |
|---|
| 25 | the temperatures represented by each contour surface. |
|---|
| 26 | |
|---|
| 27 | \item If the top surface freezes with liquid trapped beneath it (as you should |
|---|
| 28 | find under the default conditions), solidification shrinkage will lead to the |
|---|
| 29 | formation of a {\em shrinkage cavity}. (Ice, silicon, and certain other |
|---|
| 30 | materials have the opposite problem: expansion during solidification of |
|---|
| 31 | trapped liquid can fracture the casting.) |
|---|
| 32 | |
|---|
| 33 | Propose a design change which will produce a fully-solid box casting of the |
|---|
| 34 | same geometry and material ({\em i.e.} same properties). Show with a {\tt |
|---|
| 35 | castabox} simulation that your design change is likely to work, by again |
|---|
| 36 | capturing a couple of temperature plots, particularly when the top surface is |
|---|
| 37 | just fully frozen. |
|---|
| 38 | \end{enumerate} |
|---|
| 39 | \end{enumerate} |
|---|
| 40 | \end{document} |
|---|