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

How to couple regions

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 5, 2012, 05:45
Default How to couple regions
  #1
New Member
 
Join Date: Oct 2012
Posts: 9
Rep Power: 13
Koga is on a distinguished road
I defined two regions, a tiny and a big one. Both meshed with tetrahedrons.

We assume that one region is hot and one region is cold. I want to simulate the heat transfer between these regions. For that I use the chtMultiRegionSimpleFoam solver.

Now I am trying to couple the two patches, which are on the same plane.
I did it the same way like they did it in the 'heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater' tutorial.
I changed the boundary type of the two connected patches from patch to mappedWall (and added sampleMode, offset and all other necessary settings) in 'constant/{regionname}/boundary'. Furthermore I changed the initial condition type from 'zeroGradient' to 'compressible::turbulentTemperatureCoupledBaffleMi xed' and all necessary settings.

If I try to simulate this case, I will get this error message:
'Did not find sample (29.90284 38.34374 49) on any processor of region Solid2'

Solid2 is the tiny region. It might be a problem with the defined offset, but I can't imagine why. The offset is always set to (0 0 0), because both connected patches are on the same plane. Am I wrong? Or is there another reason for this error?
Attached Images
File Type: jpg geometry.jpg (12.0 KB, 31 views)
Koga is offline   Reply With Quote

Old   November 7, 2012, 04:11
Default
  #2
New Member
 
Join Date: Oct 2012
Posts: 9
Rep Power: 13
Koga is on a distinguished road
I found a solution. The problem was that both connected patches must have the same size. So I created another patch on top of the big box that fits to the bottom patch of the tiny box. I used the following createPatchDict:

Code:
pointSync false;

patches
(
    {

        name test_patch;

        patchInfo
        {
            type patch;
        }

        set test_set;
    }
);
The faceSet 'test_set' is defined in my TopoSetDict:

Code:
actions
(
    {
        name    test;
        type    faceSet;
        action  new;
        source  boxToFace;
        sourceInfo
        {
            box (45 45 49.99) (55 55 50.01);
        }
    }
);
The definition of the faceSet is my next problem. For this simple geometry everything is fine. But I am working with a more complex geometry and the box-command doesn't fit for patches that have many curves.

Just imagine there is a very complex domain (but still tiny) instead of the tiny box. How can I get all the faces, that are connected with the bottom patch of the complex domain, from the top patch of the big box in this case?
Koga is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Splitting regions king_steve STAR-CCM+ 1 September 27, 2010 12:48
Couple error Yehia Siemens 3 January 25, 2007 03:58
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues michele OpenFOAM Meshing & Mesh Conversion 2 July 15, 2005 04:15
couple and spin index novice Siemens 6 July 8, 2004 03:31
couple problems leo Siemens 3 January 28, 2003 03:09


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