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

flowRateInletVelocity and Pressure

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 19, 2019, 09:27
Default flowRateInletVelocity and Pressure
  #1
Senior Member
 
Raza Javed
Join Date: Apr 2019
Location: Germany
Posts: 183
Rep Power: 7
Raza Javed is on a distinguished road
Hello Everyone,


I have a question related to boundary conditions.


I have a pipe in my geometry. And I know the flow-rate of a fluid at the inlet. So, I am using flowRateInletVelocity boundary condition for velocity at the inlet. But I don't know which boundary condition to put for velocity at outlet?


Second, what type of boundary conditions are suitable for Pressure at inlet and outlet in this case?
I don't have any particular requirement for pressure in my simulation.


Any help is highly appreciated.


Thank you
Raza Javed is offline   Reply With Quote

Old   May 19, 2019, 18:45
Default
  #2
Senior Member
 
Joachim Herb
Join Date: Sep 2010
Posts: 650
Rep Power: 22
jherb is on a distinguished road
For velocity put zeroGradient or inletOutlet at the outlet.


For pressure: zeroGradient at the inlet and fixedValue (or fixedMean) at the outlet.
jherb is offline   Reply With Quote

Old   May 20, 2019, 03:18
Default
  #3
Senior Member
 
Raza Javed
Join Date: Apr 2019
Location: Germany
Posts: 183
Rep Power: 7
Raza Javed is on a distinguished road
Thank you so much for your reply.


I am using chtMultiRegionSimpleFoam and my OpenFoam version is 4.1.



I have changed the boundary conditions as you suggested. But I am still getting an error.


My problem is that when I change the values of velocity and pressure, my solver RUNS but after some iterations, it gives an error that "maximum number of iterations exceeded". And then I tried to reduce the time interval in the "controlDict" file, then my solver runs completely without error, but my final residual is too high that it doesn't seem to be converging.



I am posting my solver log and my changeDictionaryDict (boundary conditions).
if you can please have a look, I shall be very thankful because I am not able to interpret the log because I am new to OpenFoam.


changeDictionaryDict File



Code:
boundary
{
    inlet
    {
        type            patch;
    }
    outlet
    {
        type            patch;
    }

}
U
{
    internalField   uniform (0 1e-3 0);

    boundaryField
    {
        inlet
        {
            type                fixedValue;//flowRateInletVelocity;//pressureInletVelocity;//
            //volumetricFlowRate  0.2;
            //extrapolateProfile  yes;
            value               uniform (0 1e-3 0);
        }

        outlet
        {
            type                inletOutlet;//zeroGradient;////
            value               $internalField;//uniform (0 0 0);//
            inletValue          $internalField;
        }
        "fluid_to_box"
        {
            type                noSlip;
        }
    }
}

T
{
    internalField   uniform 300;

    boundaryField
    {
        inlet
        {
            type            fixedValue;
            value           uniform 300;//$internalField;
            
        }

        outlet
        {
            type            inletOutlet;
            value           $internalField;
            inletValue      $internalField;
        }

        "fluid_to_box"
        {
            type            compressible::turbulentTemperatureCoupledBaffleMixed;
            Tnbr            T;
            kappaMethod     fluidThermo;
            value           uniform 300;
        }
    }
}


epsilon
{
    internalField   uniform 0.01;

    boundaryField
    {
        inlet
        {
            type            fixedValue;
            value           uniform 0.01;
        }

        outlet
        {
            type            inletOutlet;
            inletValue      uniform 0.01;
        }

        ".*"
        {
            type            epsilonWallFunction;
            value           uniform 0.01;
        }
    }
}

k
{
    internalField   uniform 0.1;

    boundaryField
    {
        inlet
        {
            type            inletOutlet;
            inletValue      uniform 0.1;
        }

        outlet
        {
            type            zeroGradient;
            value           uniform 0.1;
        }

        ".*"
        {
            type            kqRWallFunction;
            value           uniform 0.1;
        }
    }
}


p_rgh
{
    internalField   uniform 0;

    boundaryField
    {
        inlet
        {
            type            fixedFluxPressure;//zeroGradient;
            value           uniform 0;
        }

        outlet
        {
            type            fixedValue;
            value           uniform 0;
        }

        ".*"
        {
            type            fixedFluxPressure;
            value           uniform 0;
        }
    }
}
p
{
    internalField   uniform 0;

    boundaryField
    {
        inlet
        {
            type            zeroGradient;
            //value           uniform 1;
        }
        outlet  
        {
            type            fixedValue;
            value           uniform 0;
        }        
        "fluid_to_.*"
        {
            type            zeroGradient;
        }
    }
}

Log File


Code:
Time = 4


Solving for fluid region fluid
DILUPBiCG:  Solving for Ux, Initial residual = 0.6911749, Final residual = 0.04280814, No Iterations 2
DILUPBiCG:  Solving for Uy, Initial residual = 0.6577878, Final residual = 0.04376797, No Iterations 2
DILUPBiCG:  Solving for Uz, Initial residual = 0.5181872, Final residual = 0.02078987, No Iterations 2
DILUPBiCG:  Solving for h, Initial residual = 0.5998981, Final residual = 0.03528898, No Iterations 2


--> FOAM FATAL ERROR: 
Maximum number of iterations exceeded

    From function Foam::scalar Foam::species::thermo<Thermo, Type>::T(Foam::scalar, Foam::scalar, Foam::scalar, Foam::scalar (Foam::species::thermo<Thermo, Type>::*)(Foam::scalar, Foam::scalar) const, Foam::scalar (Foam::species::thermo<Thermo, Type>::*)(Foam::scalar, Foam::scalar) const, Foam::scalar (Foam::species::thermo<Thermo, Type>::*)(Foam::scalar) const) const [with Thermo = Foam::hConstThermo<Foam::rhoConst<Foam::specie> >; Type = Foam::sensibleEnthalpy; Foam::scalar = double; Foam::species::thermo<Thermo, Type> = Foam::species::thermo<Foam::hConstThermo<Foam::rhoConst<Foam::specie> >, Foam::sensibleEnthalpy>]
    in file /home/ubuntu/OpenFOAM/OpenFOAM-4.1/src/thermophysicalModels/specie/lnInclude/thermoI.H at line 66.

FOAM aborting

#0  Foam::error::printStack(Foam::Ostream&) at ??:?
#1  Foam::error::abort() at ??:?
#2  Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::rhoConst<Foam::specie> >, Foam::sensibleEnthalpy> > > >::calculate() at ??:?
#3  Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::rhoConst<Foam::specie> >, Foam::sensibleEnthalpy> > > >::correct() at ??:?
#4  ? at ??:?
#5  __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#6  ? at ??:?
Aborted (core dumped)
Raza Javed is offline   Reply With Quote

Old   May 20, 2019, 08:20
Default
  #4
Member
 
Rishikesh
Join Date: Apr 2016
Posts: 63
Rep Power: 10
mrishi is on a distinguished road
Hi,
Can you share log a little prior to Time=4? The final residuals for each variable seem to have a very high value and yet only 2 iterations are made to solve it.
It might also help to look at the fvSolution dictionary where these controls are defined.
mrishi is offline   Reply With Quote

Old   May 20, 2019, 09:01
Default
  #5
Senior Member
 
Raza Javed
Join Date: Apr 2019
Location: Germany
Posts: 183
Rep Power: 7
Raza Javed is on a distinguished road
Thank you so much for your reply.


I try to explain my problem from the start.


I am attaching my geometry with this. one image is the complete box and the other one is inside box.(3 blue long rectangles and one green pipe with inlet and outlet).


I made this geometry on Salome, and then I imported in Openfoam using UNV file.


Then I put my boundary conditions using system/region_name/changeDictionaryDict.


My requirement is that I need to put some fix velocity at the inlet and there is a temperature change along the fluid region due to some hot plates working as heat sources outside the walls of fluid region. And then, I want to see the temperature change at the outlet of the fluid region. I don't have any particular requirement for pressure in my simulation. With these conditions, I want to check at which value of velocity does my simulation reaches the steady state? Also I defined my fluid to be laminar flow. Is it correct?



My problem is that when I change the values of velocity and pressure, my solver RUNS but after some iterations, it gives an error that "maximum number of iterations exceeded". And then I tried to reduce the time interval in the "controlDict" file, then my solver runs completely without error, but my final residual is too high that it doesn't seem to be converging.



And I have one question here is that, is it possible to model laminar flow in this type of pipe? because with the same boundary conditions, I have a small geometry as well and that is working without errors.


Thank you
Attached Images
File Type: jpg outside_box.jpg (87.1 KB, 29 views)
File Type: jpg inside_geometry.jpg (44.4 KB, 32 views)
Raza Javed is offline   Reply With Quote

Old   May 28, 2019, 11:16
Default
  #6
Senior Member
 
Muhammad Waqas
Join Date: Jul 2014
Location: Germany
Posts: 122
Rep Power: 12
mwaqas is on a distinguished road
Send a message via Skype™ to mwaqas
Hella Raza,


Please also attach your log file, fvSolution and controlDict to have better understanding about the problem.


Regards
mwaqas is offline   Reply With Quote

Reply

Tags
boundary condition, pressure, velocity


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
What is difference between static pressure and gauge pressure? aja1345 FLUENT 1 July 20, 2018 20:05
Periodic flow using Cyclic - comparison with Fluent nusivares OpenFOAM Running, Solving & CFD 30 December 12, 2017 05:35
Pressure loss Velocity coupling CFXMUFFIN CFX 1 February 6, 2016 04:43
Discharge of Pressure Vessel into Pipe with Regulator gajowni2 System Analysis 0 October 31, 2015 18:57
Calculation of the Governing Equations Mihail CFX 7 September 7, 2014 06:27


All times are GMT -4. The time now is 15:37.