CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

turbulentTemperatureCoupledBaffleMixed - interface between like materials

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 15, 2018, 05:15
Default turbulentTemperatureCoupledBaffleMixed - interface between like materials
  #1
Member
 
Adam
Join Date: Nov 2018
Posts: 36
Rep Power: 7
Adam_K is on a distinguished road
Can the compressible::turbulentTemperatureCoupledBaffleMix ed boundary condition between two regions handle no resistance between two regions of the same thermal conductivity? I am using the chtMultiRegionFoam solver on OpenFoam 5.

I want to simulate heat flow through a composite slab that is comprised of cylinders (regularly spaced). The analytical solution for a slab of a given thermal diffusivity is known (slab initially at 300K and then for t>0s, the temperature on the two walls is 310 K). So I thought that would be a good limiting case to test. When the inclusions have the same thermal diffusivity as the matrix and there is no interfacial thermal resistance, the response should be the same as a homogeneous slab.

Using four different meshes, my results are surprising as the temperature inside a fiber at the center of the slab is lower than the matrix. With no thermal resistance at the interface and the same conductivities, this doesn't make sense. (figure)

When I include a thermal resistance, the results make more sense. For high thermal resistance (green), the fibre temperature (dashed line) lags behind that of the matrix (solid line). As the resistance decreases, the fibre temperature better follows the matrix temperature, a logical explanation. (figure)

I spoke with a colleague and we're thinking that the zero resistance interface between to regions of the same material may be a poor limiting case to check as it's not really their destined application. Is this a known issue with Open Foam 5?
Adam_K is offline   Reply With Quote

Old   November 15, 2018, 09:36
Default
  #2
Senior Member
 
Peter Baskovich
Join Date: Jul 2014
Posts: 127
Rep Power: 11
pete20r2 is on a distinguished road
Try with many more loops per timestep, that BC tries to match the T value and flux and the patch from 2 regions explicitly. This is quiet slow.
My point is you may not be converged.
pete20r2 is offline   Reply With Quote

Old   November 15, 2018, 22:48
Default
  #3
Member
 
Adam
Join Date: Nov 2018
Posts: 36
Rep Power: 7
Adam_K is on a distinguished road
Quote:
Originally Posted by pete20r2 View Post
Try with many more loops per timestep, that BC tries to match the T value and flux and the patch from 2 regions explicitly. This is quiet slow.
My point is you may not be converged.
Normally, this would require changing the PIMPLE algorithm options or the tolerance, correct?

Code:
PIMPLE
{
    nNonOrthogonalCorrectors 0;
    nCorrectors          0;
    nOuterCorrectors    0; 
}
It seems like the PIMPLE options are more useful in fluid flow cases where the momentum/pressure equations are updated. As I am only working with solids, then I should just use much lower tolerances.

Code:
solvers
{
    h
    {
        solver           PCG;
        preconditioner   DIC;
        tolerance        1e-7;
        relTol           0;
    }

    hFinal
    {
        $h;
        tolerance        1e-7;
        relTol           0;
    }
}
Adam_K is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
sliding mesh problem in CFX Saima CFX 46 September 11, 2021 07:38
Radiation in semi-transparent media with surface-to-surface model? mpeppels CFX 11 August 22, 2019 07:30
Error - Solar absorber - Solar Thermal Radiation MichaelK CFX 12 September 1, 2016 05:15
Question about heat transfer coefficient setting for CFX Anna Tian CFX 1 June 16, 2013 06:28
Error finding variable "THERMX" sunilpatil CFX 8 April 26, 2013 07:00


All times are GMT -4. The time now is 19:30.