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

uniformTotalPressure BC problems

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 4, 2015, 02:54
Unhappy uniformTotalPressure BC problems
  #1
New Member
 
Join Date: Mar 2013
Posts: 24
Rep Power: 13
Slanth is on a distinguished road
Hello, everyone. I want to implement a time-varying total pressure BC. So I use the uniformTotalPressure in OpenFOAM-2.2.2. The velocity boundary is pressureInletOutletVelocity. But as time going on, I always obtain the negative temperature, which is insane.

However, if I just use totalpressure BC without time-varying properties. The simulation is ok. The case aims at solving compressible flow using LES. Piso is used.

Any assistance is appreciated, thanks very much.
Slanth is offline   Reply With Quote

Old   January 4, 2015, 03:22
Default
  #2
New Member
 
Join Date: Mar 2013
Posts: 24
Rep Power: 13
Slanth is on a distinguished road
The pressure boundary and velocity boundary are belows
PHP Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.2.2                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    
version     2.0;
    
format      ascii;
    class       
volScalarField;
    
location    "492";
    
object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [--2 0 0 0 0];

internalField   uniform 118847;

boundaryField
{
    
intake_intake
    
{

        
type            uniformTotalPressure;
        
U               U;
        
phi             phi;
        
rho             none;
        
psi             psi;
        
gamma           1.4;
        
pressure        tableFile;
        
tableFileCoeffs 
       

          
fileName     "$FOAM_CASE/constant/p_intake" 
          
outOfBounds  clamp
       } 

    }
        
exhaust_exhaust
    
{

        
type            uniformTotalPressure;
        
U               U;
        
phi             phi;
        
rho             none;
        
psi             psi;
        
gamma           1.4;
        
pressure        tableFile;
        
tableFileCoeffs 
       

          
fileName     "$FOAM_CASE/constant/p_Exhaust" 
          
outOfBounds  clamp
       } 


    }
    
intake_wall_intake_wall
    
{
        
type            zeroGradient;
    }
    
valve1_seat_valve1_seat
    
{
        
type            zeroGradient;
    }

    
exhaust_wall_exhaust_wall
    
{
        
type            zeroGradient;
    }
    
valve2_seat_valve2_seat
    
{
        
type            zeroGradient;
    }
    
cylinderHead
    
{
        
type            zeroGradient;
    }
    
SparkPlug_SparkPlug
    
{
        
type            zeroGradient;
    }
    
stem_wall1_stem_wall1
    
{
        
type            zeroGradient;
    }
    
stem_wall2_stem_wall2
    
{
        
type            zeroGradient;
    }
    
piston
    
{
        
type            zeroGradient;
    }
    
liner
    
{
        
type            zeroGradient;
    }
    
valve1_stem_valve1_stem
    
{
        
type            zeroGradient;
    }
    
valve1_top_up_valve1_top_up
    
{
        
type            zeroGradient;
    }
    
valve1_top_down_valve1_top_down
    
{
        
type            zeroGradient;
    }
    
valve1_bottom_valve1_bottom
    
{
        
type            zeroGradient;
    }
    
valve2_stem_valve2_stem
    
{
        
type            zeroGradient;
    }
    
valve2_top_up_valve2_top_up
    
{
        
type            zeroGradient;
    }
    
valve2_top_down_valve2_top_down
    
{
        
type            zeroGradient;
    }
    
valve2_bottom_valve2_bottom
    
{
        
type            zeroGradient;
    }
    
valve2Baffle_region0
    
{
        
type            zeroGradient;
    }
    
valve2Baffle_region0_slave
    
{
        
type            zeroGradient;
    }
}


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

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

internalField   uniform (0 0 0);

boundaryField
{
    
intake_intake
    
{
        
type            pressureInletOutletVelocity;
        
value           uniform (0 0 0);
    }
    
intake_wall_intake_wall
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve1_seat_valve1_seat
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
exhaust_exhaust
    
{
        
type            pressureInletOutletVelocity;
        
value           uniform (0 0 0);
    }
    
exhaust_wall_exhaust_wall
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve2_seat_valve2_seat
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
cylinderHead
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
SparkPlug_SparkPlug
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
stem_wall1_stem_wall1
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
stem_wall2_stem_wall2
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
piston
    
{
        
type            movingWallVelocity;
        
value           uniform (0 0 0);
    }
    
liner
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve1_stem_valve1_stem
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve1_top_up_valve1_top_up
    
{
        
type            movingWallVelocity;
        
value           uniform (0 0 0);
    }
    
valve1_top_down_valve1_top_down
    
{
        
type            movingWallVelocity;
        
value           uniform (0 0 0);
    }
    
valve1_bottom_valve1_bottom
    
{
        
type            movingWallVelocity;
        
value           uniform (0 0 0);
    }
    
valve2_stem_valve2_stem
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve2_top_up_valve2_top_up
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve2_top_down_valve2_top_down
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve2_bottom_valve2_bottom
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve2Baffle_region0
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
    
valve2Baffle_region0_slave
    
{
        
type            fixedValue;
        
value           uniform (0 0 0);
    }
}


// ************************************************************************* // 
Slanth is offline   Reply With Quote

Old   January 12, 2015, 02:04
Default
  #3
New Member
 
Join Date: Mar 2013
Posts: 24
Rep Power: 13
Slanth is on a distinguished road
I have solved the problem, just because the uniform pressure within the domain is too small, which induces numerical instability.

But now I met another question, calculation inflow has no problems. But when reverse flow happens, negative temperature occurs near the valve-intake BC (which is the only exit).
I have attached the temperature and velocity distribution as below, the left fig is overall view while the right fig is the enlarged view.
[IMG][/IMG] [IMG][/IMG]
Any advice is appreciated....
Attached Images
File Type: jpg 24_CH5.jpg (24.9 KB, 82 views)
File Type: jpg 24_CH6.jpg (38.5 KB, 59 views)
Slanth is offline   Reply With Quote

Reply


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
[ICEM] Problems with coedge curves and surfaces tommymoose ANSYS Meshing & Geometry 6 December 1, 2020 11:12
[mesh manipulation] Problems with rotational cyclic boundaries TReviol OpenFOAM Meshing & Mesh Conversion 8 July 11, 2014 03:45
[ICEM] Flow channel meshing problems StefanG ANSYS Meshing & Geometry 19 May 15, 2012 06:44
Two-phase air water flow problems by activating Wall Lubrication Force challenger85 CFX 5 November 5, 2009 05:44
Help required to solve Hydraulic related problems aero CFX 0 October 30, 2006 11:00


All times are GMT -4. The time now is 01:23.