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

compressibleInterDyMFoam on OF1.6

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 8, 2009, 10:03
Question compressibleInterDyMFoam on OF1.6
  #1
New Member
 
Luca D'Auria
Join Date: Sep 2009
Posts: 1
Rep Power: 0
lucadauria is on a distinguished road
Has anybody experience with compressibleInterDyMFoam on OF1.6? I was not able to find any specific documentation.

I tried using the dynamicMeshDict in the tutorial damBreakWithObstacle for interDyMFoam but it does not work with compressibleInterDyMFoam.

Thanks
lucadauria is offline   Reply With Quote

Old   February 22, 2010, 12:25
Default
  #2
New Member
 
Scott Miller
Join Date: Nov 2009
Posts: 15
Rep Power: 16
scttmllr is on a distinguished road
Luca: Any luck with compressibleInterDyMFoam? I am having the same problems you described.
scttmllr is offline   Reply With Quote

Old   February 24, 2010, 20:18
Default compressibleInterDyMFoam -- dynamicRefineFvMesh
  #3
New Member
 
Scott Miller
Join Date: Nov 2009
Posts: 15
Rep Power: 16
scttmllr is on a distinguished road
I have found 2 issues that caused problems when trying to use AMR with compressibleInterDyMFoam.

1. There are 3 constructors in createFields.H that need to be modified so that they get updated as the mesh refines: alpha2, rho1, rho2. Example:

//Old:
//volScalarField alpha2("alpha2", scalar(1) - alpha1);

//New:
volScalarField alpha2
(
IOobject
(
"alpha2",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::NO_WRITE
),
scalar(1) - alpha1
);

2. You cannot use the GAMG solver for p and pFinal. However, as we are not solving a pressure Poisson equation, it should suffice to use a smoothSolver, etc, as multi-grid is more suited to elliptic PDEs. Using GAMG for the pcorr equation is fine here, since we are using an elliptic correction to the flux to ensure continuity when we update the mesh.

Hope this helps.
scttmllr 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
Forces in OF15 richard OpenFOAM Running, Solving & CFD 180 July 9, 2018 10:54
rhoSimpleFoam OF1.6 sheintz OpenFOAM 4 September 3, 2009 07:41


All times are GMT -4. The time now is 08:26.