Sieder-Tate相関式
Theory and Physics
Overview
Professor! Today's topic is about the Sieder-Tate correlation, right? What is it?
It's an internal flow correlation corrected for the temperature dependence of viscosity. Used in heat exchanger design for high-viscosity fluids.
Wait, wait, correcting for the temperature dependence of viscosity means... can it also be used in cases like this?
Governing Equations
I see... The foundation for describing correlation equations seems simple at first glance, but it's actually very profound, isn't it?
Discretization Method
How do you actually solve this equation 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 a 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. high-order elements, full integration vs. reduced integration) is directly linked to the trade-off between solution accuracy and computational cost.
Matrix Solution Algorithms
What exactly are matrix solution algorithms?
We solve the simultaneous equations using 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 handle the Sieder-Tate correlation?
| Tool Name | Developer/Current | Main File Formats |
|---|---|---|
| Ansys Fluent | Ansys Inc. | .cas, .dat, .msh, .jou |
| Simcenter STAR-CCM+ | Siemens Digital Industries Software | .sim, .java, .csv |
| COMSOL Multiphysics | COMSOL AB | .mph |
| Ansys Mechanical (formerly ANSYS Structural) | Ansys Inc. | .cdb, .rst, .db, .ans, .mac |
Vendor History and Product Integration Background
Is the origin of each software quite dramatic?
Ansys Fluent
Next is about Ansys Fluent. What's the content?
Developed by Fluent Inc. Acquired by Ansys in 2006. A general-purpose CFD solver based on unstructured grids.
Current affiliation: Ansys Inc.
Simcenter STAR-CCM+
Next is about Simcenter STAR. What's the content?
Developed by CD-adapco. Acquired by Siemens in 2016 and integrated into the Simcenter brand. Polyhedral mesh is a feature.
Current affiliation: Siemens Digital Industries Software
After hearing this, I finally understand why development is so important!
COMSOL Multiphysics
Please tell me about "COMSOL Multiphysics"!
Founded in Sweden in 1986. Started as FEMLAB with MATLAB integration, later renamed COMSOL. Strong in multiphysics.
Current affiliation: COMSOL AB
Wow, the story of development is super interesting! Please 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. |
| CGNS | .cgns | CFD Data | CFD General Notation System. Standard exchange format for CFD results. |
| VTK | .vtk/.vtu | Visualization | Visualization Toolkit format. Used by ParaView, etc. |
When converting models between different solvers, attention is needed regarding the correspondence of element types, compatibility of material models, and differences in the representation of loads and boundary conditions. This is especially true for high-order elements or special elements (cohe...
Related Topics
なった
詳しく
報告