Thermoelectric cooling (Peltier device)
Theory and Physics
Overview
Teacher! Today's topic is thermoelectric cooling (Peltier element), right? What is it like?
Electronic cooling utilizing the Seebeck effect and Peltier effect. Applied to sensor cooling and small constant temperature chambers.
Governing Equations
Wait, wait, so thermoelectric cooling means it can be used in cases like this too?
Discretization Method
How do you actually solve these equations on a computer?
We use spatial discretization by the Finite Element Method (FEM). We assemble the element stiffness matrix and construct the global stiffness equation.
We perform transformation to the weak form (variational form) and use formulation by the Galerkin method using test functions and shape functions. The choice of element type (low-order elements vs. higher-order elements, full integration vs. reduced integration) directly affects the trade-off between solution accuracy and computational cost.
Matrix Solution Algorithms
What exactly do you mean by matrix solution algorithms?
Solve the simultaneous equations by direct methods (LU decomposition, Cholesky decomposition) or iterative methods (CG method, GMRES method). For large-scale problems, preconditioned iterative methods are effective.
| Solver | Classification | Memory Usage | Applicable Scale |
|---|---|---|---|
| LU decomposition | Direct method | O(n²) | Small to medium scale |
| Cholesky decomposition | Direct method (symmetric positive definite) | O(n²) | Small to medium scale |
| PCG method | Iterative method | O(n) | Large scale |
| GMRES method | Iterative method | O(n·m) | Large scale / Non-symmetric |
| AMG preconditioner | Preprocessing | O(n) | Very large scale |
So, if you cut corners in the finite element method part, you'll pay for it later. I'll keep that in mind!
Implementation in Commercial Tools
So, what software can be used to do thermoelectric cooling (Peltier element)?
| Tool Name | Developer/Current | Main File Format |
|---|---|---|
| Ansys Mechanical (formerly ANSYS Structural) | Ansys Inc. | .cdb, .rst, .db, .ans, .mac |
| COMSOL Multiphysics | COMSOL AB | .mph |
| Ansys Fluent | Ansys Inc. | .cas, .dat, .msh, .jou |
| Simcenter STAR-CCM+ | Siemens Digital Industries Software | .sim, .java, .csv |
Vendor Lineage and Product Integration History
Does each software have a dramatic origin story?
Ansys Mechanical (formerly ANSYS Structural)
Tell me about "Ansys Mechanical"!
Developed in 1970 by Swanson Analysis Systems Inc. (SASI). APDL (Ansys Parametric Design Language) based.
Current affiliation: Ansys Inc.
COMSOL Multiphysics
Tell me about "COMSOL Multiphysics"!
Founded in 1986 in Sweden. Started as FEMLAB with MATLAB integration, later renamed COMSOL. Strong in multiphysics.
Current affiliation: COMSOL AB
After hearing this, I finally understand why development is so important!
Ansys Fluent
Next is the story about Ansys Fluent. What's it about?
Developed by Fluent Inc. Acquired by Ansys in 2006. A general-purpose CFD solver based on unstructured grids.
Current affiliation: Ansys Inc.
Wow, the story of development is super interesting! Tell me more.
File Formats and Interoperability
Are there any points to note when transferring data between different software?
| Format | Extension | Type | Overview |
|---|---|---|---|
| STEP | .stp/.step | Neutral CAD | 3D CAD data exchange format compliant with ISO 10303. Supports geometry + PMI. |
| IGES | .igs/.iges | Neutral CAD | Early CAD data exchange standard. Has issues with surface data compatibility. Transition to STEP is progressing. |
| VTK | .vtk/.vtu | Visualization | Visualization Toolkit format. Used by ParaView, etc. |
When converting models between different solvers, attention must be paid to the correspondence of element types, compatibility of material models, and differences in the representation of loads and boundary conditions. Particularly, higher-order elements and special elements (cohesive elements, user-defined elements, etc.) often cannot be directly converted between solvers.
I see... Formats seem simple at first glance, but they're actually quite profound, aren't they?
Practical Considerations
Related Topics
なった
詳しく
報告