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

Power draw of a mixer

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 6, 2010, 04:33
Default Power draw of a mixer
  #1
New Member
 
Andreas
Join Date: May 2009
Location: Germany
Posts: 13
Rep Power: 16
erklaerbaer is on a distinguished road
Hi all,

my goal is to evaluate the power draw of a mixer (mixer3D) via the integration of the forces acting on the moving or non-moving parts over the relevant patch.

I am an absolute Newbie in OpenFOAM and threw together some Code from the wallShearStree, wallGradU, patchIntegrate utilities and some things i read in the forum.

I try to get the velocity gradient with

Code:
IOobject Uheader
        (
            "U",
            runTime.timeName(),
            mesh,
            IOobject::MUST_READ
        );
  
Info<< "    Reading U" << endl;
volVectorField U(Uheader, mesh);
Info<< "    Calculating wallGradU" << endl;
volVectorField wallGradU
            (    
        IOobject
                (
                    "wallGradU",
                    runTime.timeName(),
                    mesh,
                    IOobject::NO_READ,
                    IOobject::AUTO_WRITE
                ),
        mesh,
               dimensionedVector
                (
                    "wallGradU",
                    U.dimensions()/dimLength,
                    vector::zero
                )
            );
        
    forAll(wallGradU.boundaryField(), patchi)
            {
                wallGradU.boundaryField()[patchi] =
                    U.boundaryField()[patchi].snGrad();
    
            }
and to calculate the sheer rate with
Code:
Info<< "    Calculating Stress" << endl;
        volScalarField wallForces
        (
            IOobject
            (
                "wallForces",
                runTime.timeName(),
                mesh,
                IOobject::NO_READ,
                IOobject::AUTO_WRITE
            ),
            //dynVis*sqrt(sqr(wallGradU.component(vector::X)) + sqr(wallGradU.component(vector::Y))+sqr(wallGradU.component(vector::Z)))
         dynVis*mag(wallGradU)
        );

       wallForces.write();
If i am correct the value for tau is at this point calculated and stored in wallForces. Am i right?

Now i want to integrate tau over the faces of the patch, or not?

Code:
IOobject fieldHeader
        (
            "wallForces",
            runTime.timeName(),
            mesh,
            IOobject::MUST_READ
        );

        // Check field exists
        if (fieldHeader.headerOk())
        {
            mesh.readUpdate();

            label patchi = mesh.boundaryMesh().findPatchID(patchName);
            if (patchi < 0)
            {
                FatalError
                    << "Unable to find patch " << patchName << nl
                    << exit(FatalError);
            }

const polyPatch& cPatch = mesh.boundaryMesh()[patchi];
const surfaceScalarField& magSf = mesh.magSf(); 
    
    scalar Power = 0;
    volScalarField field(fieldHeader, mesh);

    forAll(cPatch, facei)
    {
        Power += magSf.boundaryField()[patchi][facei] * field.boundaryField()[patchi][facei];
    } 
    Info<< "    Power = " << Power << endl;
Now the biggest Problem is that the calculation is not finished because the Integration of tau over the patch area gives me a force but not Energy or even Power.
Can someone give me a hint how i bring this "element" into my code? Or point me to a source where i can find the formula to calcualte the power draw via this method.

Thanks in advance.
Andi
erklaerbaer is offline   Reply With Quote

Old   April 6, 2010, 14:51
Default
  #2
Senior Member
 
Holger Marschall
Join Date: Mar 2009
Location: Darmstadt, Germany
Posts: 125
Rep Power: 19
holger_marschall is on a distinguished road
Send a message via Skype™ to holger_marschall
Hi Andi,

welcome to this board...

You might want to have a look at
Handbook of Industrial Mixing (page 314)
Published Online: 30 Jan 2004
http://www3.interscience.wiley.com/c...home/107583875
Editor(s): Edward L. Paul, Victor A. Atiemo-Obeng, Suzanne M. Kresta
Print ISBN: 9780471269199 Online ISBN: 9780471451457
DOI: 10.1002/0471451452

"The power delivered to the fluid is the product of the impeller speed, 2πN, in rad/s, and torque, τ, which is obtained by integration of the pressure on the impeller blade: P = 2πNτ"

and/or
CFD Simulation of Flow in a Baffled Stirred Tank
GL Lane, PTL Koh
Chemeca 97, 25th Australian and New Zealand Chemical Engineering Conference, Rotorua, NZ, September/October 1997, Paper FL2B, 9 pp
http://www.cfd.com.au/cfd_conf97/papers/lan035.pdf
This should give a first approximate number (if one neglects the shear). Hope this helps.

best,
__________________
Holger Marschall
web: http://www.holger-marschall.info
mail: holgermarschall@yahoo.de
holger_marschall is offline   Reply With Quote

Old   April 7, 2010, 15:56
Default
  #3
New Member
 
Andreas
Join Date: May 2009
Location: Germany
Posts: 13
Rep Power: 16
erklaerbaer is on a distinguished road
Thank you .

Unfortunately I am stuck at the next phase. But now it is more a problem of the OpenFOAM Programming syntax i dont really geht.

I try to get torque by summing up the
Area of every Face * Pressure on that face * Distance to the Center (= lever arm)

My Syntax for that is

Code:
##Read the calculated pressure from the corresponding file
IOobject pressureHeader
        (
            "p",
            runTime.timeName(),
            mesh,
            IOobject::MUST_READ
        );
volScalarField pressure(pressureHeader, mesh);

#Find IF for the Patch, in that case the Impeller
label patchi = mesh.boundaryMesh().findPatchID(patchName);
const polyPatch& cPatch = mesh.boundaryMesh()[patchi];

#I guess this reads the areasizes
const surfaceScalarField& magSf = mesh.magSf();


forAll(cPatch, facei)
    {
        Torque += 
magSf.boundaryField()[patchi][facei] * 
mag(pressure.boundaryField()[patchi][facei])*
Foam::sqrt(
     sqr(pressure.mesh().boundary()[patchi].Cf()[facei][0])+
     sqr(pressure.mesh().boundary()[patchi].Cf()[facei][1])
      );
}
magSf.boundaryField()[patchi][facei] = area of the face?
mag(pressure.boundaryField()[patchi][facei]) = pressure on that face?
pressure.mesh().boundary()[patchi].Cf()[facei][0] = The x-Coordinate of the Center of the face?

The results i get are to low by arround 1E-2 so i guess i have a missunderstanding in the Syntax of OpenFOAM, if someone could lighten me up i would be very grateful.

Andi
erklaerbaer is offline   Reply With Quote

Old   April 8, 2010, 05:38
Default
  #4
New Member
 
Andreas
Join Date: May 2009
Location: Germany
Posts: 13
Rep Power: 16
erklaerbaer is on a distinguished road
If somebody is interested:

I wrote a little Tool for turbulent flows which calculates the powerdraw from the Epsilon-Term,
P = rho * Integral(Epsilon dV)

andi
Attached Files
File Type: gz turbKinEnergy.tar.gz (2.7 KB, 29 views)
erklaerbaer is offline   Reply With Quote

Old   June 14, 2010, 15:43
Default
  #5
New Member
 
Join Date: Jun 2010
Posts: 14
Rep Power: 15
maximeg is on a distinguished road
Hi!

I'm a beginner at OpenFOAM and I'd like some help if possible.

I have to calculate the circulation in a vortex. My code is as follows:

Code:
#include "calc.H"
#include "fvc.H"

void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh)
{

    volScalarField magVorticity        // Imports the results of the vorticity of the vortex
    (                    
        IOobject            
        (                
            "magVorticity",        
            runTime.timeName(),        
            mesh,            
            IOobject::MUST_READ,    
            IOobject::AUTO_WRITE    
        ),                
        mesh                
    );      

    scalar circulation = 0.0;
    scalar r = 0.0;
    const volScalarField& magSf = mesh.magSf();

    forAll(magVorticity, cellI)
    {

        if (distance < r[cellI])        // If the radius (distance) stays lower than the critical radius (r)...
        {
            circulation += magSf.magVorticity[cellI];     // ...calculation of the circulation.
        }

    }

}
The error message I get in the terminal is as follows:

Code:
SOURCE=MaxVorCirc.C ;  g++ -m64 -Dlinux64 -DWM_DP -Wall -Wno-strict-aliasing -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O3  -DNoRepository -ftemplate-depth-40 -I/usr/local/OpenFOAM/OpenFOAM-1.6/src/postProcessing/postCalc -I/usr/local/OpenFOAM/OpenFOAM-1.6/src/finiteVolume/lnInclude -IlnInclude -I. -I/usr/local/OpenFOAM/OpenFOAM-1.6/src/OpenFOAM/lnInclude -I/usr/local/OpenFOAM/OpenFOAM-1.6/src/OSspecific/POSIX/lnInclude   -fPIC -c $SOURCE -o Make/linux64GccDPOpt/MaxVorCirc.o
MaxVorCirc.C: In function ‘void Foam::calc(const Foam::argList&, const Foam::Time&, const Foam::fvMesh&)’:
MaxVorCirc.C:89: error: invalid types ‘Foam::scalar[Foam::label]’ for array subscript
MaxVorCirc.C:94: error: ‘magSf’ was not declared in this scope
make: *** [Make/linux64GccDPOpt/MaxVorCirc.o] Error 1
Any help would be very appreciated.

Thank you in advance!

Maxime
maximeg 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
Non-Newtonian Power Law for Viscosity John FLUENT 16 September 12, 2015 06:18
Wind Power Frank Grassi FLUENT 0 October 12, 2007 11:20
power curve of windmills with CFD sayid FLUENT 2 March 28, 2007 09:55
Non newtonian power law model in pipe annulus Poly FLUENT 0 March 24, 2005 15:12
Intl Conf Computational Methods in Fluid Power Jacek Stecki Main CFD Forum 0 November 10, 2002 05:49


All times are GMT -4. The time now is 05:44.