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

buoyantPressure

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 2 Post By giack

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 22, 2013, 08:31
Default buoyantPressure
  #1
New Member
 
Antonio
Join Date: Jan 2013
Posts: 6
Rep Power: 13
Antonio.vucci is on a distinguished road
Hi everyone
please please someone clearfy this boundary condition: "buoyantPressure"

every where i read or ask, just hear something like this:
.the buoyantPressure boundary condition is applied to the pressure field, which calculates the normal gradient from the local density gradient.

please someone describe this BC with math and physics. what will exactly happen when we set buoyantPressure at boundary???

thanks all

Antonio.vucci is offline   Reply With Quote

Old   January 24, 2013, 13:19
Default
  #2
New Member
 
Antonio
Join Date: Jan 2013
Posts: 6
Rep Power: 13
Antonio.vucci is on a distinguished road
no one can explain something about this BC? every thing that you know!!!!
Antonio.vucci is offline   Reply With Quote

Old   January 24, 2013, 16:22
Default
  #3
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,975
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Greetings Antonio and welcome to the forum!

I don't know the specific mathematical equations, but according to the source code: https://github.com/OpenFOAM/OpenFOAM...uoyantPressure
Quote:
buoyantPressureFvPatchScalarField.H:
Code:
Set the pressure gradient boundary condition appropriately for buoyant flow.

If the variable name is "pd" assume it is p - rho*g.h and set the gradient
appropriately.  Otherwise assume the variable is the static pressure.
buoyantPressureFvPatchScalarField.C:
Code:
    const uniformDimensionedVectorField& g =
        db().lookupObject<uniformDimensionedVectorField>("g");

    const fvPatchField<scalar>& rho =
        patch().lookupPatchField<volScalarField, scalar>(rhoName_);

    // If the variable name is "p_rgh", "ph_rgh" or "pd"
    // assume it is p? - rho*g.h and set the gradient appropriately.
    // Otherwise assume the variable is the static pressure.
    if
    (
        dimensionedInternalField().name() == "p_rgh"
     || dimensionedInternalField().name() == "ph_rgh"
     || dimensionedInternalField().name() == "pd"
    )
    {
        gradient() = -rho.snGrad()*(g.value() & patch().Cf());
    }
    else
    {
        gradient() = rho*(g.value() & patch().nf());
    }
For a more interactive method of browsing through the source code, try the OpenFOAM C++ Documentation online page: http://foam.sourceforge.net/docs/cpp/index.html

As for buoyancy equations, did you try Wikipedia? http://en.wikipedia.org/wiki/Buoyancy
If you compare the source code with those equations, I think you might understand things a bit more

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   January 24, 2013, 16:49
Default
  #4
New Member
 
Antonio
Join Date: Jan 2013
Posts: 6
Rep Power: 13
Antonio.vucci is on a distinguished road
Hi Bruno
Thanks for your comment. i tried source codes before, but if i knew the codes, why i asked my friends to help!!!!!!!!!!!!!!!.
i think i know enough about buoyancy but OpenFoam, BC and codes are something else!

i think it's cant help: "
If the variable name is "pd" assume it is p - rho*g.h and set the gradient
appropriately. Otherwise assume the variable is the static pressure.

by the way thank you for your attention. is there any idea

Regards
Antonio.vucci is offline   Reply With Quote

Old   January 26, 2013, 15:13
Default
  #5
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,975
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Hi Antonio,

Unfortunately, time is very limited for everyone these days. And I'm not familiar with this boundary condition, so I provided you with the reference details, so that you could use them as a starting point to investigate it further.

From what I can briefly understand, this boundary condition takes into account the density of the fluid and balances the pressure with "rho*g*h", by affecting the pressure gradient directly. The code is also taking into account the vectorial values between the patch the BC is on and gravity's vector.

If you still have questions on this, please indicate what are the specific details that you are having trouble understanding.

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   February 4, 2013, 13:31
Default
  #6
New Member
 
Antonio
Join Date: Jan 2013
Posts: 6
Rep Power: 13
Antonio.vucci is on a distinguished road
Hi Bruno
special thanks to your reply, unfortunately i couldn't acces this site for twoo weeks.
for first:
"this boundary condition takes into account the density of the fluid and balances the pressure with "rho*g*h", by affecting the pressure gradient directly.."
im sorry really i cant understand: how it balance pressure with rho*g*h ?
Antonio.vucci is offline   Reply With Quote

Old   March 7, 2013, 08:27
Default
  #7
Member
 
Join Date: Mar 2013
Posts: 98
Rep Power: 13
giack is on a distinguished road
hi Antonio,
you can find all the information about buoyant pressure here:
http://foam.sourceforge.net/docs/cpp...0.html#details
haghajani and wyldckat like this.
giack 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
buoyantBoussinesqPisoFoam: A detailed explanation mchurchf OpenFOAM 52 June 26, 2019 06:52
buoyantSimpleFoam for HVAC application Mojtaba.a OpenFOAM Running, Solving & CFD 7 November 16, 2017 15:49
interFoam/kOmegaSST tank filling with printStackError/Mules simpomann OpenFOAM Running, Solving & CFD 3 February 17, 2014 17:06
buoyantPressure boundary condition noramat OpenFOAM 1 November 4, 2010 15:37
BuoyantPressure & non-vertical interface Schag OpenFOAM 4 March 12, 2010 16:00


All times are GMT -4. The time now is 10:25.