ENH: Updated surface film functionality

This commit is contained in:
andy
2011-04-08 15:14:16 +01:00
parent 13ce640b92
commit 9b764c1a3e
36 changed files with 1307 additions and 504 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2010-2011 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -63,11 +63,13 @@ removeInjection::~removeInjection()
void removeInjection::correct
(
scalarField&,
scalarField& availableMass,
scalarField& massToInject,
scalarField&
)
{
// do nothing - all mass available to be removed
massToInject = availableMass;
availableMass = 0.0;
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2009-2011 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -89,6 +89,7 @@ public:
//- Correct
virtual void correct
(
scalarField& availableMass,
scalarField& massToInject,
scalarField& diameterToInject
);