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

Numerical instabilities due to temperature at inlet

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 18, 2013, 08:31
Default Numerical instabilities due to temperature at inlet
  #1
New Member
 
Join Date: Apr 2013
Posts: 7
Rep Power: 13
Matze7 is on a distinguished road
Hi Foamers,

I have a problem with my simulation case.
I want to simulate a flow through a cube with 1.5 m/s.
The temperature of the cube is 1373 K, the inflow should have 1573 K.

I use buoyantSimpleFoam and kEpsilon.

If I set the inlet-temp. to 1373 K everything works fine.

If i set the inlet.-temp. to 1573 K numerical instabilities at the inlet occure. The temperature in some areas rises quite high, respectively drops.

I have no idea why, I guess something in my BCs is wrong.

The BCs are:

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.2.0                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions      [0 2 -3 0 0 0 0];
internalField   uniform 1.505e-4;
boundaryField
{
    baseleft
    {
        type            compressible::epsilonWallFunction;
        value           uniform 1.505e-4;
    }
    baseright
    {
        type            compressible::epsilonWallFunction;
        value           uniform 1.505e-4;
    }
    sides
    {
        type            compressible::epsilonWallFunction;
        value           uniform 1.505e-4;
    }
    back
    {
        type            fixedValue;
        value           uniform 1.505e-4;
    }
    outlet
    {
        type            zeroGradient;
    }
}

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //dimensions      [0 2 -2 0 0 0 0];
internalField   uniform 2.383e-3;
boundaryField
{
    baseleft
     {
        type            compressible::kqRWallFunction;
        value           uniform 2.383e-3;
    }   
    baseright
     {
        type            compressible::kqRWallFunction;
        value           uniform 2.383e-3;
    }   
    sides
     {
        type            compressible::kqRWallFunction;
        value           uniform 2.383e-3;
    } 
    back
    {
       type            fixedValue;
        value           uniform 2.383e-3;
    }
    outlet
    {
        type            zeroGradient;
    }
}

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //dimensions      [ 1 -1 -2 0 0 0 0 ];
internalField   uniform 101325;
boundaryField
{
    baseleft
     {
        type            zeroGradient;
    }   
    baseright
     {
        type            zeroGradient;
    }   
    sides
     {
        type            zeroGradient;
    } 
    back
    {
        type            zeroGradient;
    }
    outlet
    {
        type            fixedValue;
        value           uniform 101325;
    }
}
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //dimensions      [ 1 -1 -2 0 0 0 0 ];
internalField   uniform 101325;
boundaryField
{
    baseleft
     {
        type            zeroGradient;
    }   
    baseright
     {
        type            zeroGradient;
    }   
    sides
     {
        type            zeroGradient;
    } 
    back
    {
        type            zeroGradient;
    }
    outlet
    {
        type            fixedValue;
        value           uniform 101325;
    }
}

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //dimensions      [0 0 0 1 0 0 0];
internalField   uniform 1373;
boundaryField
{
    ".*"
    {
        type            fixedValue;
        value           uniform 1373;
    }
    back
    {        
    type            fixedValue;
        value           uniform 1373;
    }
    outlet
    {
       type            zeroGradient;
    }
}

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //dimensions      [0 1 -1 0 0 0 0];
internalField   uniform (0 0 0);
boundaryField
{
    ".*"
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
    back
    {
        type            fixedValue;
        value           uniform (0 0 -1.5);
    }
    outlet
    {
        type            zeroGradient;
    }
}

Does anyone have an idea what is wrong??

Many thanks in advance,

regards
Matze7 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
Calculation of the Governing Equations Mihail CFX 7 September 7, 2014 06:27
Temperature, Pressure Limited + numerical error Michael P Main CFD Forum 4 August 3, 2007 12:00
numerical stability due to cross derivatives wen long Main CFD Forum 2 September 12, 2005 02:10
Inlet Temperature Fluctuation in CFX-5.7 LES Mode Halim Choi CFX 0 December 23, 2004 22:05
Parabolic temperature Inlet Profile in a tube majestywzh FLUENT 0 April 9, 2003 06:37


All times are GMT -4. The time now is 02:57.