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

Boundary conditions for shear thinning material

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 16, 2016, 06:57
Default Boundary conditions for shear thinning material
  #1
New Member
 
Join Date: Apr 2016
Posts: 13
Rep Power: 10
open is on a distinguished road
Hi all,

Working on a problem with non-Newtonian shear thinning materials. It is expected (cf. experiments) that the outlet velocity is substantially increased (order of 20-50 %) in response to interaction with high shear rate objects. By this I mean oscillating wall or similar.

However in all the cases I've tried so far (2D, 3D, oscillating walls, oscillating velocity BC; pimpleDyMFoam, nonNewtonianIcoFoam) the outlet velocity tends to equalize with the inlet velocity (1 m/s). I'm not anticipating mesh problems since checkMesh passes and the geometry is a rectangular channel. What are the appropriate boundary conditions to permit shear thinning velocity increases?

Example:

U
Code:
    wInlet
    {
        type            pressureInletVelocity;
        value           uniform ( 0 0 0 );
    }

    wOutlet
    {
        type            pressureInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }

    wWall
    {
        type            oscillatingFixedValue;
        refValue    uniform ( 0 0 -1 );
        offset          ( 0 0 1 );
        frequency    40;
        amplitude    0.156078;
    }
P
Code:
wOutlet
    {
        type            fixedValue;
        value           uniform 0;
    }

    wInlet
    {
        type            fixedValue;
        value           uniform 9810; // rho*g
    }

    wWall
    {
        type            zeroGradient;
    }
Code:
transportModel  powerLaw;

powerLawCoeffs
{
    nuMin        nuMin [ 0 2 -1 0 0 0 0 ] 1e-4; 
    nuMax        nuMax [ 0 2 -1 0 0 0 0 ] 4;
    k               k [ 0 2 -1 0 0 0 0 ] 0.04; // k/rho k=40
    n               n [ 0 0 0 0 0 0 0 ] 0.3;
}

   rho rho [1 -3 0 0 0 0 0 ] 1000.0;
dt~1e-8 (variable)
open 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
Domain Imbalance HMR CFX 5 October 10, 2016 05:57
Wrong flow in ratating domain problem Sanyo CFX 17 August 15, 2015 06:20
Low torque values on Screw Turbine Shaun Waters CFX 34 July 23, 2015 08:16
error message cuteapathy CFX 14 March 20, 2012 06:45
Constant velocity of the material Sas CFX 15 July 13, 2010 08:56


All times are GMT -4. The time now is 07:22.