|
[Sponsors] | |||||
SimpleFoam divergence because of rare outlet behaviour |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|
|
#1 |
|
New Member
Katrin
Join Date: Jul 2016
Posts: 18
Rep Power: 11 ![]() |
Dear all,
I set up a simple foam case, where I expect laminar behaviour (Re max. 30). However I don't reach a steady state solution because my outlet i showing rare behavior: I have inflow even though I gave an InletOutlet Velocity boundary condition there. Any thoughts as to where could be the error? Thanks in advance, highpressuretube PS: My U-file: Code:
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
inlet
{
type fixedValue;
value uniform (9.4314 0.000000 0.000000);
}
outlet
{
type inletOutlet;
inletValue uniform (7.79455 0. 0.);
value uniform (7.79455 0. 0.);
}
walls
{
type fixedValue;
value uniform (0. 0. 0.);
}
side1
{
type symmetryPlane;
}
side2
{
type symmetryPlane;
}
}
Code:
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField uniform 0;
boundaryField
{
inlet
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
}
walls
{
type zeroGradient;
}
side1
{
type symmetryPlane;
}
side2
{
type symmetryPlane;
}
}
|
|
|
|
|
|
|
|
|
#2 |
|
New Member
|
Hello,
If you don't need any inflow your inlet value should be (0 0 0). Try with that. Code:
outlet
{
type inletOutlet;
inletValue uniform (0 0 0); // (7.79455 0. 0.);
value uniform (7.79455 0. 0.);
}
Code:
inletOutlet This boundary condition provides a generic outflow condition, with specified inflow for the case of return flow -Sudheer |
|
|
|
|
|
|
|
|
#3 |
|
New Member
Katrin
Join Date: Jul 2016
Posts: 18
Rep Power: 11 ![]() |
It's been the mesh :-(. I assumed that it would be ok to have global and local coordinate system differently as I am used to from FE calculations. blockMesh told me otherwise. When local and global coordinate system is equal for all cells, the calculations shows no more abnormal behavious and also checkMesh does not continue to complain.
Sorry for bugging. |
|
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| simpleFoam: divergence after resuming a converged job | pbalz | OpenFOAM Running, Solving & CFD | 12 | September 20, 2016 02:15 |
| fluent divergence for no reason | sufjanst | FLUENT | 2 | March 23, 2016 17:08 |
| ATTENTION! Reliability problems in CFX 5.7 | Joseph | CFX | 14 | April 20, 2010 16:45 |
| VOF Outlet boundary condition in cfd - ace | JM | Main CFD Forum | 0 | December 15, 2006 09:07 |
| Impinging Jet. Outlet Boundary Condition | Vincent | Main CFD Forum | 0 | December 16, 2003 11:49 |