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

Momentum eq fulfilled???

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 19, 2010, 09:40
Default Momentum eq fulfilled???
  #1
Member
 
Niklas Winkler
Join Date: Mar 2009
Location: Stockholm, Stockholm, Sweden
Posts: 73
Rep Power: 17
nikwin is on a distinguished road
Hello,

I need to compute the spatial terms of the momentum eq. in rhoPisoFoam. As a check I added a part to rhoPisoFoam which computes all the terms of the momentum eq. to see that it is fulfilled. However accoding to my calculations it's not, even though the residual printed during runTime is below tolerance. Any suggestion of what could be wrong?

Thanks
/NW

int main(int argc, char *argv[])
{
#include "setRootCase.H"

#include "createTime.H"
#include "createMesh.H"
#include "createFields.H"
#include "initContinuityErrs.H"
#include "readTimeControls.H"
#include "compressibleCourantNo.H"
#include "setInitialDeltaT.H"

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

Info<< "\nStarting time loop\n" << endl;

while (runTime.run())
{

#include "readTimeControls.H"
#include "readPISOControls.H"
#include "compressibleCourantNo.H"
#include "setDeltaT.H"

runTime++;

Info<< "Time = " << runTime.timeName() << nl << endl;

#include "rhoEqn.H"
#include "UEqn.H"

// --- PISO loop
for (int corr=1; corr<=nCorr; corr++)
{
#include "hEqn.H"
#include "pEqn.H"
}

turbulence->correct();
rho = thermo.rho();

Info << "START CHECK AFTER rho=thermo.rho()" << endl;

volVectorField UEqn4(IOobject("UEqn4",runTime.timeName(),mesh,IOo bject::NO_READ,IOobject::AUTO_WRITE),mesh,dimensio nedVector("UEqn4",dimless,vector::zero));

fvVectorMatrix UEqn4Matrix
(
fvm::ddt(rho, U)
+ fvm::div(phi, U)
+ turbulence->divDevRhoReff(U)
+ fvc::grad(p)
);

vectorField UEqn4Residual(UEqn4Matrix.residual());
forAll (mesh.cells(),cellI)
{
UEqn4[cellI] = -UEqn4Residual[cellI]/mesh.V()[cellI];
}

vector mean(sum(UEqn4.internalField()*mesh.V())/sum(mesh.V()).value());

Info << "max: " << max(UEqn4.internalField()) << endl;
Info << "min: " << min(UEqn4.internalField()) << endl;
Info << " mean: " << mean << endl;
Info << "variance.x: " << sum(sqr(mean.x()-UEqn4.internalField().component(0)))/mesh.nCells() << endl;
Info << "variance.y: " << sum(sqr(mean.y()-UEqn4.internalField().component(1)))/mesh.nCells() << endl;
Info << "variance.z: " << sum(sqr(mean.z()-UEqn4.internalField().component(2)))/mesh.nCells() << endl;

Info << "END CHECK AFTER rho=thermo.rho()" << endl;

runTime.write();

Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
}

Info<< "End\n" << endl;

return 0;
}

Results from mesh with 2e6 cells, pipe flow.

max: (6181064.994 6807506.826 6688472.669)
min: (-6694996.468 -7079812.026 -6947027.568)
mean: (-77.21956025 27.10909829 -53.67802351)
variance.x: 3019294370
variance.y: 2737483314
variance.z: 2314573170
nikwin 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
Momentum and displacement thickness: du/dy calculation Josh CFX 13 October 27, 2013 14:38
momentum interpolation for collocated grid Hadian Main CFD Forum 4 December 25, 2009 07:25
Derivation of Momentum Equation in Integral Form Demonwolf Main CFD Forum 2 October 29, 2009 19:53
no enthalpy change across the momentum source Atit Koonsrisuk CFX 2 December 19, 2005 02:33
Nonstaggered Grids and Momentum Interpolations S. Wang Main CFD Forum 3 March 2, 2001 13:44


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