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

Mesquite - Adaptive mesh refinement / coarsening?

Register Blogs Community New Posts Updated Threads Search

Like Tree16Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 2, 2013, 14:28
Default
  #61
Member
 
Pablo Caron
Join Date: Nov 2009
Location: Buenos Aires, Argentina
Posts: 75
Rep Power: 16
pcaron is on a distinguished road
Sandeep,

thank you for your quick reply. I modified the standard interDyMFoam from OF1.6-ext adding a field called alpha1Clone in the createFields.H and the following lines in the main file.

Code:
        mesh.update();

        alpha1Clone = alpha1; // <- Added
        alpha1Clone.write();  // <- Added

        if (mesh.changing())
You can download the pictures here. The fields are not exactly the same. You will see the difference at times 0.019 and 0.020.

Your comments let me a bit concerned. A few questions arise
1) Is the remapping step of discontinuos fields an issue due to interFoam or the field itself?
2) May I help you to improve the mapping of discontinuos fields?
3) Due to the geometries I have to discretize I can not use orthogonal meshes. Do you know a way to improve interFoam?

Regards

Pablo
pcaron is offline   Reply With Quote

Old   May 8, 2013, 15:23
Default
  #62
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Pablo,

1. The issue with remapping is not due to interFoam, but the field itself - discontinuous fields need to be handled carefully. Improper remapping of VOF fields can lead to mass gain / loss.
2. You can surely help, but it's not altogether trivial - you'll need to locally reconstruct the interface in the area prior to re-meshing, map geometrically with some intersection calculations, and re-assign to the new re-meshed cells. You can alternatively scale up/down in some intelligent way as a form of local repair.
3. I'm probably not the best person to consult on VOF methods, but I do believe that a PLIC approach would go a long way in alleviating the non-orthogonal issues (I think).
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   September 13, 2013, 17:50
Default SixDOFFoam in paralell
  #63
New Member
 
Esteban
Join Date: Aug 2012
Posts: 1
Rep Power: 0
estebanbriones is on a distinguished road
Dear Sandeep:

I am using OpenFoam 1.6-ext with your dynamicTopoFvMesh, using the solver sixDOFFoam. Thanks you very much for all that great job!

I run many cases of sedimentation of spheres, without problems, and get very good solutions, with one processor.
But i have a problem with more processors (2,3,4,5...), running the case in paralell. The solution have a good convergence at the begining, but the solution start to oscillate after a remeshing, and break the simulation.

I tryed many modifications of my case, for many days, but i can't find the problem.
I actually think that maybe it's a problem of the code. Do you use sixDOFFoam in paralell today?
can you explain me how i have to use paralell in sixDOFFoam?

I need to run simulation in paralell, because today with one processor the simulation takes too much time for the basic cases, and i need to simulate more complex cases right now.

Thank you in advance,
estebanbriones is offline   Reply With Quote

Old   November 13, 2013, 06:06
Default Problem maybe with conservative mapping?. OF1.6-ext crashing
  #64
Senior Member
 
joegi
Join Date: Nov 2009
Location: genoa
Posts: 102
Rep Power: 16
joegi.geo is on a distinguished road
Hi,

I am having an issue that it seems related to a problem previously reported by olivier_au_chili.

Basically, after updating my system to opensuse 12.2 many apps stop working, included OF-1.6-ext. I am using gcc 4.7.1, I updated OF-1.6-ext and dynamicTopoFvMesh to the latest release and I am using mesquite 2.1.2.

So far I haven't run an actual simulation, I am just using moveDynamicMesh. My problem is that OF is crashing after running a few iterations, this is a partial output using debug 1:


Edge Swapping complete.
Topo modifier time: 0.016324 s
Bisections :: Total: 2, Surface: 0
Collapses :: Total: 0, Surface: 0
Swaps :: Total: 8, Surface: 1
*** Mapping is being skipped ***
Mapping time: 2e-05 s

=================
Mesh reOrdering
=================
Mesh Info [n]:
Points: 1838
Edges: 11154
Faces: 17911
Cells: 8594
Internal Edges: 8985
Internal Faces: 16465
=================
Mesh Info [n+1]:
Points: 1840
Edges: 11168
Faces: 17935
Cells: 8606
Internal Edges: 8999
Internal Faces: 16489
=================
Checking index ranges...Done.
Checking face-cell connectivity...Done.
Checking for unused points...Done.
Checking edge-face connectivity...Done.
Checking point-edge connectivity...Done.
Checking edge-points connectivity...Done.
Checking cell-point connectivity...Done.
ReOrdering points...Done.
ReOrdering cells...Done.
ReOrdering faces...Done.
ReOrdering edges...Done.
Reordering time: 0.051737 s
void dynamicTopoFvMesh::mapFields(const mapPolyMesh&): Mapping fv fields.

Segmentation fault



I managed to track down the problem to:

MapGeometricFields<scalar,fvsPatchField,topoMapper ,surfaceMesh>
(fieldMapper);


If I comment out this line moveDynamicMesh works fine.
Any idea what could be the problem?

I dont fell quite comfortable commenting this line as if I understood well, it is related to conservative mapping.


Thanks for your help

jg
joegi.geo is offline   Reply With Quote

Old   November 13, 2013, 10:02
Default
  #65
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Can you post a simple test-case that fails? I'd like to take a look.
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   November 13, 2013, 10:07
Default
  #66
Senior Member
 
joegi
Join Date: Nov 2009
Location: genoa
Posts: 102
Rep Power: 16
joegi.geo is on a distinguished road
Hi,

Well basically all of them. But you can try circCylinder3d, on my system it crash when time = 7.

Let me add that to compile I am using the option -fpermissive with gcc-4.7.1.


jg
joegi.geo is offline   Reply With Quote

Old   November 13, 2013, 21:22
Default
  #67
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Could you try with the Port-2.2.x branch of the github repository? My 1.6-ext installation is kind of a mess at the moment. I ran the circCylinder3d case with OpenFOAM-2.2.x and it seemed to work okay.
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   November 14, 2013, 04:14
Default
  #68
Senior Member
 
joegi
Join Date: Nov 2009
Location: genoa
Posts: 102
Rep Power: 16
joegi.geo is on a distinguished road
Hi,

Well that is the next point in my to do list. I was looking to solve first the problem with 1.6-ext version as I am doing some developing in there.

In anycase, with version 2.2.X I am having problems as well. Basically everything started after I upgraded my system to opensuse 12.2. I am using gcc 4.7.1, mesquite 2.2.0 and following your installation instructions. Everything compiles fine, but when I use moveDynamicsMesh with circCylinder3d tut (or any of my previous cases), I am getting this error


--> FOAM FATAL IO ERROR:
Unknown patchField type angularOscillatingDisplacement for patch type wall

Valid patchField types are :

18
(
calculated
codedFixedValue
cyclic
cyclicAMI
cyclicSlip
empty
fixedNormalSlip
fixedValue
nonuniformTransformCyclic
processor
processorCyclic
slip
symmetryPlane
timeVaryingUniformFixedValue
uniformFixedValue
value
wedge
zeroGradient
)

file: /home/joegi/OpenFOAM/joegi-2.2.x/my_runs/circCylinder3d/constant/dynamicMeshDict.mesquiteOptions.fixedValuePatches. topWall from line 93 to line 101.

From function PointPatchField<Type>::New(const pointPatch&, const Field<Type>&, const dictionary&)
in file /home/joegi/OpenFOAM/OpenFOAM-2.2.x/src/OpenFOAM/lnInclude/pointPatchFieldNew.C at line 144.

FOAM exiting



Any clue?
Btw, All libraries exist.

This is telling me that moveDynamicMesh is not finding the motion libraries. Those libraries are compiled with dynamicTopoFvMesh? are they different from the ones in OF22x?. Because if I add libs ("libfvMotionSolvers.so"); to controlDict the error disappear, but basically nothing happens.

In anycase let me troubleshoot this issue, maybe there is something odd on my installation.


jg
joegi.geo is offline   Reply With Quote

Old   November 14, 2013, 08:01
Default
  #69
Senior Member
 
joegi
Join Date: Nov 2009
Location: genoa
Posts: 102
Rep Power: 16
joegi.geo is on a distinguished road
Hi Sandeep,

Ok I erased my previous OF2 installation, installed a few updates and recompiled everything again and now it seems that it is working. The only observation is that I need to add

libs ("libfvMotionSolvers.so")

To the controlDict dictionary.

Btw, I am still interested in fixing the problem with OF16-ext.


Regards,

jg
joegi.geo is offline   Reply With Quote

Old   November 14, 2013, 09:52
Default
  #70
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
I'll take a look at my 1.6-ext installation and see if I can figure out what's wrong. Will keep you posted.
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   December 1, 2013, 20:14
Default
  #71
New Member
 
olivier Skurtys
Join Date: Aug 2012
Location: Santiago, Chile
Posts: 23
Rep Power: 13
olivier_au_chili is on a distinguished road
@ joegi.geo
Hi Jeogi.geo:

Have you a problem with dynamicTopoFvMesh (last version) when you run it in mpi?

I found that there is a problem in dynamicTopoFvMeshCoupled.C initFieldTransfers
Code:
// Subset and send surfaceFields to stream
        cInfo.send<surfaceScalarField>(names[5], types[5], stream[pI]);
>

You can see my previous post:
www.cfd-online.com/Forums/openfoam-solving/111926-questions-dynamictopofvmesh-3.html

Regards,

Olivier
olivier_au_chili is offline   Reply With Quote

Old   January 3, 2014, 12:22
Default
  #72
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Hello folks - I recently pushed a few bug-fixes to the github repository. Could you check now and tell me if the issue is now rectified?

Thanks
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   January 3, 2014, 13:03
Default
  #73
New Member
 
olivier Skurtys
Join Date: Aug 2012
Location: Santiago, Chile
Posts: 23
Rep Power: 13
olivier_au_chili is on a distinguished road
Dear Sandeep

ok very good news, thank you very much, I followed your work since many days, I test it this weekend,


Regards,

Olivier
olivier_au_chili is offline   Reply With Quote

Old   January 3, 2014, 15:26
Default
  #74
New Member
 
olivier Skurtys
Join Date: Aug 2012
Location: Santiago, Chile
Posts: 23
Rep Power: 13
olivier_au_chili is on a distinguished road
Dear Sandeep:

I carried out a quick test:

in the file dynamicTopoFvMesh.C
in the dynamicTopoFvMesh::resetMesh()you forget to remove the function

initFieldTransfers
(
fieldTypes,
fieldNames,
sendBuffer,
recvBuffer
);

Regards,

Olivier
olivier_au_chili is offline   Reply With Quote

Old   January 3, 2014, 15:36
Default
  #75
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Not sure I follow. That function is required.
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   January 3, 2014, 20:49
Default
  #76
New Member
 
olivier Skurtys
Join Date: Aug 2012
Location: Santiago, Chile
Posts: 23
Rep Power: 13
olivier_au_chili is on a distinguished road
Dear Sandeep:

Oh sorry, I am stupid, I made a mistake:

Code:
void dynamicTopoFvMesh::initFieldTransfers() : Initializing subMesh field transfers.
void polyMesh::clearGeom() : clearing geometric data
Deleting object leastSquaresVectors
Deleting object mesquiteMotionSolver
Deleting object mesquiteMotionSolver
void polyMesh::clearAddressing() : clearing topology
[0] [1] 

[0] [1] 
[1] --> FOAM FATAL IO ERROR: 
[1] 
[1] 
[1] file: unknown
[1] 
FOAM parallel run exiting
[1] 

[0] --> FOAM FATAL IO ERROR: 
[0] 
[0] 
[0] file: unknown
[0] 
FOAM parallel run exiting
[0] 
--------------------------------------------------------------------------
MPI_ABORT was invoked on rank 1 in communicator MPI_COMM_WORLD 
with errorcode 1.

NOTE: invoking MPI_ABORT causes Open MPI to kill all MPI processes.
You may or may not see output from other processes, depending on
exactly when Open MPI kills them.
Regards,

Olivier
olivier_au_chili is offline   Reply With Quote

Old   January 9, 2014, 18:54
Default
  #77
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Alright - I took another look at this, and figured out the problem. I've pushed a fix, so it should work now.
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue is offline   Reply With Quote

Old   January 10, 2014, 07:20
Default
  #78
New Member
 
olivier Skurtys
Join Date: Aug 2012
Location: Santiago, Chile
Posts: 23
Rep Power: 13
olivier_au_chili is on a distinguished road
Dear Sandeep:

Ok thank you, I will test today,

REgards,

Olivier
olivier_au_chili is offline   Reply With Quote

Old   January 14, 2014, 10:19
Default
  #79
Senior Member
 
joegi
Join Date: Nov 2009
Location: genoa
Posts: 102
Rep Power: 16
joegi.geo is on a distinguished road
Hi Sandeep,

I wonder what were the modifications you introduced?.
I just updated my installation and I am running a first case and it seems that it is a way much slower, it is taking a lot time for computing the edge-bisection/collapse, before it was a way much faster.

Regards,

Joel
joegi.geo is offline   Reply With Quote

Old   January 14, 2014, 10:46
Default
  #80
Senior Member
 
Sandeep Menon
Join Date: Mar 2009
Location: Amherst, MA
Posts: 403
Rep Power: 25
deepsterblue will become famous soon enough
Joel,

You would need to quantify that - slower in what way? You might want to check if you got the length-scales right.
__________________
Sandeep Menon
University of Massachusetts Amherst
https://github.com/smenon
deepsterblue 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
[snappyHexMesh] No layers in a small gap bobburnquist OpenFOAM Meshing & Mesh Conversion 6 August 26, 2015 09:38
[snappyHexMesh] snappyHexMesh refinement regions ignored guitarbren OpenFOAM Meshing & Mesh Conversion 2 April 9, 2013 03:59
[snappyHexMesh] non-smooth mesh Svensson OpenFOAM Meshing & Mesh Conversion 11 January 18, 2012 09:13
fluent add additional zones for the mesh file SSL FLUENT 2 January 26, 2008 11:55
basic of mesh refinement arya CFX 4 June 19, 2007 12:21


All times are GMT -4. The time now is 23:34.