FEATool Multiphysics  v1.16.5
Finite Element Analysis Toolbox
Orthotropic Heat Conduction

This is an example of modeling anisotropic heat conduction in an orthotropic material where a heated solid bar suddenly is cooled by submerging it in a cool fluid. The material features different thermal conductivities in the x and y-directions which is accounted for by modifying the diffusion term in the heat transfer equation. Instead of solving the usual isotropic case

\[ \rho C_p\frac{\partial T}{\partial t} - k(\frac{\partial^2 T}{\partial x^2} + \frac{\partial^2 T}{\partial x^2}) = 0 \]

we will instead solve the following

\[ \rho C_p\frac{\partial T}{\partial t} - (k_x\frac{\partial^2 T}{\partial y^2} + k_y\frac{\partial^2 T}{\partial y^2}) = 0 \]

where \(k_x = 34.6147\) and \(k_y = 6.23687\ W/mK\) are the thermal conductivities in the different directions. Fully anisotropic cases can technically also be handled by introducting off-diagonal \(k_{x_i,x_j}\frac{\partial^2 T}{\partial x_i \partial x_j}\) diffusion terms.

The following material and simulation parameters are given; initial temperature \(T_0 = 260\ °C\), density \(\rho = 6407.4 \ kg/m^3\), heat capacity \(C_p = 37.688\ J/kgK\). Due to symmetry we only need to model a quarter domain of a 2D cross-section with dimensions 5.08 by 2.54 cm. Conductive heat flux boundary conditions are used on the external boundaries with a convection coefficient \(h = 1361.7\ W/m^2K\) and surrounding temperature \(T_{inf} = 37.7778\ °C\). The cooling process is simulated for 3 seconds after which the temperature is measured in the center core and corners, and compared to the reference values [1].

Tutorial

This section describes how to set up and solve the orthotropic heat conduction example with the FEATool graphical user interface (GUI).

The model is available as an automated tutorial by selecting Model Examples and Tutorials... > Heat Transfer > Orthotropic Heat Conduction from the File menu. Or alternatively, follow the step-by-step instructions below.

  1. To start a new model click the New Model toolbar button, or select New Model... from the File menu.
  2. Select the Heat Transfer physics mode from the Select Physics drop-down menu.

  3. Press OK to finish the physics mode selection.

Due to symmetry we only need to model a quarter of the domain, a 1 by 2 inch rectangle. Note that as FEATool does not specify a fixed unit system the dimensions are converted to SI units for convenience and to be consistent with the units used in the material parameters.

  1. Select Rectangle from the Geometry menu.
  2. Enter 2*2.54*1e-2 into the xmax edit field.
  3. Enter 1*2.54*1e-2 into the ymax edit field.

  4. Press OK to finish and close the dialog box.

  5. Switch to Grid mode by clicking on the corresponding Mode Toolbar button.
  6. Increase the grid density by pressing the Refine Toolbar button twice.

  7. Switch to Equation mode by clicking on the corresponding Mode Toolbar button.
  8. Enter 6407.4 into the Density edit field.
  9. Enter 37.688 into the Heat capacity edit field.
  10. Enter 260 into the Initial condition for T edit field.

To model the anisotropic diffusion coefficient edit the heat transfer equation and replace the original term k_ht*(Tx_x + Ty_y) with (34.6147*Tx_x + 6.23687*Ty_y).

  1. Press the edit button.
  2. Enter rho_ht*cp_ht*T' - (34.6147*Tx_x + 6.23687*Ty_y) + rho_ht*cp_ht*(u_ht*Tx_t + v_ht*Ty_t) = q_ht into the Equation for T edit field.

  3. Press OK to finish and close the equation editing dialog box.
  4. Then press OK to finish the equation and subdomain settings specification.

Boundary conditions are defined in Boundary Mode and describes how the model interacts with the external environment. Here the bottom and left sides are symmetry boundaries while the top and right are prescribed convective flux conditions.

  1. Switch to Boundary mode by clicking on the corresponding Mode Toolbar button.
  2. Select 1 and 4 in the Boundaries list box.
  3. Select Thermal insulation/symmetry from the Heat Transfer drop-down menu.
  4. Select 2 and 3 in the Boundaries list box.
  5. Select Heat flux from the Heat Transfer drop-down menu.
  6. Enter 1361.7 into the Heat transfer coefficient edit field.
  7. Enter 37.7778 into the Bulk temperature edit field.

  8. Press OK to finish the boundary condition specification.
  9. Switch to Solve mode by clicking on the corresponding Mode Toolbar button.
  10. Press the Settings Toolbar button.
  11. Select Time-Dependent from the Solution and solver type drop-down menu.
  12. Enter 3 into the Duration of time-dependent simulation (maximum time) edit field.

  13. Press the Solve button.
  14. Press the Plot Options Toolbar button.
  15. Select the Contour Plot check box.
  16. Enter 20 into the Number or specified vector of contour levels to plot edit field.
  17. Press OK to plot and visualize the selected postprocessing options.

To evaluate the accuracy of the solution the temperature can be evaluated in the points (0,0), (2,1), (2,0), and (0,1) inches and compared with reference temperature values \(T_{ref}\) = 237, 66.1, 137, and 94.4 degrees C respectively.

  1. Select Point/Line Evaluation... from the Post menu.
  2. Enter 0 0.0508 0.0508 0 into the Evaluation coordinates in x-direction edit field.
  3. Enter 0 0.0254 0 0.0254 into the Evaluation coordinates in y-direction edit field.
  4. Press the Apply button.

From the Evaluation Result field we can see that the computed temperature in the evaluation points is very close to the reference values.

  1. Press the Cancel button to close the dialog box.

The orthotropic heat conduction heat transfer model has now been completed and can be saved as a binary (.fea) model file, or exported as a programmable MATLAB m-script text file, or GUI script (.fes) file.

Reference

[1] P.J. Schneider, Conduction Heat Transfer, Addison-Wesley, 2nd Ed., Ex. 10-7, pp. 261, 1957.