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

Room-Suction

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 11, 2021, 11:47
Post Room-Suction
  #1
New Member
 
Join Date: Jan 2021
Posts: 4
Rep Power: 5
_Revolution_ is on a distinguished road
Hello together,

I have a couple of questions about the definition of the initial and boundary conditions for my problem. Basically I want to simulate a suction for a room. At the inlet_1 and outlet_1 I want to define a fix velocity or a volumetric flow. In order to be able to equalize the volume in the room, air should flow in again through the other two inlets (inlet_2 and inlet_3 > free convection).

I use OpenFoam-V8 and I want to solve the problem laminar with pimpleFoam. My first attempt for the definition looks like this:

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ 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
{
inlet_1
{
type fixedValue;
value uniform (0 0.1 0);
}
inlet_2
{
type pressureInletOutletVelocity;
value uniform (0 0 0);
}
inlet_3
{
type pressureInletOutletVelocity;
value uniform (0 0 0);
}
outlet_1
{
type fixedValue;
value uniform (-15.0 0 0);
}
suction
{
type noSlip;
}
walls
{
type noSlip;
}
}


/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField uniform 0;

boundaryField
{
inlet_1
{
type zeroGradient;
}
inlet_2
{
type uniformTotalPressure;
p0 uniform -1;
}
inlet_3
{
type uniformTotalPressure;
p0 uniform -1;
}
outlet_1
{
type fixedValue;
value uniform 0;
}
suction
{
type zeroGradient;
}
walls
{
type zeroGradient;
}
}


Can somebody help me at the definition of the initial and boundary conditions? What have I to change in the conditions so that I can simulate the problem or run the simulation correctly?


Thanks in advance for your help.
_Revolution_ 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
Radiation and convection heat transfer in a room through heat pipe mankaran90 FLUENT 0 February 26, 2018 05:08
[DesignModeler] Designing a room (design & mesh) Andorebr ANSYS Meshing & Geometry 2 October 1, 2015 11:13
[ICEM] Ogride in of a room in ICEM CFD metmet ANSYS Meshing & Geometry 3 July 31, 2014 14:00
[GAMBIT] Object in room with that object being the purpose of investigation fluentgambituser ANSYS Meshing & Geometry 3 August 24, 2011 01:52
Salome and Code Saturne simulation of simple room and objects cristian.ocnarescu Main CFD Forum 0 June 21, 2010 10:19


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