Skip to content
Snippets Groups Projects
Commit c7792518 authored by Henry's avatar Henry
Browse files

MRFSource: Update the velocity boundary conditions for changes in rotation speed

parent 923f4023
Branches
Tags
No related merge requests found
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2012-2014 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -103,6 +103,9 @@ void Foam::fv::MRFSource::addSup
const label fieldI
)
{
// Update the velocity boundary conditions for changes in rotation speed
mrfPtr_->correctBoundaryVelocity(const_cast<volVectorField&>(eqn.psi()));
// Add to rhs of equation
mrfPtr_->addCoriolis(eqn, true);
}
......@@ -115,6 +118,9 @@ void Foam::fv::MRFSource::addSup
const label fieldI
)
{
// Update the velocity boundary conditions for changes in rotation speed
mrfPtr_->correctBoundaryVelocity(const_cast<volVectorField&>(eqn.psi()));
// Add to rhs of equation
mrfPtr_->addCoriolis(rho, eqn, true);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment