CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   PatchToPatchInterpolationfaceInterpolate (https://www.cfd-online.com/Forums/openfoam-solving/59868-patchtopatchinterpolationfaceinterpolate.html)

mcdonalds March 13, 2013 22:45

2 Attachment(s)
Quote:

Originally Posted by bigphil (Post 413547)
Benjamin,

I downloaded waterFoam2.tar.gz and looked at the '.C' file,
there is a lot of code commented out and it is not clear what exactly you are trying to do and where your problem is.
If you tidy up the solver and add descriptive comments pointing out exactly what code is not doing what you expect, then I may be able to help.

Best regards,
Philip

Hi Phil,

Thank you so much!

So I've cleaned up the file. I've been thinking about my problem in a physics type of way and please bear with me as I try to explain it.

At the most basic level, I would like one field to solve throughout the entire domain while the other field will have a boundary condition in the exact middle of the domain. So essentially, I would like to create two middle boundary conditions on my blockMeshDict file, then "merge" the two middle boundary condition patches for one of my fields.

I was thinking that patchtopatchinterpolation may not be able to do this. I think patchtopatch will take values of one patch and send it to another, but in my case file, if the values of said patch is zero or zeroGradient, all it will do is just send zero or zeroGradient to the other patch, and I'd be back at square one.

Since I'd like to merge them, then I would take the internal cells adjacent to the length of my patch, solve for those cells, send those values to the other patch, solve again, and then continue solving for the rest of the cells. Perhaps, in that way the two cells will "merge" as if there was no boundary there at all.

I've tried groovyBC (that was very close but the physics came out wrong), I've tried mappedPatch (only maps values from one patch to another only at the initial conditions not during the time steps), and I've tried cyclic boundaries (which work great but then I cannot set boundary conditions for those patches that I've made cyclic to each other).

In essence, I may be going about this incorrectly with patchtopatchinterpolation.

Let me know what you think and if my thinking process is accurate.

Sincerely,

Benjamin

P.S. Perhaps I would need to make multiple meshes: Two local meshes and a global mesh. My global mesh will encompass the entire domain while the two local meshes will occupy half of the global mesh. I would assign a field to each mesh, and then I would need to map meshes to each other. The mapping I would have a problem with. Perhaps this is my solution though?

mcdonalds March 13, 2013 23:28

2 Attachment(s)
Quote:

Originally Posted by bigphil (Post 413547)
Benjamin,

I downloaded waterFoam2.tar.gz and looked at the '.C' file,
there is a lot of code commented out and it is not clear what exactly you are trying to do and where your problem is.
If you tidy up the solver and add descriptive comments pointing out exactly what code is not doing what you expect, then I may be able to help.

Best regards,
Philip

Hi Phil,

Thank you so much!

So I've cleaned up the file. I've been thinking about my problem in a physics type of way and please bear with me as I try to explain it.

At the most basic level, I would like one field to solve throughout the entire domain while the other field will have a boundary condition in the exact middle of the domain. So essentially, I would like to create two middle boundary conditions on my blockMeshDict file, then "merge" the two middle boundary condition patches for one of my fields.

I was thinking that patchtopatchinterpolation may not be able to do this. I think patchtopatch will take values of one patch and send it to another, but in my case file, if the values of said patch is zero or zeroGradient, all it will do is just send zero or zeroGradient to the other patch, and I'd be back at square one.

Since I'd like to merge them, then I would take the internal cells adjacent to the length of my patch, solve for those cells, send those values to the other patch, solve again, and then continue solving for the rest of the cells. Perhaps, in that way the two cells will "merge" as if there was no boundary there at all.

I've tried groovyBC (that was very close but the physics came out wrong), I've tried mappedPatch (only maps values from one patch to another only at the initial conditions not during the time steps), and I've tried cyclic boundaries (which work great but then I cannot set boundary conditions for those patches that I've made cyclic to each other).

In essence, I may be going about this incorrectly with patchtopatchinterpolation.

Let me know what you think and if my thinking process is accurate.

Sincerely,

Benjamin

P.S. Perhaps I would need to make multiple meshes: Two local meshes and a global mesh. My global mesh will encompass the entire domain while the two local meshes will occupy half of the global mesh. I would assign a field to each mesh, and then I would need to map meshes to each other. The mapping I would have a problem with. Perhaps this is my solution though?

bigphil March 14, 2013 04:18

Benjamin,

I am not sure that patchToPatchInterpolation is what you want.
Have you looked at solvers like chtMultiRegionFoam, or if you search for domain coupling in OpenFOAM (e.g. like methods in this presentation).

I had a look at your code and it is not clear exactly what you are trying to do but you are not changing the boundary conditions - you are making a copy of the H20 boundary values "scalarField shawmut = H2O.boundaryField()[topID];" and then you make and set a new field called "interpole". Both these fields just get delete at the end of the scope. You haven't actually updated the boundary conditions - the updating method will depend on what type of boundary they are i.e. fixedValue, fixedGradient, etc..

Philip

Flor April 12, 2013 11:37

Dear Foamers, I did not want to make up a new topic in this thread, so I started a new one. But I think you might be the right people to ask, so may I suggest my new thread to you? :-) Would be great if you could give me a hint!

http://www.cfd-online.com/Forums/ope...tml#post420165

Best regards
Florian

styleworker October 2, 2013 10:53

1 Attachment(s)
Quote:

Originally Posted by bigphil (Post 310385)
Hi,


I was able to get my code with patchToPatchInterpolation to work in parallel.

The way I did it was:

In the case,
for the patches of interest define faceZones, using the setSet utility
Code:

faceSet <patchName>FaceZone new patchToFace <patchName>
quit

then the command
Code:

setsToZones -noFlipMap
Then in your decomposeParDict, add the line:
Code:

globalFaceZones ( <faceZoneName1> <faceZoneName2>)
then when you decompose your case the full faceZone meshes will be included on each processor.

In your code, you can create a zoneToZoneInterpolation
Code:

label faceZone1ID = cp_.mesh().faceZones().findZoneID(facezoneName1);
label faceZone2ID = mesh.faceZones().findZoneID(faceZoneName2);

zoneToZoneInterpolation faceZoneInterpolator
        (
        mesh.faceZones()[faceZone1ID](), // from                                                                                         
        mesh.faceZones()[FaceZone2ID](), // to zone                                                                                       
        );

then you can use this interpolator just like a patchToPatch interpolator and it works in parallel.

However be careful when you have a moving mesh as the faceZone meshes might not be moved correctly, you might have to correct them and keep them consistent across the processors.


Hope it helps,
Philip

Actually, I'm facing the same problem as described by cosimobianchini in the first post.
I'm trying to include conjugate heat transfer in interDyMFoam. Running the solver on a single processor works quite fine, but as I decompose the mesh, results become unphysical (as you can see in the attached picture).

Currently, the interpolation is done via
Code:

    const polyPatch& ownPatch = patch().patch();
    const polyPatch& nbrPatch = coupleManager_.neighbourPatch().patch();

    patchToPatchInterpolation interpolator(nbrPatch, ownPatch);

After reading your post, I'v tried to adapt your solution:

Code:

    const polyPatch& ownPatch = patch().patch();
    const polyPatch& nbrPatch = coupleManager_.neighbourPatch().patch();

    //initiate solid and fluid meshes
    const fvMesh& meshSolid = patch().boundaryMesh().mesh();
    const fvMesh& meshFluid = coupleManager_.neighbourRegion();

    //get ID of facezone (facezone_names equivalent to patch_names)
    label faceZone1ID = meshSolid.faceZones().findZoneID(patch().name());
    label faceZone2ID = meshFluid.faceZones().findZoneID(coupleManager_.neighbourPatchName());

    zoneToZoneInterpolation interpolator
            (
            meshFluid.faceZones()[faceZone2ID](), // from
            meshSolid.faceZones()[faceZone1ID]() // to zone
            );

Unfortunately I'm getting some error messages during solver compilation.

Do you have any idea, how to solve the problem?

styleworker October 2, 2013 12:04

I've managed to compile the coupling part of the solver on OF-1.6ex. It seems there is a difference in "patchToPatchInterpolation" between OF-1.6ex and OF2.2.0.
After adding the code below to the patchToPatchInterpolation.H (OF-2.2.0), I was able to compile the solver without error messages.
Code:

    typedef PatchToPatchInterpolation
    <
        PrimitivePatch<face, List, const pointField&>,
        PrimitivePatch<face, List, const pointField&>
    >  zoneToZoneInterpolation;

Even the case runs, but unfortunately with the same unphysical results. At least the zoneToZoneInterpolations worked :)

styleworker October 2, 2013 14:27

1 Attachment(s)
I guess the coupling isn't the origin of the unphsysical behaviour, but the decomposition of the domain. I've assumed decomposePar devides the mesh in four equal domains. As you can see in the attached picture, it isn't the case.

So I think I have to decompose the mesh in a proper way.


All times are GMT -4. The time now is 18:47.