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

InterTrackFoam error

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 25, 2007, 08:07
Default I'm trying to get interTrackFo
  #1
New Member
 
Kester Gunn
Join Date: Mar 2009
Posts: 10
Rep Power: 17
kester is on a distinguished road
I'm trying to get interTrackFoam to work. I am working on the hydrofoil example. When I try to open it in FoamX I get the following error:

Caught FoamXError exception in FoamXCaseServer::main(int argc, char **argv) :
FoamXError "getApplication::Invalid application class name 'interTrackFoam'."
In function "IPropertiesImpl"
in file "IPropertiesImpl.C" at line 910
Finishing FoamXCaseServer::main(int argc, char **argv)

so I tried running it in manually using:

makeFaMesh . hydrofoil

then

interTrackFoam . hydrofoil

and got the following error:

////////////////////////////////////////////////////
Starting time loop

Time = 0.005
Courant Number mean: 0.0890352 max: 0.437469


--> FOAM FATAL ERROR : not implemented for face decomposition

From function
void freeSurface::moveMeshPointsForOldFreeSurfDisplacem ent()
in file freeSurface.C at line 548.

FOAM aborting

Aborted (core dumped)
////////////////////////////////////////////////////

Anyone have any suggestions on how to fix it??

Kester
kester is offline   Reply With Quote

Old   April 25, 2007, 17:13
Default I have fixed this one - a bit
  #2
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,904
Rep Power: 33
hjasak will become famous soon enough
I have fixed this one - a bit of a legacy mess from when we didn't have all the point-to-point interpolation tools sorted out for the FEM mesh motion solver.

You have several options
- move to cell decomposition mesh motion (this involves recompiling OpenFOAM, but all will work)
- wait for me to finish off OpenFOAM-1.4 with all the new features
- just take the files as they are and live dangerously (works for me)

Zeljko, there is a bit of a mess in the freeSurface library that should be sorted out: const and non-const access and lazy evaluation are not all in place as they should be. Please remind me when the time is rught and we'll go through the details.

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   April 26, 2007, 07:06
Default Thanks, having spent some time
  #3
New Member
 
Kester Gunn
Join Date: Mar 2009
Posts: 10
Rep Power: 17
kester is on a distinguished road
Thanks, having spent some time looking through the code, I came to the first conclusion. To do this presumably I need to "#define CELL_DECOMP" somewhere before I recompile (the apropriate code seems to be removed in several C and H files by #ifdef statements). Where should I put this line?

Kester
kester is offline   Reply With Quote

Old   June 20, 2007, 14:11
Default It looks like the place to #de
  #4
Member
 
David P. Schmidt
Join Date: Mar 2009
Posts: 71
Rep Power: 17
schmidt_d is on a distinguished road
It looks like the place to #define CELL_DECOMP is in the file .bashrc in the OpenFOAM1-3 directory (presuming you are using the bash shell). Switch which pair of decomposition flags are commented out, as shown below.


export WM_DECOMP_INC=-DCELL_DECOMP
export WM_DECOMP_LIBS=-lcellDecompFiniteElement
# export WM_DECOMP_INC=-DFACE_DECOMP
# export WM_DECOMP_LIBS=-lfaceDecompFiniteElement

Then you will have to recompile the applications, of course.

David
schmidt_d is offline   Reply With Quote

Old   November 3, 2007, 14:03
Default Hello FOAMers, trying inter
  #5
New Member
 
Radoslaw Pasiok
Join Date: Mar 2009
Location: Poznan, Poland
Posts: 6
Rep Power: 17
rpasiok is on a distinguished road
Hello FOAMers,

trying interTrackFoam on hydrofoil tutorial case I get segmentation fault after starting time loop:

//////////////////////////////////////////////

Exec : interTrackFoam . hydrofoil
Date : Nov 03 2007
Time : 12:26:13
Host : turbina
PID : 6822
Root : /home/pasiok/OpenFOAM/pasiok-1.4.1-dev/run/tutorials/interTrackFoam
Case : hydrofoil
Nprocs : 1
Create time

Create mesh, no clear-out for time = 0

Reading field p

Reading field U

Reading/calculating face flux field phi

Selecting motion solver: laplaceTetDecomposition
Selecting motion diffusivity: quadratic
Found free surface patch. ID: 2

Starting time loop

Time = 0.005
Courant Number mean: 0.0890352 max: 0.437469
Segmentation fault

//////////////////////////////////////////////

Initially I used binaries of development version from http://powerlab.fsb.hr/ped/kturbo/OpenFOAM/release/ dated on 31-10-2007.
Then moved from faceDecompFiniteElement to cellDecompFiniteElement and recompiled OF but it didn't help.
icoDyMFoam and surfactantFoam solvers run perfectly.

There was little change to do in dynamicMeshDict of the hydrofoil case: 'diffusion' -> 'diffusivity'.
Is there something else to change in the case that I missed ?
Is someone experiencing similar problem?

Does FSB OpenFOAM 1.4.1-dev differ from SVN sources at http://sourceforge.net/projects/openfoam-extend ?

Thank you for any suggestions!

Radoslaw Pasiok
rpasiok is offline   Reply With Quote

Old   November 4, 2007, 13:32
Default Sorry about that - completely
  #6
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,904
Rep Power: 33
hjasak will become famous soon enough
Sorry about that - completely my fault. I have checked in the change in the file:

OpenFOAM-1.4.1-dev/applications/solvers/surfaceTracking/freeSurface/freeSurface. C

For reference, the nf() for a patch now returns a tmp and not a reference and the file above was not updated for this change.

The source/binary packs at FSB Zagreb web site is simply a snapshot of the SVN code when I am particularly pleased with it :-) or when someone special needs a pre-compiled copy. For all practical purposes, they will be identical.

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   November 6, 2007, 06:00
Default Dr Hrvoje Jasak, thank you
  #7
New Member
 
Radoslaw Pasiok
Join Date: Mar 2009
Location: Poznan, Poland
Posts: 6
Rep Power: 17
rpasiok is on a distinguished road
Dr Hrvoje Jasak,

thank you for information. Updating sources and recompiling helped the solver to start hydrofoil case, however, I get floating point exception after a short time (please, see attached log file)
InterTrackFoam.log

Do you have any suggestions? Thank you in advance!

Radoslaw Pasiok
rpasiok is offline   Reply With Quote

Old   November 6, 2007, 14:11
Default I know you're not going to lik
  #8
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,904
Rep Power: 33
hjasak will become famous soon enough
I know you're not going to like me for this, but anyway... The issue is that in order to save on multiple mesh motion in a single time-step, we first move boundary only. The error you are seeing is because the boundary deforms a lot in the first time step if you force the issue as the initial condition is rubbish. You can therefore:

- run potentialFoam first and then start the free surface tracking simulation with mesh motion OR

- relax the convergence of mesh motion first time around. Edit |fixed{system/fvSolution} and under SIMPLE, do:

nTimeCorrectors 5;

Both works over here. I have used and checked in Solution B in the tutorial in SVN.

Thank you for debugging this for me (not really your job, I know...) and apologies for inconvenience. The code should be able to do its own tutorials at all times....

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   November 7, 2007, 14:58
Default Dr Jasak, it's getting bett
  #9
New Member
 
Radoslaw Pasiok
Join Date: Mar 2009
Location: Poznan, Poland
Posts: 6
Rep Power: 17
rpasiok is on a distinguished road
Dr Jasak,

it's getting better and better :-)
The solver runs fine with nTimeCorrectors = 5 until time step 0.45 and then floating exception occurs again.
Further reducing nTimeCorrectors to 0 lets the solver to work a bit longer. Below you can see the mesh before the exception.



How can we keep the solver running and get reliable results when free surface deforms rapidly? Thank you for your advice.

Radoslaw Pasiok
rpasiok is offline   Reply With Quote

Old   November 7, 2007, 15:54
Default One thing you should make sure
  #10
liu
Senior Member
 
Xiaofeng Liu
Join Date: Mar 2009
Location: State College, PA, USA
Posts: 118
Rep Power: 17
liu is on a distinguished road
One thing you should make sure is that the free surface wave is not breaking. Otherwise surface tracking is not valid.

One suggestion is to coarsen the mesh neear the surface.
__________________
Xiaofeng Liu, Ph.D., P.E.,
Assistant Professor
Department of Civil and Environmental Engineering
Penn State University
223B Sackett Building
University Park, PA 16802


Web: http://water.engr.psu.edu/liu/
liu is offline   Reply With Quote

Old   November 8, 2007, 03:55
Default I see it. It may simply be th
  #11
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,904
Rep Power: 33
hjasak will become famous soon enough
I see it. It may simply be the fact that we are now using face decomposition tet FEM solver, which didn't get enough testing. The cell decomposition solver works just fine, but switching between the two is not as easy as it should be (need to do something about it).

I have asked Zeljko (that is, dr. Tukovic, FSB Zagreb) to have a look and come back to me with some fixes - this stuff is originally his work anyway.

Watch this space, further updates to come.

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak 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
InterTrackFoam any information rajon OpenFOAM Running, Solving & CFD 30 January 1, 2016 17:27
Wall contact in interTrackFoam virginie_e OpenFOAM Running, Solving & CFD 2 November 8, 2011 12:52
SIMPLE loop in interTrackFoam virginie_e OpenFOAM Running, Solving & CFD 3 March 17, 2009 06:40
Pressure divergence with interTrackFoam virginie_e OpenFOAM Running, Solving & CFD 8 March 4, 2009 06:07
OF15dev Hydrofoil tutorial for interTrackFoam philippose OpenFOAM Bugs 7 February 22, 2009 16:22


All times are GMT -4. The time now is 13:14.