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

No particles injected in DPMFoam when nonSphereDrag particle force selected

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 7, 2017, 12:14
Default No particles injected in DPMFoam when nonSphereDrag particle force selected
  #1
Member
 
Declan
Join Date: Oct 2016
Location: Ireland
Posts: 40
Rep Power: 9
decah is on a distinguished road
Hi all

I am relatively inexperienced with Lagrangian simulations and am noticing that when running DPMFoam with the nonSphereDrag particle force selected no particles enter the simulation. The simulation just runs without particles.

I am injecting particles into a tank with water whose velocity field is solved in simpleFoam then mapped with mapFields. Particles are successfully injected when ErgunWenYuDrag or sphereDrag are chosen but I would like to simulate non-spherical particles. Here is my kinematicCloudProperties file:

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  4.1                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      particleProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solution
{
    active          true;
    coupled         true; 
    transient       yes; 
    cellValueSourceCorrection off;

    interpolationSchemes
    {
        rho.water         cell;
        U.water           cellPoint;
        mu.water          cell;
    }

    integrationSchemes
    {
        U               Euler;
    }

    sourceTerms
    {
        schemes
        {
            U semiImplicit 1;
        }
    }
}

constantProperties
{
    parcelTypeId 1;

    rhoMin          1e-15;
    minParcelMass   1e-15;

    rho0            2650;
    youngsModulus   6e8;  
    poissonsRatio   0.4; 
    constantVolume  false;

    alphaMax        0.9;
}

subModels
{
    particleForces
    {
       nonSphereDrag
	{
            alphac alpha.water;
            phi 0.75;
	};
      gravity;
    }

    injectionModels
    {
        
    
  model1
        {
            type            patchInjection;
            massTotal       0.375;
            SOI             0;
            parcelBasisType mass;
            patchName       inlet;
            duration        1;
            parcelsPerSecond 1000;
            U0              (0.025 0 0);
            flowRateProfile constant 1;
         
  	    sizeDistribution 
            {
             type        RosinRammler;
	    	RosinRammlerDistribution 
		{
		minValue 2e-6; 
		maxValue 100e-6;
	    	d 40e-6; 
	    	n 3; 
	       }        
            } 
	}    

}
dispersionModel none;

    patchInteractionModel localInteraction;

    localInteractionCoeffs
    {
        patches
        (
            fixedWalls
            {
                type rebound;
                e    0.1; 
                mu   0.5; 
            }
            bottom
            {
                type stick;
            }
            atmosphere
            {
                type rebound;
                e    0.1;
                mu   0.1;
            }
            outlet
            {
                type escape;
            }
	    inlet
            {
                type escape;
            }
        );
    }

    StandardWallInteractionCoeffs
    {
        type rebound;
        e    0.85;
        mu   0.1;
    }

    heatTransferModel none;

    surfaceFilmModel none;

    collisionModel none;

    stochasticCollisionModel none;

    radiation off;
}


cloudFunctions
{}


// ************************************************************************* //
If anyone has any ideas or has used nonSphereDrag before any help would be appreciated!


Declan
decah is offline   Reply With Quote

Reply

Tags
dpmfoam, drag forces, lpt, particle injection


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
trying to simulate two-phase jet flow with particles in surface injection ajkratos FLUENT 5 March 3, 2015 21:33
Particle tracking prob, urgent. sakurabogoda CFX 1 March 11, 2013 21:11
Particle Tracking - Can't define water particles CFDLife CFX 2 October 3, 2008 06:12
model particle movement under magnetic force phsieh2005 Main CFD Forum 8 March 28, 2007 07:12
particle body force and scalar update. Kasper Skriver FLUENT 1 March 21, 2006 09:55


All times are GMT -4. The time now is 00:49.