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

Unknown temperature increase in cube (OpenFoam)- Help is welcomed

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 11, 2017, 11:21
Default Unknown temperature increase in cube (OpenFoam)- Help is welcomed
  #1
New Member
 
Sergio López Sánchez
Join Date: Mar 2017
Posts: 4
Rep Power: 9
sergiolopezsan is on a distinguished road
Good afternoon.

I am a student from Industrial Engineering and I am doing my degree project with OpenFoam. I am new in this world.
My idea was to make a cube of air and insert (as boundaries conditions) a floor at 270 K (Kelvin), a ceiling at 330 K and the rest a 300 K. The solver I am using is buoyantPimpleFoam (compressible case).
Firstly, when I simulate it, it appears a temperature gradient through the height of the cube.

However, I want to insert an air flow (input) because the aim of the project is an HVAC application. When I add to the velocity of floor condition U (0,1,0) [that is upwards], the temperature increases a lot and I don't know exactly why. Might it be due to the pressure increase? In addition, the simulation ended before and this message appeared:
Code:
--> FOAM FATAL IO ERROR: 
wrong token type - expected Scalar, found on line 0 the word 'nan'
file: C:/OpenFOAM/user-3.0.x/run/hotRoom/v9/system/data.solverPerformance.p_rgh at line 0.

    From function operator>>(Istream&, Scalar&)
    in file lnInclude/Scalar.C at line 93.

FOAM exiting
Can anyone help me?
Thank you.

ATTACHMENTS

[/CODE]hotRoom with U velocity and Temperature increase.zip

hotRoom without U.zip



T.org file:
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  3.0.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 1 0 0 0];

internalField   uniform 300;

boundaryField
{
    floor
    {
        type            fixedValue;
        value           uniform 270;
    }

    ceiling
    {
        type            fixedValue;
        value           uniform 330;
    }

    fixedWalls
    {
        type            zeroGradient;
    }
}

// ************************************************************************* //
U file:
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  3.0.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    floor
    {
        type            fixedValue;
        value           uniform (0 1 0);
    }

    ceiling
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    fixedWalls
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
}

// ************************************************************************* //
[CODE]p_rgh file:

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  3.0.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 -1 -2 0 0 0 0];

internalField   uniform 1e5;

boundaryField
{
    floor
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }

    ceiling
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }

    fixedWalls
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }
}

// ************************************************************************* //
sergiolopezsan is offline   Reply With Quote

Old   April 13, 2017, 17:03
Default
  #2
Senior Member
 
Join Date: Sep 2013
Posts: 353
Rep Power: 20
Bloerb will become famous soon enough
You have one inlet and no outlet. The simulation hence crashes. Pumping air into a room without an outlet can only lead to compression of that air. and hence a temperature and pressure increase. This becomes unstable very fast and pressure and temperature reach unphysical values.
Bloerb is offline   Reply With Quote

Old   April 29, 2017, 16:20
Default
  #3
New Member
 
Sergio López Sánchez
Join Date: Mar 2017
Posts: 4
Rep Power: 9
sergiolopezsan is on a distinguished road
Quote:
Originally Posted by Bloerb View Post
You have one inlet and no outlet. The simulation hence crashes. Pumping air into a room without an outlet can only lead to compression of that air. and hence a temperature and pressure increase. This becomes unstable very fast and pressure and temperature reach unphysical values.

And how do I do that? Which conditions?
sergiolopezsan is offline   Reply With Quote

Reply

Tags
hvac, openfoam


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
[openSmoke] libOpenSMOKE Tobi OpenFOAM Community Contributions 562 January 25, 2023 09:21
Getting Started with OpenFOAM wyldckat OpenFOAM 25 August 14, 2022 13:55
FDS error Mark JIN Main CFD Forum 0 February 17, 2017 05:49
OpenFOAM v3.0+ ?? SBusch OpenFOAM 22 December 26, 2016 14:24
[Other] How to create an MRF zone ? aminem OpenFOAM Meshing & Mesh Conversion 2 December 8, 2014 10:45


All times are GMT -4. The time now is 05:18.