|
[Sponsors] |
conjugateHeatFoam: Problems adding 3rd region |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 7, 2010, 10:48 |
conjugateHeatFoam: Problems adding 3rd region
|
#1 |
Senior Member
Ben K
Join Date: Feb 2010
Location: Ottawa, Canada
Posts: 140
Rep Power: 19 |
Has anybody tried to modify the conjugateHeatFoam solver for 3 regions? My case will compile but at runtime I get a "floating point" error as soon as I try to add my third equation to the solver.
For testing purposes my problem is very basic, just a simple laplacian in 1D and I can solve this using the conjugateHeatFoam solver with 2 regions but I can't split this up into 3 regions. The part of my code that doesn't seem to be working is when I add the third region: Code:
coupledFvScalarMatrix C1Eqns(3); // Add left equation C1Eqns.set ( 0, new fvScalarMatrix ( fvm::laplacian(D1Left, c1Left) ) ); // Add middle equation C1Eqns.set ( 1, new fvScalarMatrix ( fvm::laplacian(D1Middle, c1Middle) ) ); // Add right equation Info << "Check: Before third equation\n" << endl; C1Eqns.set ( 2, new fvScalarMatrix ( fvm::laplacian(D1Right, c1Right) ) ); Info << "Check: After third equation\n" << endl; C1Eqns.solve(); Code:
Create mesh for time = 0 Reading field c1 (left) Reading field D1 (left) Reading field c1 (middle) Reading field D1 (middle) Reading field c1 (right) Reading field D1 (right) Starting time loop Check: Before third equation Floating exception |
|
April 7, 2010, 11:59 |
|
#2 |
Senior Member
Ben K
Join Date: Feb 2010
Location: Ottawa, Canada
Posts: 140
Rep Power: 19 |
I was able to fix this. It was a problem with my mesh.
|
|
April 21, 2010, 06:57 |
|
#3 |
Member
David
Join Date: Dec 2009
Location: Spain
Posts: 62
Rep Power: 16 |
Hi Benk
What solver is that? I´m working with OpenFOAM-1.6 and I don´t have it. The only solver for conjugate heat transfer I have is chtMultiRegionFoam. And, is it valid to work with liquids? Thankyou very much David |
|
April 21, 2010, 08:59 |
|
#4 |
Senior Member
Ben K
Join Date: Feb 2010
Location: Ottawa, Canada
Posts: 140
Rep Power: 19 |
It's called the conjugateHeatFoam solver which is only in the -dev releases (I'm using 1.5-dev). Technologically, I think it's better than chtMultiRegionFoam since it puts all coupled equations into a single matrix (therefore 1 matrix inversion instead of, say, 3). It's also a bit easier to setup than chtMultiRegionFoam.
More info on it can be found here: http://www.cfd-online.com/Forums/ope...-openfoam.html As far as it being able to handle liquids, you just have to add the appropriate PDEs. |
|
April 21, 2010, 13:24 |
|
#5 |
Member
David
Join Date: Dec 2009
Location: Spain
Posts: 62
Rep Power: 16 |
Hi Benk
Thankyou very much for your answer. Sorry but I don´t have any knowledge of OpenFOAM programming. Is possible to run that solver in the 1.6 versión, or I have to install de -dev version? And when you say "add de PDEs" you mean that I have to rewrite the solver? Thankyou very much again David |
|
April 21, 2010, 13:46 |
|
#6 | ||
Senior Member
Ben K
Join Date: Feb 2010
Location: Ottawa, Canada
Posts: 140
Rep Power: 19 |
Quote:
Quote:
As an asside, this is where I wish OpenFoam would be a bit more clear. I'm using the conjugateHeatFoam "solver" for things that are totally unrelated to heat transport, so why is it that the application mode and the solver have the same name? This solver should really be called something like "multi region coupled matrix solver" and the application that it was orginally intended for was conjugateHeatFoam. But only in very rare cases will there be a model that fits exactly your needs without you having to modify the equations. |
|||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Commercial meshers] Using starToFoam | clo | OpenFOAM Meshing & Mesh Conversion | 33 | September 26, 2012 05:04 |
How to add 3rd region to chtMultiRegionFoam | benk | OpenFOAM | 1 | April 3, 2010 18:22 |
[Other] StarToFoam error | Kart | OpenFOAM Meshing & Mesh Conversion | 1 | February 4, 2010 05:38 |
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues | michele | OpenFOAM Meshing & Mesh Conversion | 2 | July 15, 2005 05:15 |
[Gmsh] Import gmsh msh to Foam | adorean | OpenFOAM Meshing & Mesh Conversion | 24 | April 27, 2005 09:19 |