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

about slip condition

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 25, 2016, 08:37
Default about slip condition
  #1
New Member
 
Gautham varma
Join Date: Feb 2016
Posts: 5
Rep Power: 10
Gautham91 is on a distinguished road
hey guys, could someone help me with writing a slip wall condition? should i write slip condition in all the p,U,k,epsilon files?

Also i am trying to have a outlet velocity flowrate and pressure inlet? but somehow the form solver is giving me a floating point error essentially somehow the solver keeps divding something by 0. i cant get to know what is the problem.

thanks guys
Gautham91 is offline   Reply With Quote

Old   February 25, 2016, 09:23
Default
  #2
Senior Member
 
Saideep
Join Date: Apr 2015
Location: INDIA
Posts: 203
Rep Power: 11
Saideep is on a distinguished road
Hi,

It would be more useful if you can explain the solver you are using. When you have a floating point error there are several ways to debug.

1. write Info << "output" << endl; /*see where the run stops*/
2. using gdb etc.
3. and easiest start from scratch and test a solver test case and progress from thereon.

Hope this helps,
Saideep
Saideep is offline   Reply With Quote

Old   February 25, 2016, 09:32
Default
  #3
New Member
 
Gautham varma
Join Date: Feb 2016
Posts: 5
Rep Power: 10
Gautham91 is on a distinguished road
Well,
i will explain my problem, essentially i am trying to simulate a flow inside a tank with a slip boundary condition at the bottom wall. I am using simpleFoam k epsilon model. and the run stops after 0.6. I started my work from the motorbike solver essentially because it has a slip condition too. let me know if you want more information.

thanks,
Gautham


btw this is the error i get

#0 Foam::error:rintStack(Foam::Ostream&) at ??:?
#1 Foam::sigFpe::sigHandler(int) at ??:?
#2 ? in "/lib/x86_64-linux-gnu/libc.so.6"
#3 Foam::divide(Foam::Field<double>&, Foam::UList<double> const&, Foam::UList<double> const&) at ??:?
#4 Foam::tmp<Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> > Foam:perator/<Foam::fvPatchField, Foam::volMesh>(Foam::tmp<Foam::GeometricField<doub le, Foam::fvPatchField, Foam::volMesh> > const&, Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> const&) at ??:?
#5 Foam::RASModels::kEpsilon<Foam::IncompressibleTurb ulenceModel<Foam::transportModel> >::correct() at ??:?
#6 ? at ??:?
#7 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#8 ? at ??:?
Floating point exception (core dumped)
Gautham91 is offline   Reply With Quote

Old   February 25, 2016, 09:46
Default
  #4
New Member
 
Gautham varma
Join Date: Feb 2016
Posts: 5
Rep Power: 10
Gautham91 is on a distinguished road
and i am including my U

Code:
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform (0 0 0);

boundaryField
{
    wall
    {
        type            fixedValue;
        value           $internalField;
    }

    inlet
    {
        type            flowRateInletVelocity;
        volumetricFlowRate  constant 0.044;
    }
    outlet
    {
        type            inletOutlet;
        value           $internalField;
        inletValue      uniform (0 0 0);
    }
    bottom_wall
    {
    type        slip;
    }

}
p
Code:
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0;

boundaryField
{

    wall
    {
        type            zeroGradient;
    }

    inlet
    {
        type            zeroGradient;
    }
    outlet
    {
        type            fixedValue;
        value           $internalField;
    }
    bottom_wall
    {
     type        slip;
    }

}
epsilon

Code:
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
//type            turbulentMixingLengthDissipationRateInlet;
//mixingLength    0.005;

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

internalField   uniform 0.125;

boundaryField
{
    wall
    {
        type            epsilonWallFunction;
        value           $internalField;
    }

    inlet
    {
        type            turbulentMixingLengthDissipationRateInlet;
        mixingLength    0.006;
        value           $internalField;
    }

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

    bottom_wall
    {
        type            slip;
    }

}
k

Code:
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0.04;

boundaryField
{

    wall
    {
        type            kqRWallFunction;
        value           uniform 0.04;
    }

    inlet
    {
        type            turbulentIntensityKineticEnergyInlet;
        intensity       0.05;
        value           uniform 1;
    }

    outlet
    {
        type            inletOutlet;
        inletValue      uniform 0;
        value           $internalField;
    }
    bottom_wall
    {
        type            slip;
    }


}

Last edited by wyldckat; March 26, 2016 at 05:31. Reason: Added [CODE][/CODE] markers
Gautham91 is offline   Reply With Quote

Reply

Tags
openfoam 2.0.x, slip b.c., slip wall


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
Slip vs. Symmetry boundary condition Madeleine P. Vincent OpenFOAM Running, Solving & CFD 2 December 20, 2016 11:07
comsol: use general slip condition on the external slip wall sobhan.f COMSOL 0 April 30, 2015 06:16
having trouble implementing airfoil with Wall Slip condition Khozaei4000 FLUENT 1 December 22, 2014 12:30
having trouble implementing airfoil with Wall Slip condition Khozaei4000 CFX 10 December 22, 2014 06:21
Partial slip Johnson-Jackson wall boundary condition OF 2.3.0 mwaqas OpenFOAM Running, Solving & CFD 5 December 4, 2014 18:44


All times are GMT -4. The time now is 04:45.