release on 2012-07-17_15-56-10

This commit is contained in:
cfdem
2012-07-17 15:56:10 +02:00
parent 811a525493
commit 0323774ed4
1167 changed files with 81304 additions and 0 deletions

82
README Normal file
View File

@ -0,0 +1,82 @@
/*---------------------------------------------------------------------------*\
CFDEMcoupling - Open Source CFD-DEM coupling
CFDEMcoupling is part of the CFDEMproject
www.cfdem.com
Christoph Goniva, christoph.goniva@cfdem.com
Copyright 2009-2012 JKU Linz
Copyright 2012- DCS Computing GmbH, Linz
-------------------------------------------------------------------------------
License
This file is part of CFDEMcoupling.
CFDEMcoupling is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
CFDEMcoupling is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with CFDEMcoupling; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Description
This code is designed to realize coupled CFD-DEM simulations using LIGGGHTS
and OpenFOAM. Note: this code is not part of OpenFOAM (see DISCLAIMER).
\*---------------------------------------------------------------------------*/
CFDEM coupling provides an open source parallel coupled CFD-DEM framework
combining the strengths of LIGGGHTS DEM code and the Open Source
CFD package OpenFOAM(R)(*). The CFDEMcoupling toolbox allows to expand
standard CFD solvers of OpenFOAM(R)(*) to include a coupling to the DEM
code LIGGGHTS. In this toolbox the particle representation within the
CFD solver is organized by "cloud" classes. Key functionalities are organised
in sub-models (e.g. force models, data exchange models, etc.) which can easily
be selected and combined by dictionary settings.
The coupled solvers run fully parallel on distributed-memory clusters.
Features are:
- its modular approach allows users to easily implement new models
- its MPI parallelization enables to use it for large scale problems
- the "forum"_lws on CFD-DEM gives the possibility to exchange with other
users / developers
- the use of GIT allows to easily update to the latest version
- basic documentation is provided
The file structure:
- "src" directory including the source files of the coupling toolbox and models
- "applications" directory including the solver files for coupled CFD-DEM simulations
- "doc" directory including the documentation of CFDEMcoupling
- "tutorials" directory including basic tutorial cases showing the functionality
Details on installation are given on the "www.cfdem.com"
The functionality of this CFD-DEM framwork is described via "tutorial cases" showing
how to use different solvers and models.
CFDEMcoupling stands for Computational Fluid Dynamics (CFD) -
Discrete Element Method (DEM) coupling.
CFDEMcoupling is an open-source code, distributed freely under the terms of the
GNU Public License (GPL).
Core development of CFDEMcoupling is done by
Christoph Goniva and Christoph Kloss, both at DCS Computing GmbH, 2012
\*---------------------------------------------------------------------------*/
(*) "OpenFOAM(R)"_of is a registered trade mark of Silicon Graphics
International Corp. This offering is not affiliated, approved or endorsed by
Silicon Graphics International Corp., the producer of the OpenFOAM(R) software
and owner of the OpenFOAM(R) trademark.
\*---------------------------------------------------------------------------*/

View File

@ -0,0 +1,3 @@
cfdemSolverIB.C
EXE=$(FOAM_USER_APPBIN)/cfdemSolverIB

View File

@ -0,0 +1,20 @@
EXE_INC = \
-I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(CFDEM_SRC_DIR)/lnInclude \
-I$(LIB_SRC)/dynamicFvMesh/lnInclude \
-I$(LIB_SRC)/dynamicMesh/lnInclude \
-I$(LIB_SRC)/dynamicMesh/dynamicFvMesh/lnInclude \
-I$(LIB_SRC)/dynamicMesh/dynamicMesh/lnInclude
EXE_LIBS = \
-L$(FOAM_USER_LIBBIN)\
-lincompressibleRASModels \
-lincompressibleLESModels \
-lincompressibleTransportModels \
-lfiniteVolume \
-ldynamicFvMesh \
-ldynamicMesh \
-l$(CFDEM_LIB_NAME)

View File

@ -0,0 +1,175 @@
/*---------------------------------------------------------------------------*\
CFDEMcoupling - Open Source CFD-DEM coupling
CFDEMcoupling is part of the CFDEMproject
www.cfdem.com
Christoph Goniva, christoph.goniva@cfdem.com
Copyright (C) 1991-2009 OpenCFD Ltd.
Copyright (C) 2009-2012 JKU, Linz
Copyright (C) 2012- DCS Computing GmbH,Linz
-------------------------------------------------------------------------------
License
This file is part of CFDEMcoupling.
CFDEMcoupling is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CFDEMcoupling is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with CFDEMcoupling. If not, see <http://www.gnu.org/licenses/>.
Application
cfdemSolverIB
Description
Transient solver for incompressible flow.
The code is an evolution of the solver pisoFoam in OpenFOAM(R) 1.6,
where additional functionality for CFD-DEM coupling using immersed body
(fictitious domain) method is added.
Contributions
Alice Hager
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "turbulenceModel.H"
#include "cfdemCloudIB.H"
#include "implicitCouple.H"
#include "averagingModel.H"
#include "regionModel.H"
#include "voidFractionModel.H"
#include "dynamicFvMesh.H" //dyM
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
#include "setRootCase.H"
#include "createTime.H"
#include "createDynamicFvMesh.H"
#include "createFields.H"
#include "initContinuityErrs.H"
// create cfdemCloud
#include "readGravitationalAcceleration.H"
cfdemCloudIB particleCloud(mesh);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;
while (runTime.loop())
{
Info<< "Time = " << runTime.timeName() << nl << endl;
//=== dyM ===================
interFace = mag(mesh.lookupObject<volScalarField>("voidfractionNext"));
mesh.update(); //dyM
#include "readPISOControls.H"
#include "CourantNo.H"
// do particle stuff
Info << "- evolve()" << endl;
particleCloud.evolve();
// Pressure-velocity PISO corrector
{
// Momentum predictor
fvVectorMatrix UEqn
(
fvm::ddt(U)
+ fvm::div(phi, U)
+ turbulence->divDevReff(U)
);
UEqn.relax();
if (momentumPredictor)
{
solve(UEqn == -fvc::grad(p));
}
// --- PISO loop
for (int corr=0; corr<nCorr; corr++)
{
volScalarField rUA = 1.0/UEqn.A();
U = rUA*UEqn.H();
phi = (fvc::interpolate(U) & mesh.Sf())
+ fvc::ddtPhiCorr(rUA, U, phi);
adjustPhi(phi, U, p);
// Non-orthogonal pressure corrector loop
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
{
// Pressure corrector
fvScalarMatrix pEqn
(
fvm::laplacian(rUA, p) == fvc::div(phi)
);
pEqn.setReference(pRefCell, pRefValue);
if
(
corr == nCorr-1
&& nonOrth == nNonOrthCorr
)
{
pEqn.solve(mesh.solver("pFinal"));
}
else
{
pEqn.solve();
}
if (nonOrth == nNonOrthCorr)
{
phi -= pEqn.flux();
}
}
#include "continuityErrs.H"
U -= rUA*fvc::grad(p);
U.correctBoundaryConditions();
}
}
turbulence->correct();
Info << "particleCloud.calcVelocityCorrection() " << endl;
particleCloud.calcVelocityCorrection(p,U,phiIB);
runTime.write();
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
}
Info<< "End\n" << endl;
return 0;
}
// ************************************************************************* //

View File

@ -0,0 +1,128 @@
Info<< "Reading field p\n" << endl;
volScalarField p
(
IOobject
(
"p",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "Reading physical velocity field U" << endl;
Info<< "Note: only if voidfraction at boundary is 1, U is superficial velocity!!!\n" << endl;
volVectorField U
(
IOobject
(
"U",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//mod by alice
Info<< "Reading physical velocity field U" << endl;
Info<< "Note: only if voidfraction at boundary is 1, U is superficial velocity!!!\n" << endl;
volVectorField Us
(
IOobject
(
"Us",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//========================
// drag law modelling
//========================
Info<< "\nCreating dummy density field rho = 1\n" << endl;
volScalarField rho
(
IOobject
(
"rho",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
mesh,
dimensionedScalar("0", dimensionSet(1, -3, 0, 0, 0), 1.0)
);
Info<< "Reading field phiIB\n" << endl;
volScalarField phiIB
(
IOobject
(
"phiIB",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//mod by alice
Info<< "Reading field phiIB\n" << endl;
volScalarField voidfraction
(
IOobject
(
"voidfraction",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//========================
# include "createPhi.H"
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::turbulenceModel> turbulence
(
incompressible::turbulenceModel::New(U, phi, laminarTransport)
);
//=== dyM ===================
Info<< "Reading field interFace\n" << endl;
volScalarField interFace
(
IOobject
(
"interFace",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
mesh,
//dimensionedScalar("0", dimensionSet(0, -1, 0, 0, 0), 0.0)
dimensionedScalar("0", dimensionSet(0, 0, 0, 0, 0), 0.0)
);
//===========================

View File

@ -0,0 +1,3 @@
cfdemSolverPiso.C
EXE=$(FOAM_USER_APPBIN)/cfdemSolverPiso

View File

@ -0,0 +1,15 @@
EXE_INC = \
-I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(CFDEM_SRC_DIR)/lnInclude \
-I$(CFDEM_SRC_DIR)/cfdTools \
EXE_LIBS = \
-L$(FOAM_USER_LIBBIN)\
-lincompressibleRASModels \
-lincompressibleLESModels \
-lincompressibleTransportModels \
-lfiniteVolume \
-l$(CFDEM_LIB_NAME)

View File

@ -0,0 +1,191 @@
/*---------------------------------------------------------------------------*\
CFDEMcoupling - Open Source CFD-DEM coupling
CFDEMcoupling is part of the CFDEMproject
www.cfdem.com
Christoph Goniva, christoph.goniva@cfdem.com
Copyright (C) 1991-2009 OpenCFD Ltd.
Copyright (C) 2009-2012 JKU, Linz
Copyright (C) 2012- DCS Computing GmbH,Linz
-------------------------------------------------------------------------------
License
This file is part of CFDEMcoupling.
CFDEMcoupling is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CFDEMcoupling is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with CFDEMcoupling. If not, see <http://www.gnu.org/licenses/>.
Application
cfdemSolverPiso
Description
Transient solver for incompressible flow.
Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
The code is an evolution of the solver pisoFoam in OpenFOAM(R) 1.6,
where additional functionality for CFD-DEM coupling is added.
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "turbulenceModel.H"
#include "cfdemCloud.H"
#include "implicitCouple.H"
#include "clockModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
#include "setRootCase.H"
#include "createTime.H"
#include "createMesh.H"
#include "createFields.H"
#include "initContinuityErrs.H"
// create cfdemCloud
#include "readGravitationalAcceleration.H"
cfdemCloud particleCloud(mesh);
#include "checkModelType.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;
particleCloud.clockM().start(1,"Global");
while (runTime.loop())
{
Info<< "Time = " << runTime.timeName() << nl << endl;
#include "readPISOControls.H"
#include "CourantNo.H"
// do particle stuff
particleCloud.clockM().start(2,"Coupling");
particleCloud.evolve(voidfraction,Us,U);
Info << "update Ksl.internalField()" << endl;
Ksl.internalField() = particleCloud.momCoupleM(0).impMomSource();
Ksl.correctBoundaryConditions();
#include "solverDebugInfo.H"
particleCloud.clockM().stop("Coupling");
particleCloud.clockM().start(10,"Flow");
// Pressure-velocity PISO corrector
{
// Momentum predictor
fvVectorMatrix UEqn
(
fvm::ddt(voidfraction,U)
+ fvm::div(phi, U)
// + turbulence->divDevReff(U)
+ particleCloud.divVoidfractionTau(U, voidfraction)
==
- fvm::Sp(Ksl/rho,U)
);
UEqn.relax();
if (momentumPredictor)
{
//solve UEqn
if (modelType=="B")
solve(UEqn == - fvc::grad(p) + Ksl/rho*Us);
else
solve(UEqn == - voidfraction*fvc::grad(p) + Ksl/rho*Us);
}
// --- PISO loop
//for (int corr=0; corr<nCorr; corr++)
int nCorrSoph = nCorr + 5 * pow((1-particleCloud.dataExchangeM().timeStepFraction()),1);
for (int corr=0; corr<nCorrSoph; corr++)
{
volScalarField rUA = 1.0/UEqn.A();
surfaceScalarField rUAf("(1|A(U))", fvc::interpolate(rUA));
U = rUA*UEqn.H();
phi = fvc::interpolate(U*voidfraction) & mesh.Sf();
//+ fvc::ddtPhiCorr(rUA, U, phi)
surfaceScalarField phiS(fvc::interpolate(Us*voidfraction) & mesh.Sf());
surfaceScalarField phiGes = phi + rUAf*(fvc::interpolate(Ksl/rho) * phiS);
volScalarField rUAvoidfraction("(voidfraction2|A(U))",rUA*voidfraction);
if (modelType=="A")
rUAvoidfraction = volScalarField("(voidfraction2|A(U))",rUA*voidfraction*voidfraction);
// Non-orthogonal pressure corrector loop
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
{
// Pressure corrector
fvScalarMatrix pEqn
(
fvm::laplacian(rUAvoidfraction, p) == fvc::div(phiGes) + fvc::ddt(voidfraction)
);
pEqn.setReference(pRefCell, pRefValue);
if
(
corr == nCorr-1
&& nonOrth == nNonOrthCorr
)
{
pEqn.solve(mesh.solver("pFinal"));
}
else
{
pEqn.solve();
}
if (nonOrth == nNonOrthCorr)
{
phiGes -= pEqn.flux();
}
} // end non-orthogonal corrector loop
#include "continuityErrs.H"
if (modelType=="B")
U -= rUA*fvc::grad(p) - Ksl/rho*Us*rUA;
else
U -= voidfraction*rUA*fvc::grad(p) - Ksl/rho*Us*rUA;
U.correctBoundaryConditions();
} // end piso loop
}
turbulence->correct();
runTime.write();
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
particleCloud.clockM().stop("Flow");
}
Info<< "End\n" << endl;
particleCloud.clockM().stop("Global");
return 0;
}
// ************************************************************************* //

View File

@ -0,0 +1,124 @@
Info<< "Reading field p\n" << endl;
volScalarField p
(
IOobject
(
"p",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "Reading physical velocity field U" << endl;
Info<< "Note: only if voidfraction at boundary is 1, U is superficial velocity!!!\n" << endl;
volVectorField U
(
IOobject
(
"U",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//===============================
// particle interaction modelling
//===============================
Info<< "\nReading momentum exchange field Ksl\n" << endl;
volScalarField Ksl
(
IOobject
(
"Ksl",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
//dimensionedScalar("0", dimensionSet(1, -3, -1, 0, 0), 1.0)
);
Info<< "\nReading voidfraction field voidfraction = (Vgas/Vparticle)\n" << endl;
volScalarField voidfraction
(
IOobject
(
"voidfraction",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "\nCreating dummy density field rho\n" << endl;
volScalarField rho
(
IOobject
(
"rho",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh//,
//dimensionedScalar("0", dimensionSet(1, -3, 0, 0, 0), 1.0)
);
Info<< "Reading particle velocity field Us\n" << endl;
volVectorField Us
(
IOobject
(
"Us",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//===============================
//# include "createPhi.H"
#ifndef createPhi_H
#define createPhi_H
Info<< "Reading/calculating face flux field phi\n" << endl;
surfaceScalarField phi
(
IOobject
(
"phi",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
linearInterpolate(U*voidfraction) & mesh.Sf()
);
#endif
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::turbulenceModel> turbulence
(
incompressible::turbulenceModel::New(U, phi, laminarTransport)
);

View File

@ -0,0 +1,3 @@
cfdemSolverPisoScalar.C
EXE = $(FOAM_USER_APPBIN)/cfdemSolverPisoScalar

View File

@ -0,0 +1,15 @@
EXE_INC = \
-I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(CFDEM_SRC_DIR)/lnInclude \
-I$(CFDEM_SRC_DIR)/cfdTools \
EXE_LIBS = \
-L$(FOAM_USER_LIBBIN)\
-lincompressibleRASModels \
-lincompressibleLESModels \
-lincompressibleTransportModels \
-lfiniteVolume \
-l$(CFDEM_LIB_NAME)

View File

@ -0,0 +1,197 @@
/*---------------------------------------------------------------------------*\
CFDEMcoupling - Open Source CFD-DEM coupling
CFDEMcoupling is part of the CFDEMproject
www.cfdem.com
Christoph Goniva, christoph.goniva@cfdem.com
Copyright (C) 1991-2009 OpenCFD Ltd.
Copyright (C) 2009-2012 JKU, Linz
Copyright (C) 2012- DCS Computing GmbH,Linz
-------------------------------------------------------------------------------
License
This file is part of CFDEMcoupling.
CFDEMcoupling is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CFDEMcoupling is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with CFDEMcoupling. If not, see <http://www.gnu.org/licenses/>.
Application
cfdemSolverPisoScalar
Description
Transient solver for incompressible flow.
Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
The code is an evolution of the solver pisoFoam in OpenFOAM(R) 1.6,
where additional functionality for CFD-DEM coupling is added.
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "turbulenceModel.H"
#include "cfdemCloud.H"
#include "implicitCouple.H"
#include "forceModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
#include "setRootCase.H"
#include "createTime.H"
#include "createMesh.H"
#include "createFields.H"
#include "initContinuityErrs.H"
// create cfdemCloud
#include "readGravitationalAcceleration.H"
cfdemCloud particleCloud(mesh);
#include "checkModelType.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;
while (runTime.loop())
{
Info<< "Time = " << runTime.timeName() << nl << endl;
#include "readPISOControls.H"
#include "CourantNo.H"
// do particle stuff
Info << "- evolve()" << endl;
particleCloud.evolve(voidfraction,Us,U);
Ksl.internalField() = particleCloud.momCoupleM(0).impMomSource();
Ksl.correctBoundaryConditions();
#include "solverDebugInfo.H"
// get scalar source from DEM
particleCloud.forceM(1).manipulateScalarField(Tsource);
Tsource.correctBoundaryConditions();
// solve scalar transport equation
phi = fvc::interpolate(U*voidfraction) & mesh.Sf();
solve
(
fvm::ddt(voidfraction,T)
+ fvm::div(phi, T)
- fvm::laplacian(DT*voidfraction, T)
==
Tsource
);
// Pressure-velocity PISO corrector
{
// Momentum predictor
fvVectorMatrix UEqn
(
fvm::ddt(voidfraction,U)
+ fvm::div(phi, U)
+ turbulence->divDevReff(U)
==
- fvm::Sp(Ksl/rho,U)
);
UEqn.relax();
if (momentumPredictor)
{
//solve UEqn
if (modelType=="B")
solve(UEqn == - fvc::grad(p) + Ksl/rho*Us);
else
solve(UEqn == - voidfraction*fvc::grad(p) + Ksl/rho*Us);
}
// --- PISO loop
//for (int corr=0; corr<nCorr; corr++)
int nCorrSoph = nCorr + 5 * pow((1-particleCloud.dataExchangeM().timeStepFraction()),1);
for (int corr=0; corr<nCorrSoph; corr++)
{
volScalarField rUA = 1.0/UEqn.A();
surfaceScalarField rUAf("(1|A(U))", fvc::interpolate(rUA));
U = rUA*UEqn.H();
phi = fvc::interpolate(U*voidfraction) & mesh.Sf();
//+ fvc::ddtPhiCorr(rUA, U, phi)
surfaceScalarField phiS(fvc::interpolate(Us*voidfraction) & mesh.Sf());
surfaceScalarField phiGes = phi + rUAf*(fvc::interpolate(Ksl/rho) * phiS);
volScalarField rUAvoidfraction("(voidfraction2|A(U))",rUA*voidfraction);
if (modelType=="A")
rUAvoidfraction = volScalarField("(voidfraction2|A(U))",rUA*voidfraction*voidfraction);
// Non-orthogonal pressure corrector loop
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
{
// Pressure corrector
fvScalarMatrix pEqn
(
fvm::laplacian(rUAvoidfraction, p) == fvc::div(phiGes) + fvc::ddt(voidfraction)
);
pEqn.setReference(pRefCell, pRefValue);
if
(
corr == nCorr-1
&& nonOrth == nNonOrthCorr
)
{
pEqn.solve(mesh.solver("pFinal"));
}
else
{
pEqn.solve();
}
if (nonOrth == nNonOrthCorr)
{
phiGes -= pEqn.flux();
}
} // end non-orthogonal corrector loop
#include "continuityErrs.H"
if (modelType=="B")
U -= rUA*fvc::grad(p) - Ksl/rho*Us*rUA;
else
U -= voidfraction*rUA*fvc::grad(p) - Ksl/rho*Us*rUA;
U.correctBoundaryConditions();
} // end piso loop
}
turbulence->correct();
runTime.write();
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
}
Info<< "End\n" << endl;
return 0;
}
// ************************************************************************* //

View File

@ -0,0 +1,174 @@
Info<< "Reading field p\n" << endl;
volScalarField p
(
IOobject
(
"p",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "Reading physical velocity field U" << endl;
Info<< "Note: only if voidfraction at boundary is 1, U is superficial velocity!!!\n" << endl;
volVectorField U
(
IOobject
(
"U",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//========================
// drag law modelling
//========================
Info<< "\nReading momentum exchange field Ksl\n" << endl;
volScalarField Ksl
(
IOobject
(
"Ksl",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
//dimensionedScalar("0", dimensionSet(0, 0, -1, 0, 0), 1.0)
);
Info<< "\nReading voidfraction field voidfraction = (Vgas/Vparticle)\n" << endl;
volScalarField voidfraction
(
IOobject
(
"voidfraction",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "\nCreating density field rho\n" << endl;
volScalarField rho
(
IOobject
(
"rho",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
mesh,
dimensionedScalar("0", dimensionSet(1, -3, 0, 0, 0), 1.0)
);
Info<< "Reading particle velocity field Us\n" << endl;
volVectorField Us
(
IOobject
(
"Us",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
//========================
// scalar field modelling
//========================
Info<< "\nCreating dummy density field rho = 1\n" << endl;
volScalarField T
(
IOobject
(
"T",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh//,
//dimensionedScalar("0", dimensionSet(0, 0, -1, 1, 0), 273.15)
);
Info<< "\nCreating fluid-particle heat flux field\n" << endl;
volScalarField Tsource
(
IOobject
(
"Tsource",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh//,
//dimensionedScalar("0", dimensionSet(0, 0, -1, 1, 0), 0.0)
);
IOdictionary transportProperties
(
IOobject
(
"transportProperties",
runTime.constant(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
dimensionedScalar DT
(
transportProperties.lookup("DT")
);
//========================
//# include "createPhi.H"
#ifndef createPhi_H
#define createPhi_H
Info<< "Reading/calculating face flux field phi\n" << endl;
surfaceScalarField phi
(
IOobject
(
"phi",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
linearInterpolate(U*voidfraction) & mesh.Sf()
);
#endif
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::turbulenceModel> turbulence
(
incompressible::turbulenceModel::New(U, phi, laminarTransport)
);

View File

@ -0,0 +1,3 @@
cfdemPostproc.C
EXE=$(FOAM_USER_APPBIN)/cfdemPostproc

View File

@ -0,0 +1,17 @@
EXE_INC = \
-I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(CFDEM_SRC_DIR)/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude \
EXE_LIBS = \
-L$(FOAM_USER_LIBBIN)\
-lincompressibleRASModels \
-lincompressibleLESModels \
-lincompressibleTransportModels \
-lfiniteVolume \
-l$(CFDEM_LIB_NAME) \

View File

@ -0,0 +1,140 @@
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Application
cfdemPostproc
Description
Tool for DEM->CFD (Lagrange->Euler) mapping to calculate local voidfraction
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "turbulenceModel.H"
#include "cfdemCloud.H"
#include "dataExchangeModel.H"
#include "voidFractionModel.H"
#include "regionModel.H"
#include "locateModel.H"
#include "averagingModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
#include "setRootCase.H"
#include "createTime.H"
#include "createMesh.H"
#include "createFields.H"
// create cfdemCloud
cfdemCloud particleCloud(mesh);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;
int count=0;
int DEM_dump_Interval=1000;
double **positions_;
double **velocities_;
double **radii_;
double **voidfractions_;
double **particleWeights_;
double **particleVolumes_;
double **cellIDs_;
particleCloud.dataExchangeM().allocateArray(positions_,0.,3);
particleCloud.dataExchangeM().allocateArray(velocities_,0.,3);
particleCloud.dataExchangeM().allocateArray(radii_,0.,1);
particleCloud.dataExchangeM().allocateArray(voidfractions_,0.,1);
particleCloud.dataExchangeM().allocateArray(particleWeights_,0.,1);
particleCloud.dataExchangeM().allocateArray(particleVolumes_,0.,1);
particleCloud.dataExchangeM().allocateArray(cellIDs_,0.,1);
while (runTime.loop())
{
Info<< "Time = " << runTime.timeName() << nl << endl;
count+=DEM_dump_Interval;// proceed loading new data
particleCloud.regionM().resetVolFields(Us);
particleCloud.dataExchangeM().couple();
particleCloud.dataExchangeM().getData("x","vector-atom",positions_,count);
particleCloud.dataExchangeM().getData("v","vector-atom",velocities_,count);
particleCloud.dataExchangeM().getData("radius","scalar-atom",radii_,count);
particleCloud.set_radii(radii_);
particleCloud.locateM().findCell(particleCloud.regionM().inRegion(),positions_,cellIDs_,particleCloud.numberOfParticles());
particleCloud.set_cellIDs(cellIDs_);
particleCloud.voidFractionM().setvoidFraction
(
particleCloud.regionM().inRegion(),voidfractions_,particleWeights_,particleVolumes_
);
voidfraction.internalField() = particleCloud.voidFractionM().voidFractionInterp();
voidfraction.correctBoundaryConditions();
particleCloud.averagingM().setVectorAverage
(
particleCloud.averagingM().UsNext(),
velocities_,
particleWeights_,
particleCloud.averagingM().UsWeightField(),
particleCloud.regionM().inRegion()
);
runTime.write();
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
}
delete positions_;
delete velocities_;
delete radii_;
delete voidfractions_;
delete particleWeights_;
delete particleVolumes_;
delete cellIDs_;
Info<< "End\n" << endl;
return 0;
}
// ************************************************************************* //

View File

@ -0,0 +1,82 @@
Info<< "Reading field p\n" << endl;
volScalarField p
(
IOobject
(
"p",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE
),
mesh,
dimensionedScalar("0", dimensionSet(0, 2, -2, 0, 0), 1.0)
);
Info<< "Reading physical velocity field U" << endl;
Info<< "Note: only if voidfraction at boundary is 1, U is superficial velocity!!!\n" << endl;
volVectorField U
(
IOobject
(
"U",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE
),
mesh,
dimensionedVector("0", dimensionSet(0, 1, -1, 0, 0), vector::zero)
);
//========================
// drag law modelling
//========================
Info<< "\nReading voidfraction field voidfraction = (Vgas/Vparticle)\n" << endl;
volScalarField voidfraction
(
IOobject
(
"voidfraction",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
mesh,
dimensionedScalar("0", dimensionSet(0, 0, 0, 0, 0), 1.)
);
Info<< "Reading particle velocity field Us\n" << endl;
volVectorField Us
(
IOobject
(
"Us",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
mesh,
dimensionedVector("0", dimensionSet(0, 1, -1, 0, 0), vector::zero)
);
//========================
# include "createPhi.H"
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::turbulenceModel> turbulence
(
incompressible::turbulenceModel::New(U, phi, laminarTransport)
);

View File

@ -0,0 +1,68 @@
#!/usr/bin/env python
import csv, sys
import numpy as np
import matplotlib.pyplot as plt
# Open the data
datafile = "timeEvalFull.txt"
f = open(datafile, 'r')
reader = csv.reader(f, dialect='excel-tab')
reader.next()
header = []
identifier = []
deltaT = []
maxdeltaT = []
nOfRuns = []
level = []
parentNr = []
parentName = []
i = 0
for row in reader:
if i == 0:
for column in row:
header.append(column)
print header
else:
identifier.append(row[0])
deltaT.append(float(row[1]))
maxdeltaT.append(float(row[2]))
nOfRuns.append(int(row[3]))
level.append(int(row[4]))
parentNr.append(int(row[5]))
parentName.append(row[6])
i+=1
bottom = []
childheight = []
for i in range(len(identifier)):
bottom.append(0)
childheight.append(0)
levelZero = 0.0
#loop levels
for j in range(len(identifier)):
#loop indices
for i in range(len(identifier)):
if level[i] == j:
if parentNr[i] != -1:
bottom[i] = bottom[parentNr[i]] + childheight[parentNr[i]]
childheight[parentNr[i]] += deltaT[i]
else:
bottom[i] = levelZero
levelZero += deltaT[i]
#Output
for i in range(len(identifier)):
plt.bar(level[i],deltaT[i],width = 0.2, bottom=bottom[i])
plt.text(level[i]+0.22,bottom[i]+deltaT[i]/2,identifier[i]+" "+str(nOfRuns[i])+"x",verticalalignment='center')
plt.xlabel('run level')
plt.ylabel('CPU time in s')
plt.title('time measurement')
plt.show()

View File

@ -0,0 +1,13 @@
Parallel Measurements in CPU-seconds of all Processors:
Name avgdeltaT maxdeltaT nOfRuns level parentNr parentName
X 5.000000e-06 5.000000e-06 1 0 -1 none
A 3.240000e-04 3.240000e-04 1 0 -1 none
B 1.680000e-04 1.680000e-04 1 1 1 A
C 9.000000e-06 9.000000e-06 3 2 2 B
D 6.000000e-06 6.000000e-06 3 3 3 C
E 1.500000e-04 1.500000e-04 3 2 2 B
F 2.400000e-05 2.400000e-05 3 1 1 A
G 6.000000e-06 6.000000e-06 3 1 1 A
X 6.000000e-06 6.000000e-06 3 2 7 G
H 4.000000e-05 4.000000e-05 5 1 1 A
I 2.000000e-05 2.000000e-05 1 1 1 A

View File

@ -0,0 +1,220 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A>
</CENTER>
<HR>
<H2><CENTER>CFDEMcoupling Documentation
</CENTER></H2>
<HR>
<CENTER><IMG SRC = "Portfolio_CFDEMcoupling.png">
</CENTER>
<HR>
<H3>1. Contents
</H3>
<P>The CFDEMcoupling documentation is organized into the following sections. If you find errors or omissions in this manual or have suggestions for useful information to add, please send an email to the developers so we can improve the CFDEMcoupling documentation.
</P>
1.1 <A HREF = "#1_1">About CFDEMcoupling</A><BR>
1.2 <A HREF = "#1_2">Installation</A><BR>
1.3 <A HREF = "#1_3">Tutorials</A><BR>
1.4 <A HREF = "#1_4">couplingProperties dictionary</A><BR>
1.5 <A HREF = "#1_5">liggghtsCommands dictionary</A><BR>
1.6 <A HREF = "#cmd_5">Models and solvers</A> <BR>
<HR>
<A NAME = "1_1"></A><H4>1.1 About CFDEMcoupling
</H4>
<P>CFDEM coupling provides an open source parallel coupled CFD-DEM framework combining the strengths of <A HREF = "http://www.cfdem.com">LIGGGHTS</A> DEM code and the Open Source CFD package <A HREF = "http://www.openfoam.com">OpenFOAM(R)(*)</A>. The CFDEMcoupling toolbox allows to expand standard CFD solvers of <A HREF = "http://www.openfoam.com">OpenFOAM(R)(*)</A> to include a coupling to the DEM code <A HREF = "http://www.cfdem.com">LIGGGHTS</A>. In this toolbox the particle representation within the CFD solver is organized by "cloud" classes. Key functionalities are organised in sub-models (e.g. force models, data exchange models, etc.) which can easily be selected and combined by dictionary settings.
</P>
<P>The coupled solvers run fully parallel on distributed-memory clusters. Features are:
</P>
<UL><LI>its modular approach allows users to easily implement new models
<LI>its MPI parallelization enables to use it for large scale problems
<LI>the <A HREF = "http://www.cfdem.com">forum</A> on CFD-DEM gives the possibility to exchange with other users / developers
<LI>the use of GIT allows to easily update to the latest version
<LI>basic documentation is provided
</UL>
<P>The file structure:
</P>
<UL><LI><I>src</I> directory including the source files of the coupling toolbox and models
<LI><I>applications</I> directory including the solver files for coupled CFD-DEM simulations
<LI><I>doc</I> directory including the documentation of CFDEMcoupling
<LI><I>tutorials</I> directory including basic tutorial cases showing the functionality
</UL>
<P>Details on installation are given on the <A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> .
The functionality of this CFD-DEM framwork is described via <A HREF = "#_1_2">tutorial cases</A> showing how to use different solvers and models.
</P>
<P>CFDEMcoupling stands for Computational Fluid Dynamics (CFD) -Discrete Element Method (DEM) coupling.
</P>
<P>CFDEMcoupling is an open-source code, distributed freely under the terms of the GNU Public License (GPL).
</P>
<P>Core development of CFDEMcoupling is done by Christoph Goniva and Christoph Kloss, both at DCS Computing GmbH, 2012
</P>
<P>This documentation was written by Christoph Goniva, DCS Computing GmbH, 2012
</P>
<HR>
<P>(*) <A HREF = "http://www.openfoam.com">OpenFOAM(R)</A> is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
</P>
<HR>
<A NAME = "1_2"></A><H4>1.2 Installation
</H4>
<P>Please follow the installation routine provided at www.cfdem.com.
In order to get the latest code version, please use the git repository at http://github.com (<A HREF = "githubAccess_public.html">githubAccess</A>).
</P>
<HR>
<A NAME = "1_3"></A><H4>1.3 Tutorials
</H4>
<P><B>General:</B>
</P>
<P>Each solver of the CFDEMcoupling is comes with at least one tutorial example, showing its functionality and correct useage. Provided that the installation is correct, the tutorials can be run via "Allrun.sh" shell scripts. These scripts perform all necessary steps (preprocessing, run, postprocessing, visualization).
</P>
<P><B>Location:</B>
</P>
<P>The tutorials can be found in the directory $CFDEM_PROJECT_DIR/tutorials, which can be reached by typing "cfdemTut"
</P>
<P><B>Structure:</B>
</P>
<P>Each case is structured in a directory called "CFD" covering the CFD relevant settings and data, and a dirctory called "DEM" covering the DEM relevant settings and data. This allows to easily expand a pure CFD or DEM simulation case to a coupled case.
</P>
<P><B>Usage:</B>
</P>
<P>Provided that the installation is correct, the tutorials can be run via "Allrun.sh" shell script, executed by typing "./Allrun.sh". The successful run of the script might need some third party software (e.g. octave, evince, etc.).
</P>
<P><B>Settings:</B>
</P>
<P>The main settings of a simulation are done via dictionaries:
</P>
<P>The DEM setup of each case is defined by a <A HREF = "http://www.cfdem.com">LIGGGHTS</A> input file located in $caseDir/DEM (e.g. in.liggghts_init). For details on the <A HREF = "http://www.cfdem.com">LIGGGHTS</A> setup, please have a look in the <A HREF = "http://www.cfdem.com">LIGGGHTS</A> manual.
</P>
<P>Standard CFD settings are defined in $caseDir/CFD/constant (e.g. transportProperties, RASproperties, etc.) and $caseDir/CFD/system (e.g. fvSchemes, controlDict). You can find more information on that in <A HREF = "http://www.openfoam.com">OpenFOAM(R)(*)</A> documentations (www.openFoam.com)(*).
</P>
<P>Settings of the coupling routines are defined in $caseDir/CFD/constant/<A HREF = "#1_3">couplingProperies</A> (e.g. force models, data exchange model, etc.) and $caseDir/CFD/constant/<A HREF = "#1_3">liggghtsCommands</A> (allows to execute a LIGGGHTS command during a coupled simulation).
</P>
<HR>
<A NAME = "1_4"></A><H4>1.4 "couplingProperties" dictionary
</H4>
<P><B>General:</B>
</P>
<P>In the "couplingProperties" dictionary the setup of the coupling routines of the CFD-DEM simulation are defined.
</P>
<P><B>Location:</B> $caseDir/CFD/constant
</P>
<P><B>Structure:</B>
</P>
<P>The dictionary is divided into two parts, "sub-models & settings" and "sub-model properties".
</P>
<P>In "sub-models & settings" the following routines must be specified:
</P>
<UL><LI>modelType
<LI>couplingInterval
<LI>voidFractionModel
<LI>locateModel
<LI>meshMotionModel
<LI>regionModel
<LI>IOModel
<LI>dataExchangeModel
<LI>averagingModel
<LI>forceModels
<LI>momCoupleModels
<LI>turbulenceModelType
</UL>
<P>In "sub-model properties" sub-dictionaries might be defined to specify model specific parameters.
</P>
<P><B>Settings:</B>
</P>
<P>Reasonable example settings for the "couplingProperties" dictionary are given in the tutorial cases.
</P>
<HR>
<H4><A NAME = "1_5"></A>1.5 "liggghtsCommands" dictionary
</H4>
<P><B>General:</B>
</P>
<P>In the "liggghtsCommands" dictionary liggghts commands being executed during a coupled CFD-DEM simulation are specified.
</P>
<P><B>Location:</B> $caseDir/CFD/constant
</P>
<P><B>Structure:</B>
</P>
<P>The dictionary is divided into two parts, first a list of "liggghtsCommandModels" is defined, then the settings for each model must be specified.
</P>
<P><B>Settings:</B>
</P>
<P>Reasonable example settings for the "liggghtsCommands" dictionary are given in the tutorial cases.
</P>
<HR>
<H4><A NAME = "cmd_5"></A><A NAME = "comm"></A>1.6 Models/Solvers
</H4>
<P>This section lists all CFDEMcoupling sub-models and solvers alphabetically, with a separate
listing below of styles within certain commands.
</P>
<DIV ALIGN=center><TABLE BORDER=1 >
<TR ALIGN="center"><TD ><A HREF = "IOModel.html">IOModel</A></TD><TD ><A HREF = "IOModel_basicIO.html">IOModel_basicIO</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "IOModel_noIO.html">IOModel_noIO</A></TD><TD ><A HREF = "averagingModel.html">averagingModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "averagingModel_dilute.html">averagingModel_dilute</A></TD><TD ><A HREF = "cfdemSolverIB.html">cfdemSolverIB</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "cfdemSolverPiso.html">cfdemSolverPiso</A></TD><TD ><A HREF = "cfdemSolverPisoScalar.html">cfdemSolverPisoScalar</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "clockModel.html">clockModel</A></TD><TD ><A HREF = "clockModel_noClock.html">clockModel_noClock</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "clockModel_standardClock.html">clockModel_standardClock</A></TD><TD ><A HREF = "dataExchangeModel.html">dataExchangeModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "dataExchangeModel_noDataExchange.html">dataExchangeModel_noDataExchange</A></TD><TD ><A HREF = "dataExchangeModel_oneWayVTK.html">dataExchangeModel_oneWayVTK</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "dataExchangeModel_twoWayFiles.html">dataExchangeModel_twoWayFiles</A></TD><TD ><A HREF = "dataExchangeModel_twoWayMPI.html">dataExchangeModel_twoWayMPI</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel.html">forceModel</A></TD><TD ><A HREF = "forceModel_Archimedes.html">forceModel_Archimedes</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel_ArchimedesIB.html">forceModel_ArchimedesIB</A></TD><TD ><A HREF = "forceModel_DiFeliceDrag.html">forceModel_DiFeliceDrag</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel_GidaspowDrag.html">forceModel_GidaspowDrag</A></TD><TD ><A HREF = "forceModel_KochHillDrag.html">forceModel_KochHillDrag</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel_LaEuScalarTemp.html">forceModel_LaEuScalarTemp</A></TD><TD ><A HREF = "forceModel_MeiLift.html">forceModel_MeiLift</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel_SchillerNaumannDrag.html">forceModel_SchillerNaumannDrag</A></TD><TD ><A HREF = "forceModel_ShirgaonkarIB.html">forceModel_ShirgaonkarIB</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel_gradPForce.html">forceModel_gradPForce</A></TD><TD ><A HREF = "forceModel_noDrag.html">forceModel_noDrag</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "forceModel_virtualMassForce.html">forceModel_virtualMassForce</A></TD><TD ><A HREF = "forceModel_viscForce.html">forceModel_viscForce</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "liggghtsCommandModel.html">liggghtsCommandModel</A></TD><TD ><A HREF = "liggghtsCommandModel_execute.html">liggghtsCommandModel_execute</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "liggghtsCommandModel_readLiggghtsData.html">liggghtsCommandModel_readLiggghtsData</A></TD><TD ><A HREF = "liggghtsCommandModel_runLiggghts.html">liggghtsCommandModel_runLiggghts</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "liggghtsCommandModel_writeLiggghts.html">liggghtsCommandModel_writeLiggghts</A></TD><TD ><A HREF = "locateModel.html">locateModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "locateModel_engineSearch.html">locateModel_engineSearch</A></TD><TD ><A HREF = "locateModel_engineSearchIB.html">locateModel_engineSearchIB</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "locateModel_standardSearch.html">locateModel_standardSearch</A></TD><TD ><A HREF = "meshMotionModel.html">meshMotionModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "meshMotionModel_noMeshMotion.html">meshMotionModel_noMeshMotion</A></TD><TD ><A HREF = "momCoupleModel.html">momCoupleModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "momCoupleModel_explicitCouple.html">momCoupleModel_explicitCouple</A></TD><TD ><A HREF = "momCoupleModel_implicitCouple.html">momCoupleModel_implicitCouple</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "momCoupleModel_noCouple.html">momCoupleModel_noCouple</A></TD><TD ><A HREF = "regionModel.html">regionModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "regionModel_allRegion.html">regionModel_allRegion</A></TD><TD ><A HREF = "voidFractionModel.html">voidfractionModel</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "voidFractionModel_GaussVoidFraction.html">voidfractionModel_GaussVoidFraction</A></TD><TD ><A HREF = "voidFractionModel_IBVoidFraction.html">voidfractionModel_IBVoidFraction</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "voidFractionModel_bigParticleVoidFraction.html">voidfractionModel_bigParticleVoidFraction</A></TD><TD ><A HREF = "voidFractionModel_centreVoidFraction.html">voidfractionModel_centreVoidFraction</A></TD></TR>
<TR ALIGN="center"><TD ><A HREF = "voidFractionModel_dividedVoidFraction.html">voidfractionModel_dividedVoidFraction</A>
</TD></TR></TABLE></DIV>
</HTML>

Binary file not shown.

View File

@ -0,0 +1,450 @@
"CFDEMproject WWW Site"_lws :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:link(of,http://www.openfoam.com)
:link(lig,http://www.cfdem.com)
:line
CFDEMcoupling Documentation :h2,c
:line
:c,image(Portfolio_CFDEMcoupling.png)
:line
1. Contents :h3
The CFDEMcoupling documentation is organized into the following sections. If you find errors or omissions in this manual or have suggestions for useful information to add, please send an email to the developers so we can improve the CFDEMcoupling documentation.
1.1 "About CFDEMcoupling"_#1_1
1.2 "Installation"_#1_2
1.3 "Tutorials"_#1_3
1.4 "couplingProperties dictionary"_#1_4
1.5 "liggghtsCommands dictionary"_#1_5
1.6 "Models and solvers"_#cmd_5 :all(b)
:line
1.1 About CFDEMcoupling :link(1_1),h4
CFDEM coupling provides an open source parallel coupled CFD-DEM framework combining the strengths of "LIGGGHTS"_lig DEM code and the Open Source CFD package "OpenFOAM(R)(*)"_of. The CFDEMcoupling toolbox allows to expand standard CFD solvers of "OpenFOAM(R)(*)"_of to include a coupling to the DEM code "LIGGGHTS"_lig. In this toolbox the particle representation within the CFD solver is organized by "cloud" classes. Key functionalities are organised in sub-models (e.g. force models, data exchange models, etc.) which can easily be selected and combined by dictionary settings.
The coupled solvers run fully parallel on distributed-memory clusters. Features are:
its modular approach allows users to easily implement new models :ulb,l
its MPI parallelization enables to use it for large scale problems :l
the "forum"_lws on CFD-DEM gives the possibility to exchange with other users / developers :l
the use of GIT allows to easily update to the latest version :l
basic documentation is provided :l
:ule
The file structure:
{src} directory including the source files of the coupling toolbox and models :ulb,l
{applications} directory including the solver files for coupled CFD-DEM simulations :l
{doc} directory including the documentation of CFDEMcoupling :l
{tutorials} directory including basic tutorial cases showing the functionality :l
:ule
Details on installation are given on the "CFDEMproject WWW Site"_lws .
The functionality of this CFD-DEM framwork is described via "tutorial cases"_#_1_2 showing how to use different solvers and models.
CFDEMcoupling stands for Computational Fluid Dynamics (CFD) -Discrete Element Method (DEM) coupling.
CFDEMcoupling is an open-source code, distributed freely under the terms of the GNU Public License (GPL).
Core development of CFDEMcoupling is done by Christoph Goniva and Christoph Kloss, both at DCS Computing GmbH, 2012
This documentation was written by Christoph Goniva, DCS Computing GmbH, 2012
:line
(*) "OpenFOAM(R)"_of is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
:line
1.2 Installation :link(1_2),h4
Please follow the installation routine provided at www.cfdem.com.
In order to get the latest code version, please use the git repository at http://github.com ("githubAccess"_githubAccess_public.html).
:line
1.3 Tutorials :link(1_3),h4
[General:]
Each solver of the CFDEMcoupling is comes with at least one tutorial example, showing its functionality and correct useage. Provided that the installation is correct, the tutorials can be run via "Allrun.sh" shell scripts. These scripts perform all necessary steps (preprocessing, run, postprocessing, visualization).
[Location:]
The tutorials can be found in the directory $CFDEM_PROJECT_DIR/tutorials, which can be reached by typing "cfdemTut"
[Structure:]
Each case is structured in a directory called "CFD" covering the CFD relevant settings and data, and a dirctory called "DEM" covering the DEM relevant settings and data. This allows to easily expand a pure CFD or DEM simulation case to a coupled case.
[Usage:]
Provided that the installation is correct, the tutorials can be run via "Allrun.sh" shell script, executed by typing "./Allrun.sh". The successful run of the script might need some third party software (e.g. octave, evince, etc.).
[Settings:]
The main settings of a simulation are done via dictionaries:
The DEM setup of each case is defined by a "LIGGGHTS"_lig input file located in $caseDir/DEM (e.g. in.liggghts_init). For details on the "LIGGGHTS"_lig setup, please have a look in the "LIGGGHTS"_lig manual.
Standard CFD settings are defined in $caseDir/CFD/constant (e.g. transportProperties, RASproperties, etc.) and $caseDir/CFD/system (e.g. fvSchemes, controlDict). You can find more information on that in "OpenFOAM(R)(*)"_of documentations (www.openFoam.com)(*).
Settings of the coupling routines are defined in $caseDir/CFD/constant/"couplingProperies"_#1_3 (e.g. force models, data exchange model, etc.) and $caseDir/CFD/constant/"liggghtsCommands"_#1_3 (allows to execute a LIGGGHTS command during a coupled simulation).
:line
1.4 "couplingProperties" dictionary :link(1_4),h4
[General:]
In the "couplingProperties" dictionary the setup of the coupling routines of the CFD-DEM simulation are defined.
[Location:] $caseDir/CFD/constant
[Structure:]
The dictionary is divided into two parts, "sub-models & settings" and "sub-model properties".
In "sub-models & settings" the following routines must be specified:
modelType :ulb,l
couplingInterval :l
voidFractionModel :l
locateModel :l
meshMotionModel :l
regionModel :l
IOModel :l
dataExchangeModel :l
averagingModel :l
forceModels :l
momCoupleModels :l
turbulenceModelType :l
:ule
In "sub-model properties" sub-dictionaries might be defined to specify model specific parameters.
[Settings:]
Reasonable example settings for the "couplingProperties" dictionary are given in the tutorial cases.
:line
1.5 "liggghtsCommands" dictionary :h4,link(1_5)
[General:]
In the "liggghtsCommands" dictionary liggghts commands being executed during a coupled CFD-DEM simulation are specified.
[Location:] $caseDir/CFD/constant
[Structure:]
The dictionary is divided into two parts, first a list of "liggghtsCommandModels" is defined, then the settings for each model must be specified.
[Settings:]
Reasonable example settings for the "liggghtsCommands" dictionary are given in the tutorial cases.
:line
1.6 Models/Solvers :h4,link(cmd_5),link(comm)
This section lists all CFDEMcoupling sub-models and solvers alphabetically, with a separate
listing below of styles within certain commands.
"IOModel"_IOModel.html,
"IOModel_basicIO"_IOModel_basicIO.html,
"IOModel_noIO"_IOModel_noIO.html,
"averagingModel"_averagingModel.html,
"averagingModel_dilute"_averagingModel_dilute.html,
"cfdemSolverIB"_cfdemSolverIB.html,
"cfdemSolverPiso"_cfdemSolverPiso.html,
"cfdemSolverPisoScalar"_cfdemSolverPisoScalar.html,
"clockModel"_clockModel.html,
"clockModel_noClock"_clockModel_noClock.html,
"clockModel_standardClock"_clockModel_standardClock.html,
"dataExchangeModel"_dataExchangeModel.html,
"dataExchangeModel_noDataExchange"_dataExchangeModel_noDataExchange.html,
"dataExchangeModel_oneWayVTK"_dataExchangeModel_oneWayVTK.html,
"dataExchangeModel_twoWayFiles"_dataExchangeModel_twoWayFiles.html,
"dataExchangeModel_twoWayMPI"_dataExchangeModel_twoWayMPI.html,
"forceModel"_forceModel.html,
"forceModel_Archimedes"_forceModel_Archimedes.html,
"forceModel_ArchimedesIB"_forceModel_ArchimedesIB.html,
"forceModel_DiFeliceDrag"_forceModel_DiFeliceDrag.html,
"forceModel_GidaspowDrag"_forceModel_GidaspowDrag.html,
"forceModel_KochHillDrag"_forceModel_KochHillDrag.html,
"forceModel_LaEuScalarTemp"_forceModel_LaEuScalarTemp.html,
"forceModel_MeiLift"_forceModel_MeiLift.html,
"forceModel_SchillerNaumannDrag"_forceModel_SchillerNaumannDrag.html,
"forceModel_ShirgaonkarIB"_forceModel_ShirgaonkarIB.html,
"forceModel_gradPForce"_forceModel_gradPForce.html,
"forceModel_noDrag"_forceModel_noDrag.html,
"forceModel_virtualMassForce"_forceModel_virtualMassForce.html,
"forceModel_viscForce"_forceModel_viscForce.html,
"liggghtsCommandModel"_liggghtsCommandModel.html,
"liggghtsCommandModel_execute"_liggghtsCommandModel_execute.html,
"liggghtsCommandModel_readLiggghtsData"_liggghtsCommandModel_readLiggghtsData.html,
"liggghtsCommandModel_runLiggghts"_liggghtsCommandModel_runLiggghts.html,
"liggghtsCommandModel_writeLiggghts"_liggghtsCommandModel_writeLiggghts.html,
"locateModel"_locateModel.html,
"locateModel_engineSearch"_locateModel_engineSearch.html,
"locateModel_engineSearchIB"_locateModel_engineSearchIB.html,
"locateModel_standardSearch"_locateModel_standardSearch.html,
"meshMotionModel"_meshMotionModel.html,
"meshMotionModel_noMeshMotion"_meshMotionModel_noMeshMotion.html,
"momCoupleModel"_momCoupleModel.html,
"momCoupleModel_explicitCouple"_momCoupleModel_explicitCouple.html,
"momCoupleModel_implicitCouple"_momCoupleModel_implicitCouple.html,
"momCoupleModel_noCouple"_momCoupleModel_noCouple.html,
"regionModel"_regionModel.html,
"regionModel_allRegion"_regionModel_allRegion.html,
"voidfractionModel"_voidFractionModel.html,
"voidfractionModel_GaussVoidFraction"_voidFractionModel_GaussVoidFraction.html,
"voidfractionModel_IBVoidFraction"_voidFractionModel_IBVoidFraction.html,
"voidfractionModel_bigParticleVoidFraction"_voidFractionModel_bigParticleVoidFraction.html,
"voidfractionModel_centreVoidFraction"_voidFractionModel_centreVoidFraction.html,
"voidfractionModel_dividedVoidFraction"_voidFractionModel_dividedVoidFraction.html :tb(c=2,ea=c)

678
doc/COPYING Normal file
View File

@ -0,0 +1,678 @@
-------------------------------------------------------------------------
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
-------------------------------------------------------------------------

10
doc/DISCLAIMER Normal file
View File

@ -0,0 +1,10 @@
This software is not approved or endorsed by Silicon Graphics International Corp. or the OpenFOAM® Foundation, the producer of the OpenFOAM® software and owner of the OpenFOAM® trade mark.
Detailed information on the OpenFOAM trademark can be found at
- http://www.openfoam.com/legal/trademark-policy.php
- http://www.openfoam.com/legal/trademark-guidelines.php
For further information on OpenCFD and OpenFOAM, please refer to
- http://www.openfoam.com

40
doc/IOModel.html Normal file
View File

@ -0,0 +1,40 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>IOModel command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>IOModel "model";
</PRE>
<UL><LI>model = name of IO-model to be applied
</UL>
<P><B>Examples:</B>
</P>
<P>IOModel "off";
</P>
<P>Note: This examples list might not be complete - please look for other models (IOModel_XY) in this documentation.
</P>
<P><B>Description:</B>
</P>
<P>The IO-model is the base class to write data (e.g. particle properties) to files.
</P>
<P><B>Restrictions:</B>
</P>
<P>none.
</P>
<P><B>Related commands:</B>
</P>
<P>Note: This examples list may be incomplete - please look for other models (IOModel_XY) in this documentation.
</P>
<P><B>Default:</B> none.
</P>
</HTML>

36
doc/IOModel.txt Normal file
View File

@ -0,0 +1,36 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
IOModel command :h3
[Syntax:]
Defined in couplingProperties dictionary.
IOModel "model"; :pre
model = name of IO-model to be applied :ul
[Examples:]
IOModel "off";
Note: This examples list might not be complete - please look for other models (IOModel_XY) in this documentation.
[Description:]
The IO-model is the base class to write data (e.g. particle properties) to files.
[Restrictions:]
none.
[Related commands:]
Note: This examples list may be incomplete - please look for other models (IOModel_XY) in this documentation.
[Default:] none.

32
doc/IOModel_basicIO.html Normal file
View File

@ -0,0 +1,32 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>IOModel_basicIO command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>IOModel "basicIO";
</PRE>
<P><B>Examples:</B>
</P>
<PRE>IOModel "basicIO";
</PRE>
<P><B>Description:</B>
</P>
<P>The basic IO-model writes particle positions velocities and radii to files. The output directory ($casePath/CFD/particles) is created automatically. Data is written every write time of the CFD simulation.
</P>
<P><B>Restrictions:</B> None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "IOModel.html">IOModel</A>
</P>
</HTML>

29
doc/IOModel_basicIO.txt Normal file
View File

@ -0,0 +1,29 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
IOModel_basicIO command :h3
[Syntax:]
Defined in couplingProperties dictionary.
IOModel "basicIO"; :pre
[Examples:]
IOModel "basicIO"; :pre
[Description:]
The basic IO-model writes particle positions velocities and radii to files. The output directory ($casePath/CFD/particles) is created automatically. Data is written every write time of the CFD simulation.
[Restrictions:] None.
[Related commands:]
"IOModel"_IOModel.html

32
doc/IOModel_noIO.html Normal file
View File

@ -0,0 +1,32 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>IOModel_noIO command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>IOModel "off";
</PRE>
<P><B>Examples:</B>
</P>
<PRE>IOModel "off";
</PRE>
<P><B>Description:</B>
</P>
<P>The noIO-model is a dummy IO model.
</P>
<P><B>Restrictions:</B> None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "IOModel.html">IOModel</A>
</P>
</HTML>

29
doc/IOModel_noIO.txt Normal file
View File

@ -0,0 +1,29 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
IOModel_noIO command :h3
[Syntax:]
Defined in couplingProperties dictionary.
IOModel "off"; :pre
[Examples:]
IOModel "off"; :pre
[Description:]
The noIO-model is a dummy IO model.
[Restrictions:] None.
[Related commands:]
"IOModel"_IOModel.html

BIN
doc/Portfolio_CFDEMcoupling.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,4 @@
1.6 Models/Solvers :h4,link(cmd_5),link(comm)
This section lists all CFDEMcoupling sub-models and solvers alphabetically, with a separate
listing below of styles within certain commands.

41
doc/averagingModel.html Normal file
View File

@ -0,0 +1,41 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>averagingModel command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>averagingModel model;
</PRE>
<UL><LI>model = name of averaging model to be applied
</UL>
<P><B>Examples:</B>
</P>
<PRE>averagingModel dense;
averagingModel dilute;
</PRE>
<P>Note: This examples list might not be complete - please look for other averagin models (averagingModel_XY) in this documentation.
</P>
<P><B>Description:</B>
</P>
<P>The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities).
</P>
<P><B>Restrictions:</B>
</P>
<P>None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "averagingModel_dense.html">dense</A>, <A HREF = "averagingModel_dilute.html">dilute</A>
</P>
<P><B>Default:</B> none
</P>
</HTML>

37
doc/averagingModel.txt Normal file
View File

@ -0,0 +1,37 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
averagingModel command :h3
[Syntax:]
Defined in couplingProperties dictionary.
averagingModel model; :pre
model = name of averaging model to be applied :ul
[Examples:]
averagingModel dense;
averagingModel dilute; :pre
Note: This examples list might not be complete - please look for other averagin models (averagingModel_XY) in this documentation.
[Description:]
The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities).
[Restrictions:]
None.
[Related commands:]
"dense"_averagingModel_dense.html, "dilute"_averagingModel_dilute.html
[Default:] none

View File

@ -0,0 +1,37 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>averagingModel_dense command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>averagingModel dense;
</PRE>
<P><B>Examples:</B>
</P>
<PRE>averagingModel dense;
</PRE>
<P><B>Description:</B>
</P>
<P>The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities).
In the "cfdemParticle cloud" this averaging model is used to calculate the average particle velocity inside a CFD cell. The "dense" model is supposed to be applied to cases where the granular regime is rather dense. The particle velocity inside a CFD cell is evaluated as an ensemble average of the particle velocities.
</P>
<P><B>Restrictions:</B>
</P>
<P>None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "averagingModel.html">averagingModel</A>, <A HREF = "averagingModel_dilute.html">dilute</A>
</P>
<P><B>Default:</B> none
</P>
</HTML>

View File

@ -0,0 +1,35 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>averagingModel_dilute command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>averagingModel dilute;
</PRE>
<P><B>Examples:</B>
</P>
<PRE>averagingModel dilute;
</PRE>
<P><B>Description:</B>
</P>
<P>The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities).
In the "cfdemParticle cloud" this averaging model is used to calculate the average particle velocity inside a CFD cell. The "dilute" model is supposed to be applied to cases where the granular regime is rather dilute. The particle velocity inside a CFD cell is evaluated from a single particle in a cell (no averaging).
</P>
<P><B>Restrictions:</B>
</P>
<P>This model is computationally efficient, but should only be used when only one particle is inside one CFD cell.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "averagingModel.html">averagingModel</A>, <A HREF = "averagingModel_dense.html">dense</A>
</P>
</HTML>

View File

@ -0,0 +1,32 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
averagingModel_dilute command :h3
[Syntax:]
Defined in couplingProperties dictionary.
averagingModel dilute; :pre
[Examples:]
averagingModel dilute; :pre
[Description:]
The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities).
In the "cfdemParticle cloud" this averaging model is used to calculate the average particle velocity inside a CFD cell. The "dilute" model is supposed to be applied to cases where the granular regime is rather dilute. The particle velocity inside a CFD cell is evaluated from a single particle in a cell (no averaging).
[Restrictions:]
This model is computationally efficient, but should only be used when only one particle is inside one CFD cell.
[Related commands:]
"averagingModel"_averagingModel.html, "dense"_averagingModel_dense.html

53
doc/cfdemSolverIB.html Normal file
View File

@ -0,0 +1,53 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>cfdemSolverIB command
</H3>
<P><B>Description:</B>
</P>
<P>"cfdemSolverIB" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework, for calculating
the dynamics between immersed bodies and the surrounding fluid. Being an implementation of an immersed boundary method it allows tackling problems where the body diameter exceeds the maximal size of a fluid cell. Using the toolbox of OpenFOAM(R)(*) the governing equations of the fluid are computed and the corrections of velocity and pressure field with respect to the body-movement information, gained from LIGGGHTS, are incorporated.
</P>
<P>Code of this solver contributions by Alice Hager, JKU.
</P>
<P><B>Algorithm:</B>
</P>
<P>For each time step ...
</P>
<UL><LI>the motion of the spheres is calculated (position, velocity, angular velocity, force...) with LIGGGHTS using the velocity and pressure-field from the previous time step (initial condition for t=0).
<LI>the Navier-Stokes equations are solved on the whole computational domain, disregarding the solid phase.
<LI>the spheres are located within the mesh: each sphere is represented by a cluster of cells, which are either totally or partially covered by the body, depending on its exact position.
<LI>the correction of the velocity and pressure field of the fluid phase takes place, using the information about the location of the spheres and their (angular) velocity.
</UL>
<P><B>Use:</B>
</P>
<P>The solver is realized within the Open Source framework CFDEMcoupling. Just as for the unresolved CFD-DEM solver cfdemSolverPiso the file CFD/constant/couplingProperties contains information about the settings for the different models. While IOmodel, DataExchangeModel etc. are applicable for all CFDEMcoupling-solvers, special locate-, force- and void fraction models were designed for the present case:
</P>
<P><A HREF = "locateModel_engineSearchIB.html">engineSearchIB</A>, <A HREF = "forceModel_ArchimedesIB.html">ArchimedesIB</A>, <A HREF = "forceModel_ShirgaonkarIB.html">ShirgaonkarIB</A>, <A HREF = "voidFractionModel_IBVoidFraction.html">IBVoidfraction</A>
</P>
<P><B>References:</B>
</P>
<P>GONIVA, C., KLOSS, C., HAGER,A., WIERINK, G. and PIRKER, S. (2011): "A MULTI-PURPOSE OPEN SOURCE CFD-DEM APPROACH", Proc. of the 8th Int. Conf. on CFD in Oil and Gas, Metallurgical and Process Industries, Trondheim, Norway
</P>
<P>and
</P>
<P>HAGER, A., KLOSS, C. and GONIVA, C. (2011): "TOWARDS AN EFFICIENT IMMERSED BOUNDARY METHOD WITHIN AN OPEN SOURCE FRAMEWORK", Proc. of the 8th Int. Conf. on CFD in Oil and Gas, Metallurgical and Process Industries, Trondheim, Norway
</P>
<HR>
<P>(*) <A HREF = "of">OpenFOAM(R)</A> is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
</P>
<HR>
</HTML>

44
doc/cfdemSolverIB.txt Normal file
View File

@ -0,0 +1,44 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
cfdemSolverIB command :h3
[Description:]
"cfdemSolverIB" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework, for calculating
the dynamics between immersed bodies and the surrounding fluid. Being an implementation of an immersed boundary method it allows tackling problems where the body diameter exceeds the maximal size of a fluid cell. Using the toolbox of OpenFOAM(R)(*) the governing equations of the fluid are computed and the corrections of velocity and pressure field with respect to the body-movement information, gained from LIGGGHTS, are incorporated.
Code of this solver contributions by Alice Hager, JKU.
[Algorithm:]
For each time step ...
the motion of the spheres is calculated (position, velocity, angular velocity, force...) with LIGGGHTS using the velocity and pressure-field from the previous time step (initial condition for t=0). :ulb,l
the Navier-Stokes equations are solved on the whole computational domain, disregarding the solid phase. :l
the spheres are located within the mesh: each sphere is represented by a cluster of cells, which are either totally or partially covered by the body, depending on its exact position. :l
the correction of the velocity and pressure field of the fluid phase takes place, using the information about the location of the spheres and their (angular) velocity. :l
:ule
[Use:]
The solver is realized within the Open Source framework CFDEMcoupling. Just as for the unresolved CFD-DEM solver cfdemSolverPiso the file CFD/constant/couplingProperties contains information about the settings for the different models. While IOmodel, DataExchangeModel etc. are applicable for all CFDEMcoupling-solvers, special locate-, force- and void fraction models were designed for the present case:
"engineSearchIB"_locateModel_engineSearchIB.html, "ArchimedesIB"_forceModel_ArchimedesIB.html, "ShirgaonkarIB"_forceModel_ShirgaonkarIB.html, "IBVoidfraction"_voidFractionModel_IBVoidFraction.html
[References:]
GONIVA, C., KLOSS, C., HAGER,A., WIERINK, G. and PIRKER, S. (2011): "A MULTI-PURPOSE OPEN SOURCE CFD-DEM APPROACH", Proc. of the 8th Int. Conf. on CFD in Oil and Gas, Metallurgical and Process Industries, Trondheim, Norway
and
HAGER, A., KLOSS, C. and GONIVA, C. (2011): "TOWARDS AN EFFICIENT IMMERSED BOUNDARY METHOD WITHIN AN OPEN SOURCE FRAMEWORK", Proc. of the 8th Int. Conf. on CFD in Oil and Gas, Metallurgical and Process Industries, Trondheim, Norway
:line
(*) "OpenFOAM(R)"_of is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
:line

26
doc/cfdemSolverPiso.html Normal file
View File

@ -0,0 +1,26 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>cfdemSolverPiso command
</H3>
<P><B>Description:</B>
</P>
<P>"cfdemSolverPiso" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework. Based on pisoFoam(R)(*), a finite volume based solver for turbulent Navier-Stokes equations applying PISO algorithm, "cfdemSolverPiso" has additional functionality for a coupling to the DEM code "LIGGGHTS". The volume averaged Navier-Stokes Equations are solved accounting for momentum exchange and volume displacement of discrete particles whose trajectories are calculated in the DEM code LIGGGHTS.
</P>
<P>see:
</P>
<P>GONIVA, C., KLOSS, C., HAGER,A. and PIRKER, S. (2010): "An Open Source CFD-DEM Perspective", Proc. of OpenFOAM Workshop, Göteborg, June 22.-24.
</P>
<HR>
<P>(*) <A HREF = "of">OpenFOAM(R)</A> is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
</P>
<HR>
</HTML>

24
doc/cfdemSolverPiso.txt Normal file
View File

@ -0,0 +1,24 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
cfdemSolverPiso command :h3
[Description:]
"cfdemSolverPiso" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework. Based on pisoFoam(R)(*), a finite volume based solver for turbulent Navier-Stokes equations applying PISO algorithm, "cfdemSolverPiso" has additional functionality for a coupling to the DEM code "LIGGGHTS". The volume averaged Navier-Stokes Equations are solved accounting for momentum exchange and volume displacement of discrete particles whose trajectories are calculated in the DEM code LIGGGHTS.
see:
GONIVA, C., KLOSS, C., HAGER,A. and PIRKER, S. (2010): "An Open Source CFD-DEM Perspective", Proc. of OpenFOAM Workshop, Göteborg, June 22.-24.
:line
(*) "OpenFOAM(R)"_of is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
:line

View File

@ -0,0 +1,26 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>cfdemSolverPisoScalar command
</H3>
<P><B>Description:</B>
</P>
<P>"cfdemSolverPisoScalar" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework. Based on pisoFoam(R)(*), a finite volume based solver for turbulent Navier-Stokes equations applying PISO algorithm, "cfdemSolverPisoScalar" has additional functionality for a coupling to the DEM code "LIGGGHTS" as well as a scalar transport equation. The volume averaged Navier-Stokes Equations are solved accounting for momentum exchange and volume displacement of discrete particles whose trajectories are calculated in the DEM code LIGGGHTS. The scalar transport equation is coupled to scalar properties of the particle phase, thus convective heat transfer in a fluid granular system can be modeled with "cfdemSolverPisoScalar".
</P>
<P>see:
</P>
<P>GONIVA, C., KLOSS, C., HAGER,A. and PIRKER, S. (2010): "An Open Source CFD-DEM Perspective", Proc. of OpenFOAM Workshop, Göteborg, June 22.-24.
</P>
<HR>
<P>(*) <A HREF = "of">OpenFOAM(R)</A> is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
</P>
<HR>
</HTML>

View File

@ -0,0 +1,22 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
cfdemSolverPisoScalar command :h3
[Description:]
"cfdemSolverPisoScalar" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework. Based on pisoFoam(R)(*), a finite volume based solver for turbulent Navier-Stokes equations applying PISO algorithm, "cfdemSolverPisoScalar" has additional functionality for a coupling to the DEM code "LIGGGHTS" as well as a scalar transport equation. The volume averaged Navier-Stokes Equations are solved accounting for momentum exchange and volume displacement of discrete particles whose trajectories are calculated in the DEM code LIGGGHTS. The scalar transport equation is coupled to scalar properties of the particle phase, thus convective heat transfer in a fluid granular system can be modeled with "cfdemSolverPisoScalar".
see:
GONIVA, C., KLOSS, C., HAGER,A. and PIRKER, S. (2010): "An Open Source CFD-DEM Perspective", Proc. of OpenFOAM Workshop, Göteborg, June 22.-24.
:line
(*) "OpenFOAM(R)"_of is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark.
:line

36
doc/clockModel.html Normal file
View File

@ -0,0 +1,36 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>clockModel command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>clockModel model;
</PRE>
<UL><LI>model = name of the clockModel to be applied
</UL>
<P><B>Examples:</B>
</P>
<PRE>clockModel standardClock;
</PRE>
<P>Note: This examples list might not be complete - please look for other models (clockModel_XY) in this documentation.
</P>
<P><B>Description:</B>
</P>
<P>The clockModel is the base class for models to examine the code/algorithm with respect to run time.
</P>
<P>Main parts of the clockModel classes are written by Josef Kerbl, JKU.
</P>
<P><B>Restrictions:</B> none.
</P>
<P><B>Default:</B> none.
</P>
</HTML>

32
doc/clockModel.txt Normal file
View File

@ -0,0 +1,32 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
clockModel command :h3
[Syntax:]
Defined in couplingProperties dictionary.
clockModel model; :pre
model = name of the clockModel to be applied :ul
[Examples:]
clockModel standardClock; :pre
Note: This examples list might not be complete - please look for other models (clockModel_XY) in this documentation.
[Description:]
The clockModel is the base class for models to examine the code/algorithm with respect to run time.
Main parts of the clockModel classes are written by Josef Kerbl, JKU.
[Restrictions:] none.
[Default:] none.

View File

@ -0,0 +1,32 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>clockModel_noClock command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>clockModel off;
</PRE>
<P><B>Examples:</B>
</P>
<PRE>clockModel off;
</PRE>
<P><B>Description:</B>
</P>
<P>The "noClock" model is a dummy clockModel model which does not measure/evaluate the run time.
</P>
<P><B>Restrictions:</B> none.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "clockModel.html">clockModel</A>
</P>
</HTML>

View File

@ -0,0 +1,29 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
clockModel_noClock command :h3
[Syntax:]
Defined in couplingProperties dictionary.
clockModel off; :pre
[Examples:]
clockModel off; :pre
[Description:]
The "noClock" model is a dummy clockModel model which does not measure/evaluate the run time.
[Restrictions:] none.
[Related commands:]
"clockModel"_clockModel.html

View File

@ -0,0 +1,34 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>clockModel_standardClock command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>clockModel standardClock;
</PRE>
<P><B>Examples:</B>
</P>
<PRE>clockModel standardClock;
</PRE>
<P><B>Description:</B>
</P>
<P>The "standardClock" model is a basic clockModel model which measures the run time between every ".start(int arrayPos,string name)" and ".stop(string name)" statement placed in the code. If a ".start(name)" is called more than once (e.g. in a loop) the accumulated times are calculated. After the simulation has finished, the data is stored in $caseDir/CFD/clockData/$startTime/*.txt .
Since the measurements are stored in an array, it is necessary to put a variable <I>arrayPos</I> (type integer) at the start command. Those do not need to be in ascending order and positions may be omitted. The standard size of this array is 30 and can be changed at the initialization of the standardClock class. If <I>arrayPos</I> is out of bounds, the array size will be doubled. The stop command does not need <I>arrayPos</I>, since the class remembers the positions. The string name is for easier evaluation afterwards an may be omitted like ".start(int arrayPos)" and ".stop()". The command ".stop(string name)" is a safety feature, because if the name is not equal to the started name, output will be produced for information.
After the case ran you may use the matPlot.py script located in $CFDEM_UT_DIR/vizClock/ to produce a graphical output of your measurements. The usage is like 'python < matPlot.py' and you have to be in the directory of the desired time step, where there is a file called "timeEvalFull.txt", which contains averaged and maximum data with respect to the number of processes.
</P>
<P><B>Restrictions:</B> none.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "clockModel.html">clockModel</A>
</P>
</HTML>

View File

@ -0,0 +1,31 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
clockModel_standardClock command :h3
[Syntax:]
Defined in couplingProperties dictionary.
clockModel standardClock; :pre
[Examples:]
clockModel standardClock; :pre
[Description:]
The "standardClock" model is a basic clockModel model which measures the run time between every ".start(int arrayPos,string name)" and ".stop(string name)" statement placed in the code. If a ".start(name)" is called more than once (e.g. in a loop) the accumulated times are calculated. After the simulation has finished, the data is stored in $caseDir/CFD/clockData/$startTime/*.txt .
Since the measurements are stored in an array, it is necessary to put a variable {arrayPos} (type integer) at the start command. Those do not need to be in ascending order and positions may be omitted. The standard size of this array is 30 and can be changed at the initialization of the standardClock class. If {arrayPos} is out of bounds, the array size will be doubled. The stop command does not need {arrayPos}, since the class remembers the positions. The string name is for easier evaluation afterwards an may be omitted like ".start(int arrayPos)" and ".stop()". The command ".stop(string name)" is a safety feature, because if the name is not equal to the started name, output will be produced for information.
After the case ran you may use the matPlot.py script located in $CFDEM_UT_DIR/vizClock/ to produce a graphical output of your measurements. The usage is like 'python < matPlot.py' and you have to be in the directory of the desired time step, where there is a file called "timeEvalFull.txt", which contains averaged and maximum data with respect to the number of processes.
[Restrictions:] none.
[Related commands:]
"clockModel"_clockModel.html

View File

@ -0,0 +1,41 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>dataExchangeModel command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>dataExchangeModel model;
</PRE>
<UL><LI>model = name of data exchange model to be applied
</UL>
<P><B>Examples:</B>
</P>
<PRE>dataExchangeModel twoWayFiles;
dataExchangeModel twoWayMPI;
</PRE>
<P>Note: This examples list might not be complete - please look for other models (dataExchangeModel_XY) in this documentation.
</P>
<P><B>Description:</B>
</P>
<P>The data exchange model performs the data exchange between the DEM code and the CFD code.
</P>
<P><B>Restrictions:</B>
</P>
<P>None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "dataExchangeModel_noDataExchange.html">noDataExchange</A>, <A HREF = "dataExchangeModel_oneWayVTK.html">oneWayVTK</A>, <A HREF = "dataExchangeModel_twoWayFiles.html">twoWayFiles</A>, <A HREF = "dataExchangeModel_twoWayMPI.html">twoWayMPI</A>
</P>
<P><B>Default:</B> none
</P>
</HTML>

37
doc/dataExchangeModel.txt Normal file
View File

@ -0,0 +1,37 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
dataExchangeModel command :h3
[Syntax:]
Defined in couplingProperties dictionary.
dataExchangeModel model; :pre
model = name of data exchange model to be applied :ul
[Examples:]
dataExchangeModel twoWayFiles;
dataExchangeModel twoWayMPI; :pre
Note: This examples list might not be complete - please look for other models (dataExchangeModel_XY) in this documentation.
[Description:]
The data exchange model performs the data exchange between the DEM code and the CFD code.
[Restrictions:]
None.
[Related commands:]
"noDataExchange"_dataExchangeModel_noDataExchange.html, "oneWayVTK"_dataExchangeModel_oneWayVTK.html, "twoWayFiles"_dataExchangeModel_twoWayFiles.html, "twoWayMPI"_dataExchangeModel_twoWayMPI.html
[Default:] none

View File

@ -0,0 +1,34 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>dataExchangeModel_noDataExchange command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>dataExchangeModel noDataExchange;
</PRE>
<P><B>Examples:</B>
</P>
<PRE>dataExchangeModel noDataExchange;
</PRE>
<P><B>Description:</B>
</P>
<P>The data exchange model performs the data exchange between the DEM code and the CFD code. The noDataExchange model is a dummy model where no data is exchanged.
</P>
<P><B>Restrictions:</B>
</P>
<P>None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "dataExchangeModel.html">dataExchangeModel</A>
</P>
</HTML>

View File

@ -0,0 +1,31 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
dataExchangeModel_noDataExchange command :h3
[Syntax:]
Defined in couplingProperties dictionary.
dataExchangeModel noDataExchange; :pre
[Examples:]
dataExchangeModel noDataExchange; :pre
[Description:]
The data exchange model performs the data exchange between the DEM code and the CFD code. The noDataExchange model is a dummy model where no data is exchanged.
[Restrictions:]
None.
[Related commands:]
"dataExchangeModel"_dataExchangeModel.html

View File

@ -0,0 +1,58 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>dataExchangeModel_oneWayVTK command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>dataExchangeModel oneWayVTK;
oneWayVTKProps
{
DEMts timeStep;
relativePath "path";
couplingFilename "filename";
maxNumberOfParticles number;
};
</PRE>
<UL><LI><I>timeStep</I> = time step size of stored DEM data
<LI><I>path</I> = path to the VTK data files relative do simulation directory
<LI><I>filename</I> = filename of the VTK file series
<LI><I>number</I> = maximum nuber of particles in DEM simulation
</UL>
<P><B>Examples:</B>
</P>
<PRE>dataExchangeModel oneWayVTK;
oneWayVTKProps
{
DEMts 0.0001;
relativePath "../DEM/post";
couplingFilename "vtk_out%4.4d.vtk";
maxNumberOfParticles 30000;
}
</PRE>
<P><B>Description:</B>
</P>
<P>The data exchange model performs the data exchange between the DEM code and the CFD code. The oneWayVTK model is a model that can exchange particle properties from DEM to CFD based on previously stored VTK data.
</P>
<P><B>Restrictions:</B>
</P>
<P>None.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "dataExchangeModel.html">dataExchangeModel</A>
</P>
</HTML>

View File

@ -0,0 +1,51 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
dataExchangeModel_oneWayVTK command :h3
[Syntax:]
Defined in couplingProperties dictionary.
dataExchangeModel oneWayVTK;
oneWayVTKProps
\{
DEMts timeStep;
relativePath "path";
couplingFilename "filename";
maxNumberOfParticles number;
\}; :pre
{timeStep} = time step size of stored DEM data :ulb,l
{path} = path to the VTK data files relative do simulation directory :l
{filename} = filename of the VTK file series :l
{number} = maximum nuber of particles in DEM simulation :l
:ule
[Examples:]
dataExchangeModel oneWayVTK;
oneWayVTKProps
\{
DEMts 0.0001;
relativePath "../DEM/post";
couplingFilename "vtk_out%4.4d.vtk";
maxNumberOfParticles 30000;
\} :pre
[Description:]
The data exchange model performs the data exchange between the DEM code and the CFD code. The oneWayVTK model is a model that can exchange particle properties from DEM to CFD based on previously stored VTK data.
[Restrictions:]
None.
[Related commands:]
"dataExchangeModel"_dataExchangeModel.html

View File

@ -0,0 +1,50 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>dataExchangeModel_twoWayFiles command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>dataExchangeModel twoWayFiles;
twoWayFilesProps
{
couplingFilename "filename";
maxNumberOfParticles number;
};
</PRE>
<UL><LI><I>filename</I> = filename of the VTK file series
<LI><I>number</I> = maximum nuber of particles in DEM simulation
</UL>
<P><B>Examples:</B>
</P>
<PRE>dataExchangeModel twoWayFiles;
twoWayFilesProps
{
couplingFilename "vtk_out%4.4d.vtk";
maxNumberOfParticles 30000;
}
</PRE>
<P><B>Description:</B>
</P>
<P>The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayFiles model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via files that are sequentially written/read by the codes.
</P>
<P><B>Restrictions:</B>
</P>
<P>Developed only for two processors, one for DEM and on for CFD run.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "dataExchangeModel.html">dataExchangeModel</A>
</P>
</HTML>

View File

@ -0,0 +1,45 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
dataExchangeModel_twoWayFiles command :h3
[Syntax:]
Defined in couplingProperties dictionary.
dataExchangeModel twoWayFiles;
twoWayFilesProps
\{
couplingFilename "filename";
maxNumberOfParticles number;
\}; :pre
{filename} = filename of the VTK file series :ulb,l
{number} = maximum nuber of particles in DEM simulation :l
:ule
[Examples:]
dataExchangeModel twoWayFiles;
twoWayFilesProps
\{
couplingFilename "vtk_out%4.4d.vtk";
maxNumberOfParticles 30000;
\} :pre
[Description:]
The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayFiles model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via files that are sequentially written/read by the codes.
[Restrictions:]
Developed only for two processors, one for DEM and on for CFD run.
[Related commands:]
"dataExchangeModel"_dataExchangeModel.html

View File

@ -0,0 +1,46 @@
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A>
</CENTER>
<HR>
<H3>dataExchangeModel_twoWayMPI command
</H3>
<P><B>Syntax:</B>
</P>
<P>Defined in couplingProperties dictionary.
</P>
<PRE>dataExchangeModel twoWayMPI;
twoWayMPIProps
{
liggghtsPath "path";
};
</PRE>
<UL><LI><I>path</I> = path to the DEM simulation input file
</UL>
<P><B>Examples:</B>
</P>
<PRE>dataExchangeModel twoWayMPI;
twoWayMPIProps
{
liggghtsPath "../DEM/in.liggghts_init";
}
</PRE>
<P><B>Description:</B>
</P>
<P>The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayMPI model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via MPI technique. The DEM run is executed by the coupling model, via a liggghtsCommandModel object.
</P>
<P><B>Restrictions:</B>
</P>
<P>none.
</P>
<P><B>Related commands:</B>
</P>
<P><A HREF = "dataExchangeModel.html">dataExchangeModel</A>
</P>
</HTML>

View File

@ -0,0 +1,42 @@
"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c
:link(lws,http://www.cfdem.com)
:link(lc,CFDEMcoupling_Manual.html#comm)
:line
dataExchangeModel_twoWayMPI command :h3
[Syntax:]
Defined in couplingProperties dictionary.
dataExchangeModel twoWayMPI;
twoWayMPIProps
\{
liggghtsPath "path";
\}; :pre
{path} = path to the DEM simulation input file :ulb,l
:ule
[Examples:]
dataExchangeModel twoWayMPI;
twoWayMPIProps
\{
liggghtsPath "../DEM/in.liggghts_init";
\} :pre
[Description:]
The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayMPI model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via MPI technique. The DEM run is executed by the coupling model, via a liggghtsCommandModel object.
[Restrictions:]
none.
[Related commands:]
"dataExchangeModel"_dataExchangeModel.html

1551
doc/doxygen/confFile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,130 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Class List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li class="current"><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Class List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1allRegion.html">Foam::allRegion</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1averagingModel.html">Foam::averagingModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1basicIO.html">Foam::basicIO</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1bigParticleVoidFraction.html">Foam::bigParticleVoidFraction</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1centreVoidFraction.html">Foam::centreVoidFraction</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1cfdemCloud.html">Foam::cfdemCloud</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1cfdemCloudIB.html">Foam::cfdemCloudIB</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1cfdemCloudMS.html">Foam::cfdemCloudMS</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1dataExchangeModel.html">Foam::dataExchangeModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1dense.html">Foam::dense</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1differentialRegion.html">Foam::differentialRegion</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1dilute.html">Foam::dilute</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1dividedVoidFraction.html">Foam::dividedVoidFraction</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1dividedVoidFractionMS.html">Foam::dividedVoidFractionMS</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1engineSearch.html">Foam::engineSearch</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1engineSearchIB.html">Foam::engineSearchIB</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1engineSearchLambda.html">Foam::engineSearchLambda</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1execute.html">Foam::execute</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1explicitCouple.html">Foam::explicitCouple</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1fieldTimeAverage.html">Foam::fieldTimeAverage</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1GaussVoidFraction.html">Foam::GaussVoidFraction</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1GidaspowDrag.html">Foam::GidaspowDrag</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1gradPForce.html">Foam::gradPForce</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1implicitCouple.html">Foam::implicitCouple</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1interface.html">Foam::interface</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1IOModel.html">Foam::IOModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1KochHillDrag.html">Foam::KochHillDrag</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1KochHillDrag2.html">Foam::KochHillDrag2</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1LaEuScalarDust.html">Foam::LaEuScalarDust</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1LaEuScalarTemp.html">Foam::LaEuScalarTemp</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1liggghtsCommandModel.html">Foam::liggghtsCommandModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1locateModel.html">Foam::locateModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1MeiLift.html">Foam::MeiLift</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1momCoupleModel.html">Foam::momCoupleModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1noCouple.html">Foam::noCouple</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1noDataExchange.html">Foam::noDataExchange</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1noDrag.html">Foam::noDrag</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1noIO.html">Foam::noIO</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1noMeshMotion.html">Foam::noMeshMotion</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1oneWayVTK.html">Foam::oneWayVTK</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1readLiggghtsData.html">Foam::readLiggghtsData</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1regionModel.html">Foam::regionModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1SchillerNaumannDrag.html">Foam::SchillerNaumannDrag</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1ShirgaonkarIB.html">Foam::ShirgaonkarIB</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1standardSearch.html">Foam::standardSearch</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1TempExchange.html">Foam::TempExchange</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1totalMomentumExchange.html">Foam::totalMomentumExchange</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1turboEngineSearch.html">Foam::turboEngineSearch</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1twoWayFiles.html">Foam::twoWayFiles</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1twoWayMPI.html">Foam::twoWayMPI</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1virtualMassForce.html">Foam::virtualMassForce</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1viscForce.html">Foam::viscForce</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1voidFractionModel.html">Foam::voidFractionModel</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1voidFractionModelMS.html">Foam::voidFractionModelMS</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classFoam_1_1volWeightedAverage.html">Foam::volWeightedAverage</a></td><td class="indexvalue"></td></tr>
</table>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:18 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,252 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdemCloud/cfdemCloudI.H Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
</ul>
</div>
<h1>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdemCloud/cfdemCloudI.H</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*---------------------------------------------------------------------------*\</span>
<a name="l00002"></a>00002 <span class="comment"> ========= |</span>
<a name="l00003"></a>00003 <span class="comment"> \\ / F ield | OpenFOAM: The Open Source CFD Toolbox</span>
<a name="l00004"></a>00004 <span class="comment"> \\ / O peration |</span>
<a name="l00005"></a>00005 <span class="comment"> \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.</span>
<a name="l00006"></a>00006 <span class="comment"> \\/ M anipulation |</span>
<a name="l00007"></a>00007 <span class="comment">-------------------------------------------------------------------------------</span>
<a name="l00008"></a>00008 <span class="comment">License</span>
<a name="l00009"></a>00009 <span class="comment"> This file is part of OpenFOAM.</span>
<a name="l00010"></a>00010 <span class="comment"></span>
<a name="l00011"></a>00011 <span class="comment"> OpenFOAM is free software; you can redistribute it and/or modify it</span>
<a name="l00012"></a>00012 <span class="comment"> under the terms of the GNU General Public License as published by the</span>
<a name="l00013"></a>00013 <span class="comment"> Free Software Foundation; either version 2 of the License, or (at your</span>
<a name="l00014"></a>00014 <span class="comment"> option) any later version.</span>
<a name="l00015"></a>00015 <span class="comment"></span>
<a name="l00016"></a>00016 <span class="comment"> OpenFOAM is distributed in the hope that it will be useful, but WITHOUT</span>
<a name="l00017"></a>00017 <span class="comment"> ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or</span>
<a name="l00018"></a>00018 <span class="comment"> FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License</span>
<a name="l00019"></a>00019 <span class="comment"> for more details.</span>
<a name="l00020"></a>00020 <span class="comment"></span>
<a name="l00021"></a>00021 <span class="comment"> You should have received a copy of the GNU General Public License</span>
<a name="l00022"></a>00022 <span class="comment"> along with OpenFOAM; if not, write to the Free Software Foundation,</span>
<a name="l00023"></a>00023 <span class="comment"> Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA</span>
<a name="l00024"></a>00024 <span class="comment"></span>
<a name="l00025"></a>00025 <span class="comment">\*---------------------------------------------------------------------------*/</span>
<a name="l00026"></a>00026
<a name="l00027"></a>00027 <span class="keyword">namespace </span>Foam
<a name="l00028"></a>00028 {
<a name="l00029"></a>00029
<a name="l00030"></a>00030 <span class="comment">// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //</span>
<a name="l00031"></a>00031 <span class="keyword">inline</span> <span class="keyword">const</span> <span class="keywordtype">bool</span>&amp; cfdemCloud::ignore()<span class="keyword"> const</span>
<a name="l00032"></a>00032 <span class="keyword"></span>{
<a name="l00033"></a>00033 <span class="keywordflow">return</span> ignore_;
<a name="l00034"></a>00034 }
<a name="l00035"></a>00035
<a name="l00036"></a>00036 <span class="keyword">inline</span> <span class="keyword">const</span> fvMesh&amp; cfdemCloud::mesh()<span class="keyword"> const</span>
<a name="l00037"></a>00037 <span class="keyword"></span>{
<a name="l00038"></a>00038 <span class="keywordflow">return</span> mesh_;
<a name="l00039"></a>00039 }
<a name="l00040"></a>00040
<a name="l00041"></a>00041 <span class="keyword">inline</span> <span class="keywordtype">bool</span> cfdemCloud::verbous()<span class="keyword"> const</span>
<a name="l00042"></a>00042 <span class="keyword"></span>{
<a name="l00043"></a>00043 <span class="keywordflow">return</span> verbous_;
<a name="l00044"></a>00044 }
<a name="l00045"></a>00045
<a name="l00046"></a>00046 <span class="keyword">inline</span> <span class="keyword">const</span> IOdictionary&amp; cfdemCloud::couplingProperties()<span class="keyword"> const</span>
<a name="l00047"></a>00047 <span class="keyword"></span>{
<a name="l00048"></a>00048 <span class="keywordflow">return</span> couplingProperties_;
<a name="l00049"></a>00049 }
<a name="l00050"></a>00050
<a name="l00051"></a>00051 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::positions()<span class="keyword"> const</span>
<a name="l00052"></a>00052 <span class="keyword"></span>{
<a name="l00053"></a>00053 <span class="keywordflow">return</span> positions_;
<a name="l00054"></a>00054 }
<a name="l00055"></a>00055
<a name="l00056"></a>00056 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::velocities()<span class="keyword"> const</span>
<a name="l00057"></a>00057 <span class="keyword"></span>{
<a name="l00058"></a>00058 <span class="keywordflow">return</span> velocities_;
<a name="l00059"></a>00059 }
<a name="l00060"></a>00060
<a name="l00061"></a>00061 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::impForces()<span class="keyword"> const</span>
<a name="l00062"></a>00062 <span class="keyword"></span>{
<a name="l00063"></a>00063 <span class="keywordflow">return</span> impForces_;
<a name="l00064"></a>00064 }
<a name="l00065"></a>00065
<a name="l00066"></a>00066 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::expForces()<span class="keyword"> const</span>
<a name="l00067"></a>00067 <span class="keyword"></span>{
<a name="l00068"></a>00068 <span class="keywordflow">return</span> expForces_;
<a name="l00069"></a>00069 }
<a name="l00070"></a>00070
<a name="l00071"></a>00071 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::radii()<span class="keyword"> const</span>
<a name="l00072"></a>00072 <span class="keyword"></span>{
<a name="l00073"></a>00073 <span class="keywordflow">return</span> radii_;
<a name="l00074"></a>00074 }
<a name="l00075"></a>00075
<a name="l00076"></a>00076 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::voidfractions()<span class="keyword"> const</span>
<a name="l00077"></a>00077 <span class="keyword"></span>{
<a name="l00078"></a>00078 <span class="keywordflow">return</span> voidfractions_;
<a name="l00079"></a>00079 }
<a name="l00080"></a>00080
<a name="l00081"></a>00081 <span class="keyword">inline</span> <span class="keywordtype">void</span> cfdemCloud::set_radii(<span class="keywordtype">double</span> **&amp; values)<span class="keyword"> const</span>
<a name="l00082"></a>00082 <span class="keyword"></span>{
<a name="l00083"></a>00083 radii_=values;
<a name="l00084"></a>00084 }
<a name="l00085"></a>00085
<a name="l00086"></a>00086 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::cellIDs()<span class="keyword"> const</span>
<a name="l00087"></a>00087 <span class="keyword"></span>{
<a name="l00088"></a>00088 <span class="keywordflow">return</span> cellIDs_;
<a name="l00089"></a>00089 }
<a name="l00090"></a>00090
<a name="l00091"></a>00091 <span class="keyword">inline</span> <span class="keywordtype">void</span> cfdemCloud::set_cellIDs(<span class="keywordtype">double</span> **&amp; values)<span class="keyword"> const</span>
<a name="l00092"></a>00092 <span class="keyword"></span>{
<a name="l00093"></a>00093 cellIDs_=values;
<a name="l00094"></a>00094 }
<a name="l00095"></a>00095
<a name="l00096"></a>00096 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::particleWeights()<span class="keyword"> const</span>
<a name="l00097"></a>00097 <span class="keyword"></span>{
<a name="l00098"></a>00098 <span class="keywordflow">return</span> particleWeights_;
<a name="l00099"></a>00099 }
<a name="l00100"></a>00100
<a name="l00101"></a>00101 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cfdemCloud::particleVolumes()<span class="keyword"> const</span>
<a name="l00102"></a>00102 <span class="keyword"></span>{
<a name="l00103"></a>00103 <span class="keywordflow">return</span> particleVolumes_;
<a name="l00104"></a>00104 }
<a name="l00105"></a>00105
<a name="l00106"></a>00106 <span class="keyword">inline</span> <span class="keywordtype">int</span> cfdemCloud::numberOfParticles()<span class="keyword"> const</span>
<a name="l00107"></a>00107 <span class="keyword"></span>{
<a name="l00108"></a>00108 <span class="keywordflow">return</span> numberOfParticles_;
<a name="l00109"></a>00109 }
<a name="l00110"></a>00110
<a name="l00111"></a>00111 <span class="keyword">inline</span> <span class="keywordtype">bool</span> cfdemCloud::numberOfParticlesChanged()<span class="keyword"> const</span>
<a name="l00112"></a>00112 <span class="keyword"></span>{
<a name="l00113"></a>00113 <span class="keywordflow">return</span> numberOfParticlesChanged_;
<a name="l00114"></a>00114 }
<a name="l00115"></a>00115
<a name="l00116"></a>00116 <span class="keyword">inline</span> <span class="keywordtype">bool</span> cfdemCloud::arraysReallocated()<span class="keyword"> const</span>
<a name="l00117"></a>00117 <span class="keyword"></span>{
<a name="l00118"></a>00118 <span class="keywordflow">return</span> arraysReallocated_;
<a name="l00119"></a>00119 }
<a name="l00120"></a>00120
<a name="l00121"></a>00121 <span class="keyword">inline</span> <span class="keyword">const</span> wordList&amp; cfdemCloud::forceModels()
<a name="l00122"></a>00122 {
<a name="l00123"></a>00123 <span class="keywordflow">return</span> forceModels_;
<a name="l00124"></a>00124 }
<a name="l00125"></a>00125
<a name="l00126"></a>00126 <span class="keyword">inline</span> <span class="keyword">const</span> locateModel&amp; cfdemCloud::locateM()<span class="keyword"> const</span>
<a name="l00127"></a>00127 <span class="keyword"></span>{
<a name="l00128"></a>00128 <span class="keywordflow">return</span> locateModel_;
<a name="l00129"></a>00129 }
<a name="l00130"></a>00130
<a name="l00131"></a>00131 <span class="keyword">inline</span> <span class="keyword">const</span> momCoupleModel&amp; cfdemCloud::momCoupleM(<span class="keywordtype">int</span> i)<span class="keyword"> const</span>
<a name="l00132"></a>00132 <span class="keyword"></span>{
<a name="l00133"></a>00133 <span class="keywordflow">return</span> momCoupleModel_[i];
<a name="l00134"></a>00134 }
<a name="l00135"></a>00135
<a name="l00136"></a>00136 <span class="keyword">inline</span> <span class="keyword">const</span> dataExchangeModel&amp; cfdemCloud::dataExchangeM()<span class="keyword"> const</span>
<a name="l00137"></a>00137 <span class="keyword"></span>{
<a name="l00138"></a>00138 <span class="keywordflow">return</span> dataExchangeModel_;
<a name="l00139"></a>00139 }
<a name="l00140"></a>00140
<a name="l00141"></a>00141 <span class="keyword">inline</span> <span class="keyword">const</span> IOModel&amp; cfdemCloud::IOM()<span class="keyword"> const</span>
<a name="l00142"></a>00142 <span class="keyword"></span>{
<a name="l00143"></a>00143 <span class="keywordflow">return</span> IOModel_;
<a name="l00144"></a>00144 }
<a name="l00145"></a>00145
<a name="l00146"></a>00146 <span class="keyword">inline</span> <span class="keyword">const</span> voidFractionModel&amp; cfdemCloud::voidFractionM()<span class="keyword"> const</span>
<a name="l00147"></a>00147 <span class="keyword"></span>{
<a name="l00148"></a>00148 <span class="keywordflow">return</span> voidFractionModel_;
<a name="l00149"></a>00149 }
<a name="l00150"></a>00150
<a name="l00151"></a>00151 <span class="keyword">inline</span> <span class="keyword">const</span> averagingModel&amp; cfdemCloud::averagingM()<span class="keyword"> const</span>
<a name="l00152"></a>00152 <span class="keyword"></span>{
<a name="l00153"></a>00153 <span class="keywordflow">return</span> averagingModel_;
<a name="l00154"></a>00154 }
<a name="l00155"></a>00155
<a name="l00156"></a>00156 <span class="keyword">inline</span> <span class="keyword">const</span> regionModel&amp; cfdemCloud::regionM()<span class="keyword"> const</span>
<a name="l00157"></a>00157 <span class="keyword"></span>{
<a name="l00158"></a>00158 <span class="keywordflow">return</span> regionModel_;
<a name="l00159"></a>00159 }
<a name="l00160"></a>00160
<a name="l00161"></a>00161 <span class="keyword">inline</span> <span class="keyword">const</span> meshMotionModel&amp; cfdemCloud::meshMotionM()<span class="keyword"> const</span>
<a name="l00162"></a>00162 <span class="keyword"></span>{
<a name="l00163"></a>00163 <span class="keywordflow">return</span> meshMotionModel_;
<a name="l00164"></a>00164 }
<a name="l00165"></a>00165
<a name="l00166"></a>00166 <span class="keyword">inline</span> <span class="keyword">const</span> wordList&amp; cfdemCloud::liggghtsCommandModelList()<span class="keyword"> const</span>
<a name="l00167"></a>00167 <span class="keyword"></span>{
<a name="l00168"></a>00168 <span class="keywordflow">return</span> liggghtsCommandModelList_;
<a name="l00169"></a>00169 }
<a name="l00170"></a>00170
<a name="l00171"></a>00171 <span class="keyword">inline</span> autoPtr&lt;liggghtsCommandModel&gt;* cfdemCloud::liggghtsCommand()<span class="keyword"> const</span>
<a name="l00172"></a>00172 <span class="keyword"></span>{
<a name="l00173"></a>00173 <span class="keywordflow">return</span> liggghtsCommand_;
<a name="l00174"></a>00174 }
<a name="l00175"></a>00175
<a name="l00176"></a>00176 <span class="preprocessor">#ifdef version16</span>
<a name="l00177"></a>00177 <span class="preprocessor"></span> <span class="keyword">inline</span> <span class="keyword">const</span> incompressible::turbulenceModel&amp; cfdemCloud::turbulence() const <span class="comment">// 1.6</span>
<a name="l00178"></a>00178 <span class="preprocessor">#endif</span>
<a name="l00179"></a>00179 <span class="preprocessor"></span><span class="preprocessor">#ifdef version16comp</span>
<a name="l00180"></a>00180 <span class="preprocessor"></span> <span class="keyword">inline</span> <span class="keyword">const</span> compressible::turbulenceModel&amp; cfdemCloud::turbulence() const <span class="comment">// 1.6 comp</span>
<a name="l00181"></a>00181 <span class="preprocessor">#endif</span>
<a name="l00182"></a>00182 <span class="preprocessor"></span><span class="preprocessor">#ifdef version15</span>
<a name="l00183"></a>00183 <span class="preprocessor"></span> <span class="keyword">inline</span> <span class="keyword">const</span> incompressible::RASModel&amp; cfdemCloud::turbulence() const <span class="comment">// 1.5-dev</span>
<a name="l00184"></a>00184 <span class="preprocessor">#endif</span>
<a name="l00185"></a>00185 <span class="preprocessor"></span>{
<a name="l00186"></a>00186 <span class="keywordflow">return</span> turbulence_;
<a name="l00187"></a>00187 }
<a name="l00188"></a>00188
<a name="l00189"></a>00189 }
<a name="l00190"></a>00190 <span class="comment">// ************************************************************************* //</span>
</pre></div></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:18 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,372 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdemCloud/cfdemCloud.H Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
</ul>
</div>
<h1>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdemCloud/cfdemCloud.H</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*---------------------------------------------------------------------------*\</span>
<a name="l00002"></a>00002 <span class="comment"> ========= |</span>
<a name="l00003"></a>00003 <span class="comment"> \\ / F ield | OpenFOAM: The Open Source CFD Toolbox</span>
<a name="l00004"></a>00004 <span class="comment"> \\ / O peration |</span>
<a name="l00005"></a>00005 <span class="comment"> \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.</span>
<a name="l00006"></a>00006 <span class="comment"> \\/ M anipulation |</span>
<a name="l00007"></a>00007 <span class="comment">-------------------------------------------------------------------------------</span>
<a name="l00008"></a>00008 <span class="comment">License</span>
<a name="l00009"></a>00009 <span class="comment"> This file is part of OpenFOAM.</span>
<a name="l00010"></a>00010 <span class="comment"></span>
<a name="l00011"></a>00011 <span class="comment"> OpenFOAM is free software; you can redistribute it and/or modify it</span>
<a name="l00012"></a>00012 <span class="comment"> under the terms of the GNU General Public License as published by the</span>
<a name="l00013"></a>00013 <span class="comment"> Free Software Foundation; either version 2 of the License, or (at your</span>
<a name="l00014"></a>00014 <span class="comment"> option) any later version.</span>
<a name="l00015"></a>00015 <span class="comment"></span>
<a name="l00016"></a>00016 <span class="comment"> OpenFOAM is distributed in the hope that it will be useful, but WITHOUT</span>
<a name="l00017"></a>00017 <span class="comment"> ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or</span>
<a name="l00018"></a>00018 <span class="comment"> FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License</span>
<a name="l00019"></a>00019 <span class="comment"> for more details.</span>
<a name="l00020"></a>00020 <span class="comment"></span>
<a name="l00021"></a>00021 <span class="comment"> You should have received a copy of the GNU General Public License</span>
<a name="l00022"></a>00022 <span class="comment"> along with OpenFOAM; if not, write to the Free Software Foundation,</span>
<a name="l00023"></a>00023 <span class="comment"> Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA</span>
<a name="l00024"></a>00024 <span class="comment"></span>
<a name="l00025"></a>00025 <span class="comment">Class</span>
<a name="l00026"></a>00026 <span class="comment"> Foam::cfdemCloud</span>
<a name="l00027"></a>00027 <span class="comment"></span>
<a name="l00028"></a>00028 <span class="comment">Description</span>
<a name="l00029"></a>00029 <span class="comment"> cloud class managing DEM data for CFD-DEM coupling</span>
<a name="l00030"></a>00030 <span class="comment"></span>
<a name="l00031"></a>00031 <span class="comment">SourceFiles</span>
<a name="l00032"></a>00032 <span class="comment"> cfdemCloud.C</span>
<a name="l00033"></a>00033 <span class="comment"> cfdemCloudIO.C</span>
<a name="l00034"></a>00034 <span class="comment"></span>
<a name="l00035"></a>00035 <span class="comment">\*---------------------------------------------------------------------------*/</span>
<a name="l00036"></a>00036
<a name="l00037"></a>00037 <span class="preprocessor">#ifndef cfdemCloud_H</span>
<a name="l00038"></a>00038 <span class="preprocessor"></span><span class="preprocessor">#define cfdemCloud_H</span>
<a name="l00039"></a>00039 <span class="preprocessor"></span>
<a name="l00040"></a>00040 <span class="preprocessor">#define version16</span>
<a name="l00041"></a>00041 <span class="preprocessor"></span><span class="comment">//#define version16comp</span>
<a name="l00042"></a>00042
<a name="l00043"></a>00043 <span class="preprocessor">#include &quot;fvCFD.H&quot;</span>
<a name="l00044"></a>00044 <span class="preprocessor">#include &quot;IFstream.H&quot;</span>
<a name="l00045"></a>00045
<a name="l00046"></a>00046 <span class="preprocessor">#ifdef version16</span>
<a name="l00047"></a>00047 <span class="preprocessor"></span><span class="preprocessor"> #include &quot;turbulenceModel.H&quot;</span> <span class="comment">// 1.6</span>
<a name="l00048"></a>00048 <span class="preprocessor">#endif</span>
<a name="l00049"></a>00049 <span class="preprocessor"></span><span class="preprocessor">#ifdef version16comp</span>
<a name="l00050"></a>00050 <span class="preprocessor"></span><span class="preprocessor"> #include &quot;turbulenceModel.H&quot;</span> <span class="comment">// 1.6 comp</span>
<a name="l00051"></a>00051 <span class="preprocessor">#endif</span>
<a name="l00052"></a>00052 <span class="preprocessor"></span><span class="preprocessor">#ifdef version15</span>
<a name="l00053"></a>00053 <span class="preprocessor"></span><span class="preprocessor"> #include &quot;RASModel.H&quot;</span> <span class="comment">// 1.5-dev</span>
<a name="l00054"></a>00054 <span class="preprocessor">#endif</span>
<a name="l00055"></a>00055 <span class="preprocessor"></span>
<a name="l00056"></a>00056 <span class="comment">// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //</span>
<a name="l00057"></a>00057
<a name="l00058"></a>00058 <span class="keyword">namespace </span>Foam
<a name="l00059"></a>00059 {
<a name="l00060"></a>00060
<a name="l00061"></a>00061 <span class="comment">// forward declarations</span>
<a name="l00062"></a>00062 <span class="keyword">class </span>forceModel;
<a name="l00063"></a>00063 <span class="keyword">class </span>locateModel;
<a name="l00064"></a>00064 <span class="keyword">class </span>voidFractionModel;
<a name="l00065"></a>00065 <span class="keyword">class </span>dataExchangeModel;
<a name="l00066"></a>00066 <span class="keyword">class </span>IOModel;
<a name="l00067"></a>00067 <span class="keyword">class </span>averagingModel;
<a name="l00068"></a>00068 <span class="keyword">class </span>momCoupleModel;
<a name="l00069"></a>00069 <span class="keyword">class </span>regionModel;
<a name="l00070"></a>00070 <span class="keyword">class </span>meshMotionModel;
<a name="l00071"></a>00071 <span class="keyword">class </span>liggghtsCommandModel;
<a name="l00072"></a>00072
<a name="l00073"></a>00073 <span class="comment">/*---------------------------------------------------------------------------*\</span>
<a name="l00074"></a>00074 <span class="comment"> Class cfdemCloud Declaration</span>
<a name="l00075"></a>00075 <span class="comment">\*---------------------------------------------------------------------------*/</span>
<a name="l00076"></a>00076
<a name="l00077"></a><a class="code" href="classFoam_1_1cfdemCloud.html">00077</a> <span class="keyword">class </span><a class="code" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a>
<a name="l00078"></a>00078 {
<a name="l00079"></a>00079
<a name="l00080"></a>00080 <span class="comment">// protected data</span>
<a name="l00081"></a>00081 <span class="keyword">protected</span>:
<a name="l00082"></a>00082 <span class="keyword">const</span> fvMesh&amp; mesh_;
<a name="l00083"></a>00083
<a name="l00084"></a>00084 IOdictionary couplingProperties_;
<a name="l00085"></a>00085
<a name="l00086"></a>00086 IOdictionary liggghtsCommandDict_;
<a name="l00087"></a>00087
<a name="l00088"></a>00088 <span class="keywordtype">bool</span> verbous_;
<a name="l00089"></a>00089
<a name="l00090"></a>00090 <span class="keywordtype">bool</span> ignore_;
<a name="l00091"></a>00091
<a name="l00092"></a>00092 <span class="keyword">const</span> word modelType_;
<a name="l00093"></a>00093
<a name="l00094"></a>00094 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **positions_;
<a name="l00095"></a>00095
<a name="l00096"></a>00096 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **velocities_;
<a name="l00097"></a>00097
<a name="l00098"></a>00098 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **impForces_;
<a name="l00099"></a>00099
<a name="l00100"></a>00100 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **expForces_;
<a name="l00101"></a>00101
<a name="l00102"></a>00102 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **DEMForces_;
<a name="l00103"></a>00103
<a name="l00104"></a>00104 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **radii_;
<a name="l00105"></a>00105
<a name="l00106"></a>00106 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **voidfractions_;
<a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **cellIDs_;
<a name="l00109"></a>00109
<a name="l00110"></a>00110 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **particleWeights_;
<a name="l00111"></a>00111
<a name="l00112"></a>00112 <span class="keyword">mutable</span> <span class="keywordtype">double</span> **particleVolumes_;
<a name="l00113"></a>00113
<a name="l00114"></a>00114 <span class="keywordtype">int</span> numberOfParticles_;
<a name="l00115"></a>00115
<a name="l00116"></a>00116 <span class="keywordtype">bool</span> numberOfParticlesChanged_;
<a name="l00117"></a>00117
<a name="l00118"></a>00118 <span class="keyword">mutable</span> <span class="keywordtype">bool</span> arraysReallocated_;
<a name="l00119"></a>00119
<a name="l00120"></a>00120 <span class="keyword">const</span> wordList forceModels_;
<a name="l00121"></a>00121
<a name="l00122"></a>00122 <span class="keyword">const</span> wordList momCoupleModels_;
<a name="l00123"></a>00123
<a name="l00124"></a>00124 <span class="keyword">const</span> wordList liggghtsCommandModelList_;
<a name="l00125"></a>00125
<a name="l00126"></a>00126 <span class="keyword">const</span> word turbulenceModelType_;
<a name="l00127"></a>00127
<a name="l00128"></a>00128 <span class="preprocessor"> #ifdef version16</span>
<a name="l00129"></a>00129 <span class="preprocessor"></span> <span class="keyword">const</span> incompressible::turbulenceModel&amp; turbulence_; <span class="comment">// 1.6</span>
<a name="l00130"></a>00130 <span class="preprocessor"> #endif</span>
<a name="l00131"></a>00131 <span class="preprocessor"></span><span class="preprocessor"> #ifdef version16comp</span>
<a name="l00132"></a>00132 <span class="preprocessor"></span> <span class="keyword">const</span> compressible::turbulenceModel&amp; turbulence_; <span class="comment">// 1.6 comp</span>
<a name="l00133"></a>00133 <span class="preprocessor"> #endif</span>
<a name="l00134"></a>00134 <span class="preprocessor"></span><span class="preprocessor"> #ifdef version15</span>
<a name="l00135"></a>00135 <span class="preprocessor"></span> <span class="keyword">const</span> incompressible::RASModel&amp; turbulence_; <span class="comment">// 1.5-dev</span>
<a name="l00136"></a>00136 <span class="preprocessor"> #endif</span>
<a name="l00137"></a>00137 <span class="preprocessor"></span>
<a name="l00138"></a>00138 autoPtr&lt;forceModel&gt;* forceModel_;
<a name="l00139"></a>00139
<a name="l00140"></a>00140 autoPtr&lt;locateModel&gt; locateModel_;
<a name="l00141"></a>00141
<a name="l00142"></a>00142 autoPtr&lt;momCoupleModel&gt;* momCoupleModel_;
<a name="l00143"></a>00143
<a name="l00144"></a>00144 autoPtr&lt;dataExchangeModel&gt; dataExchangeModel_;
<a name="l00145"></a>00145
<a name="l00146"></a>00146 autoPtr&lt;IOModel&gt; IOModel_;
<a name="l00147"></a>00147
<a name="l00148"></a>00148 autoPtr&lt;voidFractionModel&gt; voidFractionModel_;
<a name="l00149"></a>00149
<a name="l00150"></a>00150 autoPtr&lt;averagingModel&gt; averagingModel_;
<a name="l00151"></a>00151
<a name="l00152"></a>00152 autoPtr&lt;regionModel&gt; regionModel_;
<a name="l00153"></a>00153
<a name="l00154"></a>00154 autoPtr&lt;meshMotionModel&gt; meshMotionModel_;
<a name="l00155"></a>00155
<a name="l00156"></a>00156 autoPtr&lt;liggghtsCommandModel&gt;* liggghtsCommand_;
<a name="l00157"></a>00157
<a name="l00158"></a>00158 <span class="comment">// Private member functions</span>
<a name="l00159"></a>00159 <span class="keyword">virtual</span> <span class="keywordtype">void</span> getDEMdata();
<a name="l00160"></a>00160
<a name="l00161"></a>00161 <span class="keyword">virtual</span> <span class="keywordtype">void</span> giveDEMdata();
<a name="l00162"></a>00162
<a name="l00163"></a>00163
<a name="l00164"></a>00164 <span class="comment">// Protected member functions used by submodels</span>
<a name="l00165"></a>00165 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setNumberOfParticles(<span class="keywordtype">int</span>);
<a name="l00166"></a>00166
<a name="l00167"></a>00167 <span class="keyword">virtual</span> <span class="keywordtype">void</span> findCells();
<a name="l00168"></a>00168
<a name="l00169"></a>00169 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setForces();
<a name="l00170"></a>00170
<a name="l00171"></a>00171 <span class="keyword">public</span>:
<a name="l00172"></a>00172
<a name="l00173"></a>00173 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classFoam_1_1dataExchangeModel.html">dataExchangeModel</a>;
<a name="l00174"></a>00174 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classFoam_1_1voidFractionModel.html">voidFractionModel</a>;
<a name="l00175"></a>00175
<a name="l00176"></a>00176 <span class="comment">// Constructors</span>
<a name="l00177"></a>00177
<a name="l00178"></a>00178 <span class="comment">//- Construct from mesh and a list of particles</span>
<a name="l00179"></a>00179 <a class="code" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a>
<a name="l00180"></a>00180 (
<a name="l00181"></a>00181 <span class="keyword">const</span> fvMesh&amp; mesh
<a name="l00182"></a>00182 );
<a name="l00183"></a>00183
<a name="l00184"></a>00184 <span class="comment">//- Destructor</span>
<a name="l00185"></a>00185 <span class="keyword">virtual</span> ~<a class="code" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a>();
<a name="l00186"></a>00186
<a name="l00187"></a>00187 <span class="comment">// public Member Functions</span>
<a name="l00188"></a>00188
<a name="l00189"></a>00189 <span class="comment">// Access</span>
<a name="l00190"></a>00190
<a name="l00191"></a>00191 word modelType(){ <span class="keywordflow">return</span> modelType_; };
<a name="l00192"></a>00192
<a name="l00193"></a>00193 label particleCell(<span class="keywordtype">int</span>);
<a name="l00194"></a>00194
<a name="l00195"></a>00195 <span class="keywordtype">double</span> d(<span class="keywordtype">int</span>);
<a name="l00196"></a>00196
<a name="l00197"></a>00197 vector position(<span class="keywordtype">int</span>);
<a name="l00198"></a>00198
<a name="l00199"></a>00199 vector velocity(<span class="keywordtype">int</span>);
<a name="l00200"></a>00200
<a name="l00201"></a>00201 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1forceModel.html">forceModel</a>&amp; forceM(<span class="keywordtype">int</span>);
<a name="l00202"></a>00202
<a name="l00203"></a>00203 <span class="keyword">virtual</span> <span class="keywordtype">int</span> nrForceModels();
<a name="l00204"></a>00204
<a name="l00205"></a>00205 scalar radius(<span class="keywordtype">int</span>);
<a name="l00206"></a>00206
<a name="l00207"></a>00207 scalar voidfraction(<span class="keywordtype">int</span>);
<a name="l00208"></a>00208
<a name="l00209"></a>00209 label liggghtsCommandModelIndex(word);
<a name="l00210"></a>00210
<a name="l00211"></a>00211 <span class="keyword">inline</span> <span class="keyword">const</span> <span class="keywordtype">bool</span>&amp; ignore() <span class="keyword">const</span>;
<a name="l00212"></a>00212
<a name="l00213"></a>00213 <span class="keyword">inline</span> <span class="keyword">const</span> fvMesh&amp; mesh() <span class="keyword">const</span>;
<a name="l00214"></a>00214
<a name="l00215"></a>00215 <span class="keyword">inline</span> <span class="keywordtype">bool</span> verbous() <span class="keyword">const</span>;
<a name="l00216"></a>00216
<a name="l00217"></a>00217 <span class="keyword">inline</span> <span class="keyword">const</span> IOdictionary&amp; couplingProperties() <span class="keyword">const</span>;
<a name="l00218"></a>00218
<a name="l00219"></a>00219 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** positions() <span class="keyword">const</span>;
<a name="l00220"></a>00220
<a name="l00221"></a>00221 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** velocities() <span class="keyword">const</span>;
<a name="l00222"></a>00222
<a name="l00223"></a>00223 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** impForces() <span class="keyword">const</span>;
<a name="l00224"></a>00224
<a name="l00225"></a>00225 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** expForces() <span class="keyword">const</span>;
<a name="l00226"></a>00226
<a name="l00227"></a>00227 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** radii() <span class="keyword">const</span>;
<a name="l00228"></a>00228
<a name="l00229"></a>00229 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** voidfractions() <span class="keyword">const</span>;
<a name="l00230"></a>00230
<a name="l00231"></a>00231 <span class="keyword">inline</span> <span class="keywordtype">void</span> set_radii(<span class="keywordtype">double</span>**&amp;) <span class="keyword">const</span>;
<a name="l00232"></a>00232
<a name="l00233"></a>00233 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** cellIDs() <span class="keyword">const</span>;
<a name="l00234"></a>00234
<a name="l00235"></a>00235 <span class="keyword">inline</span> <span class="keywordtype">void</span> set_cellIDs(<span class="keywordtype">double</span>**&amp;) <span class="keyword">const</span>;
<a name="l00236"></a>00236
<a name="l00237"></a>00237 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** particleWeights() <span class="keyword">const</span>;
<a name="l00238"></a>00238
<a name="l00239"></a>00239 <span class="keyword">inline</span> <span class="keywordtype">double</span> ** particleVolumes() <span class="keyword">const</span>;
<a name="l00240"></a>00240
<a name="l00241"></a>00241 <span class="keyword">inline</span> <span class="keywordtype">int</span> numberOfParticles() <span class="keyword">const</span>;
<a name="l00242"></a>00242
<a name="l00243"></a>00243 <span class="keyword">inline</span> <span class="keywordtype">bool</span> numberOfParticlesChanged() <span class="keyword">const</span>;
<a name="l00244"></a>00244
<a name="l00245"></a>00245 <span class="keyword">inline</span> <span class="keywordtype">bool</span> arraysReallocated() <span class="keyword">const</span>;
<a name="l00246"></a>00246
<a name="l00247"></a>00247 <span class="keyword">inline</span> <span class="keyword">const</span> wordList&amp; forceModels();
<a name="l00248"></a>00248
<a name="l00249"></a>00249 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1voidFractionModel.html">voidFractionModel</a>&amp; voidFractionM() <span class="keyword">const</span>;
<a name="l00250"></a>00250
<a name="l00251"></a>00251 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1locateModel.html">locateModel</a>&amp; locateM() <span class="keyword">const</span>;
<a name="l00252"></a>00252
<a name="l00253"></a>00253 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1momCoupleModel.html">momCoupleModel</a>&amp; momCoupleM(<span class="keywordtype">int</span>) <span class="keyword">const</span>;
<a name="l00254"></a>00254
<a name="l00255"></a>00255 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1dataExchangeModel.html">dataExchangeModel</a>&amp; dataExchangeM() <span class="keyword">const</span>;
<a name="l00256"></a>00256
<a name="l00257"></a>00257 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1IOModel.html">IOModel</a>&amp; IOM() <span class="keyword">const</span>;
<a name="l00258"></a>00258
<a name="l00259"></a>00259 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1averagingModel.html">averagingModel</a>&amp; averagingM() <span class="keyword">const</span>;
<a name="l00260"></a>00260
<a name="l00261"></a>00261 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1regionModel.html">regionModel</a>&amp; regionM() <span class="keyword">const</span>;
<a name="l00262"></a>00262
<a name="l00263"></a>00263 <span class="keyword">inline</span> <span class="keyword">const</span> <a class="code" href="classFoam_1_1meshMotionModel.html">meshMotionModel</a>&amp; meshMotionM() <span class="keyword">const</span>;
<a name="l00264"></a>00264
<a name="l00265"></a>00265 <span class="keyword">inline</span> <span class="keyword">const</span> wordList&amp; liggghtsCommandModelList() <span class="keyword">const</span>;
<a name="l00266"></a>00266
<a name="l00267"></a>00267 <span class="keyword">inline</span> autoPtr&lt;liggghtsCommandModel&gt;* liggghtsCommand() <span class="keyword">const</span>;
<a name="l00268"></a>00268
<a name="l00269"></a>00269 <span class="preprocessor"> #ifdef version16</span>
<a name="l00270"></a>00270 <span class="preprocessor"></span> <span class="keyword">inline</span> <span class="keyword">const</span> incompressible::turbulenceModel&amp; turbulence() <span class="keyword">const</span>; <span class="comment">// 1.6</span>
<a name="l00271"></a>00271 <span class="preprocessor"> #endif</span>
<a name="l00272"></a>00272 <span class="preprocessor"></span><span class="preprocessor"> #ifdef version16comp</span>
<a name="l00273"></a>00273 <span class="preprocessor"></span> <span class="keyword">inline</span> <span class="keyword">const</span> compressible::turbulenceModel&amp; turbulence() <span class="keyword">const</span>; <span class="comment">// 1.6 comp</span>
<a name="l00274"></a>00274 <span class="preprocessor"> #endif</span>
<a name="l00275"></a>00275 <span class="preprocessor"></span><span class="preprocessor"> #ifdef version15</span>
<a name="l00276"></a>00276 <span class="preprocessor"></span> <span class="keyword">inline</span> <span class="keyword">const</span> incompressible::RASModel&amp; turbulence() <span class="keyword">const</span>; <span class="comment">// 1.5-dev</span>
<a name="l00277"></a>00277 <span class="preprocessor"> #endif</span>
<a name="l00278"></a>00278 <span class="preprocessor"></span>
<a name="l00279"></a>00279 <span class="comment">// Write</span>
<a name="l00280"></a>00280
<a name="l00281"></a>00281 <span class="comment">// write cfdemCloud internal data</span>
<a name="l00282"></a>00282 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> evolve(volScalarField&amp;,volVectorField&amp;,volVectorField&amp;);
<a name="l00283"></a>00283
<a name="l00284"></a>00284 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> reAllocArrays() <span class="keyword">const</span>;
<a name="l00285"></a>00285
<a name="l00286"></a>00286 <span class="comment">// IO</span>
<a name="l00287"></a>00287 <span class="keywordtype">void</span> writeScalarFieldToTerminal(<span class="keywordtype">double</span>**&amp;);
<a name="l00288"></a>00288
<a name="l00289"></a>00289 <span class="keywordtype">void</span> writeVectorFieldToTerminal(<span class="keywordtype">double</span>**&amp;);
<a name="l00290"></a>00290
<a name="l00291"></a>00291 <span class="comment">// functions</span>
<a name="l00292"></a>00292 tmp&lt;fvVectorMatrix&gt; divVoidfractionTau(volVectorField&amp; ,volScalarField&amp;) <span class="keyword">const</span>;
<a name="l00293"></a>00293
<a name="l00294"></a>00294 tmp&lt;volScalarField&gt; voidfractionNuEff(volScalarField&amp;) <span class="keyword">const</span>;
<a name="l00295"></a>00295
<a name="l00296"></a>00296 <span class="keywordtype">void</span> resetArray(<span class="keywordtype">double</span>**&amp;,<span class="keywordtype">int</span>,<span class="keywordtype">int</span>,<span class="keywordtype">double</span> resetVal=0.);
<a name="l00297"></a>00297 };
<a name="l00298"></a>00298
<a name="l00299"></a>00299
<a name="l00300"></a>00300 <span class="comment">// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //</span>
<a name="l00301"></a>00301
<a name="l00302"></a>00302 } <span class="comment">// End namespace Foam</span>
<a name="l00303"></a>00303
<a name="l00304"></a>00304 <span class="comment">// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //</span>
<a name="l00305"></a>00305
<a name="l00306"></a>00306 <span class="preprocessor">#include &quot;cfdemCloudI.H&quot;</span>
<a name="l00307"></a>00307
<a name="l00308"></a>00308 <span class="preprocessor">#endif</span>
<a name="l00309"></a>00309 <span class="preprocessor"></span>
<a name="l00310"></a>00310 <span class="comment">// ************************************************************************* //</span>
</pre></div></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:18 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,127 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdTools/checkModelType.H Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
</ul>
</div>
<h1>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdTools/checkModelType.H</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
<a name="l00002"></a>00002 <span class="comment">// check model type</span>
<a name="l00003"></a>00003 <span class="comment">// referring to: Zhou et al. 2010,JFM</span>
<a name="l00004"></a>00004 word modelType = particleCloud.modelType();
<a name="l00005"></a>00005
<a name="l00006"></a>00006 <span class="comment">//Warning &lt;&lt; &quot;model type not being checked&quot; &lt;&lt; endl;</span>
<a name="l00007"></a>00007
<a name="l00008"></a>00008 <span class="keywordflow">if</span> (modelType==<span class="stringliteral">&quot;B&quot;</span>){
<a name="l00009"></a>00009 Info &lt;&lt; <span class="stringliteral">&quot;solving volume averaged Navier Stokes equations of type B\n&quot;</span>&lt;&lt; endl;
<a name="l00010"></a>00010
<a name="l00011"></a>00011 <span class="comment">// check if Archimedes is used</span>
<a name="l00012"></a>00012 <span class="keywordtype">bool</span> found=<span class="keyword">false</span>;
<a name="l00013"></a>00013 forAll(particleCloud.forceModels(),i)
<a name="l00014"></a>00014 {
<a name="l00015"></a>00015 <span class="keywordflow">if</span>(particleCloud.forceModels()[i]==<span class="stringliteral">&quot;Archimedes&quot;</span>)
<a name="l00016"></a>00016 found=<span class="keyword">true</span>;
<a name="l00017"></a>00017 }
<a name="l00018"></a>00018 <span class="keywordflow">if</span>(!found)
<a name="l00019"></a>00019 FatalError &lt;&lt;<span class="stringliteral">&quot;Archimedes model not found!\n&quot;</span> &lt;&lt; abort(FatalError);
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="comment">// check if gradP and viscForce are used</span>
<a name="l00022"></a>00022 found=<span class="keyword">false</span>;
<a name="l00023"></a>00023 forAll(particleCloud.forceModels(),i)
<a name="l00024"></a>00024 {
<a name="l00025"></a>00025 <span class="keywordflow">if</span>(particleCloud.forceModels()[i]==<span class="stringliteral">&quot;gradPForce&quot;</span> || particleCloud.forceModels()[i]==<span class="stringliteral">&quot;viscForce&quot;</span>)
<a name="l00026"></a>00026 found=<span class="keyword">true</span>;
<a name="l00027"></a>00027 }
<a name="l00028"></a>00028 <span class="keywordflow">if</span>(found)
<a name="l00029"></a>00029 FatalError &lt;&lt;<span class="stringliteral">&quot;do not use gradPForce and viscForce with model type B!\n&quot;</span> &lt;&lt; abort(FatalError);
<a name="l00030"></a>00030
<a name="l00031"></a>00031 }<span class="keywordflow">else</span> <span class="keywordflow">if</span> (modelType==<span class="stringliteral">&quot;A&quot;</span>){
<a name="l00032"></a>00032 Info &lt;&lt; <span class="stringliteral">&quot;solving volume averaged Navier Stokes equations of type A\n&quot;</span>
<a name="l00033"></a>00033 &lt;&lt; <span class="stringliteral">&quot;check if Archimedes lift is necessary (depends on pressure formulation)\n&quot;</span>&lt;&lt; endl;
<a name="l00034"></a>00034
<a name="l00035"></a>00035 <span class="comment">// check if Archimedes is used</span>
<a name="l00036"></a>00036 <span class="keywordtype">bool</span> found=<span class="keyword">false</span>;
<a name="l00037"></a>00037 forAll(particleCloud.forceModels(),i)
<a name="l00038"></a>00038 {
<a name="l00039"></a>00039 <span class="keywordflow">if</span>(particleCloud.forceModels()[i]==<span class="stringliteral">&quot;Archimedes&quot;</span>)
<a name="l00040"></a>00040 found=<span class="keyword">true</span>;
<a name="l00041"></a>00041 }
<a name="l00042"></a>00042 <span class="keywordflow">if</span>(found)
<a name="l00043"></a>00043 Info &lt;&lt; <span class="stringliteral">&quot;WARNING!!! Are you sure to use Archimedes lift, not necessary if gradPForce includes this effect.&quot;</span> &lt;&lt; endl;
<a name="l00044"></a>00044
<a name="l00045"></a>00045 <span class="comment">// check if gradP is used</span>
<a name="l00046"></a>00046 found=<span class="keyword">false</span>;
<a name="l00047"></a>00047 forAll(particleCloud.forceModels(),i)
<a name="l00048"></a>00048 {
<a name="l00049"></a>00049 <span class="keywordflow">if</span>(particleCloud.forceModels()[i]==<span class="stringliteral">&quot;gradPForce&quot;</span>)
<a name="l00050"></a>00050 found=<span class="keyword">true</span>;
<a name="l00051"></a>00051 }
<a name="l00052"></a>00052 <span class="keywordflow">if</span>(!found)
<a name="l00053"></a>00053 FatalError &lt;&lt;<span class="stringliteral">&quot;gradPForce model not found!\n&quot;</span> &lt;&lt; abort(FatalError);
<a name="l00054"></a>00054
<a name="l00055"></a>00055 <span class="comment">// check if viscForce is used</span>
<a name="l00056"></a>00056 found=<span class="keyword">false</span>;
<a name="l00057"></a>00057 forAll(particleCloud.forceModels(),i)
<a name="l00058"></a>00058 {
<a name="l00059"></a>00059 <span class="keywordflow">if</span>(particleCloud.forceModels()[i]==<span class="stringliteral">&quot;viscForce&quot;</span>)
<a name="l00060"></a>00060 found=<span class="keyword">true</span>;
<a name="l00061"></a>00061 }
<a name="l00062"></a>00062 <span class="keywordflow">if</span>(!found)
<a name="l00063"></a>00063 FatalError &lt;&lt;<span class="stringliteral">&quot;viscForce model not found!\n&quot;</span> &lt;&lt; abort(FatalError);
<a name="l00064"></a>00064 }<span class="keywordflow">else</span>
<a name="l00065"></a>00065 FatalError &lt;&lt;<span class="stringliteral">&quot;no suitable model type specified:&quot;</span> &lt;&lt; modelType &lt;&lt; <span class="stringliteral">&quot;\n&quot;</span> &lt;&lt; abort(FatalError);
</pre></div></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:18 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,101 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Foam::Archimedes Member List</h1>This is the complete list of members for <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>Archimedes</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>Archimedes</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>dict_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>particleCloud_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatDEM_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatExplicit_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;Archimedes&quot;) (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;Archimedes&quot;) (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;forceModel&quot;) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~Archimedes</b>() (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~Archimedes</b>() (defined in <a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a>)</td><td><a class="el" href="classFoam_1_1Archimedes.html">Foam::Archimedes</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,104 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Foam::Archimedes Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
<div class="navpath"><b>Foam</b>::<a class="el" href="classFoam_1_1Archimedes.html">Archimedes</a>
</div>
</div>
<div class="contents">
<h1>Foam::Archimedes Class Reference</h1><!-- doxytag: class="Foam::Archimedes" --><!-- doxytag: inherits="Foam::forceModel,Foam::forceModel" --><div class="dynheader">
Inheritance diagram for Foam::Archimedes:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1Archimedes__inherit__graph.png" border="0" usemap="#Foam_1_1Archimedes_inherit__map" alt="Inheritance graph"/></div>
<map name="Foam_1_1Archimedes_inherit__map" id="Foam_1_1Archimedes_inherit__map">
<area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="8,5,133,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Foam::Archimedes:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1Archimedes__coll__graph.png" border="0" usemap="#Foam_1_1Archimedes_coll__map" alt="Collaboration graph"/></div>
<map name="Foam_1_1Archimedes_coll__map" id="Foam_1_1Archimedes_coll__map">
<area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="8,101,133,131"/><area shape="rect" href="classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="5,5,136,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classFoam_1_1Archimedes-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9814a60b013bedd3662bcc9311e3864c"></a><!-- doxytag: member="Foam::Archimedes::TypeName" ref="a9814a60b013bedd3662bcc9311e3864c" args="(&quot;Archimedes&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;Archimedes&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3e5dad1940df53e0b842d2481c300bfc"></a><!-- doxytag: member="Foam::Archimedes::Archimedes" ref="a3e5dad1940df53e0b842d2481c300bfc" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>Archimedes</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae52878322053b0231cfb1d198872e3df"></a><!-- doxytag: member="Foam::Archimedes::setForce" ref="ae52878322053b0231cfb1d198872e3df" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9814a60b013bedd3662bcc9311e3864c"></a><!-- doxytag: member="Foam::Archimedes::TypeName" ref="a9814a60b013bedd3662bcc9311e3864c" args="(&quot;Archimedes&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;Archimedes&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3e5dad1940df53e0b842d2481c300bfc"></a><!-- doxytag: member="Foam::Archimedes::Archimedes" ref="a3e5dad1940df53e0b842d2481c300bfc" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>Archimedes</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae52878322053b0231cfb1d198872e3df"></a><!-- doxytag: member="Foam::Archimedes::setForce" ref="ae52878322053b0231cfb1d198872e3df" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
</table>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/<a class="el" href="lnInclude_2Archimedes_8H_source.html">Archimedes.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/Archimedes/<a class="el" href="subModels_2forceModel_2Archimedes_2Archimedes_8H_source.html">Archimedes.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/Archimedes.C</li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/Archimedes/Archimedes.C</li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,101 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Foam::ArchimedesIB Member List</h1>This is the complete list of members for <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>ArchimedesIB</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>ArchimedesIB</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>dict_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>particleCloud_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatDEM_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatExplicit_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;ArchimedesIB&quot;) (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;ArchimedesIB&quot;) (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;forceModel&quot;) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~ArchimedesIB</b>() (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~ArchimedesIB</b>() (defined in <a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a>)</td><td><a class="el" href="classFoam_1_1ArchimedesIB.html">Foam::ArchimedesIB</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,104 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Foam::ArchimedesIB Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
<div class="navpath"><b>Foam</b>::<a class="el" href="classFoam_1_1ArchimedesIB.html">ArchimedesIB</a>
</div>
</div>
<div class="contents">
<h1>Foam::ArchimedesIB Class Reference</h1><!-- doxytag: class="Foam::ArchimedesIB" --><!-- doxytag: inherits="Foam::forceModel,Foam::forceModel" --><div class="dynheader">
Inheritance diagram for Foam::ArchimedesIB:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1ArchimedesIB__inherit__graph.png" border="0" usemap="#Foam_1_1ArchimedesIB_inherit__map" alt="Inheritance graph"/></div>
<map name="Foam_1_1ArchimedesIB_inherit__map" id="Foam_1_1ArchimedesIB_inherit__map">
<area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="15,5,140,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Foam::ArchimedesIB:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1ArchimedesIB__coll__graph.png" border="0" usemap="#Foam_1_1ArchimedesIB_coll__map" alt="Collaboration graph"/></div>
<map name="Foam_1_1ArchimedesIB_coll__map" id="Foam_1_1ArchimedesIB_coll__map">
<area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="15,101,140,131"/><area shape="rect" href="classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="12,5,143,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classFoam_1_1ArchimedesIB-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac47032499ba87bd72b70121b70d628c9"></a><!-- doxytag: member="Foam::ArchimedesIB::TypeName" ref="ac47032499ba87bd72b70121b70d628c9" args="(&quot;ArchimedesIB&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;ArchimedesIB&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a68abe41166c48114d150d4e91f3026a2"></a><!-- doxytag: member="Foam::ArchimedesIB::ArchimedesIB" ref="a68abe41166c48114d150d4e91f3026a2" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>ArchimedesIB</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae1655e7531ac7fc108d9c9028d43a2fa"></a><!-- doxytag: member="Foam::ArchimedesIB::setForce" ref="ae1655e7531ac7fc108d9c9028d43a2fa" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac47032499ba87bd72b70121b70d628c9"></a><!-- doxytag: member="Foam::ArchimedesIB::TypeName" ref="ac47032499ba87bd72b70121b70d628c9" args="(&quot;ArchimedesIB&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;ArchimedesIB&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a68abe41166c48114d150d4e91f3026a2"></a><!-- doxytag: member="Foam::ArchimedesIB::ArchimedesIB" ref="a68abe41166c48114d150d4e91f3026a2" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>ArchimedesIB</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae1655e7531ac7fc108d9c9028d43a2fa"></a><!-- doxytag: member="Foam::ArchimedesIB::setForce" ref="ae1655e7531ac7fc108d9c9028d43a2fa" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
</table>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/<a class="el" href="lnInclude_2ArchimedesIB_8H_source.html">ArchimedesIB.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/ArchimedesIB/<a class="el" href="subModels_2forceModel_2ArchimedesIB_2ArchimedesIB_8H_source.html">ArchimedesIB.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/ArchimedesIB.C</li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/ArchimedesIB/ArchimedesIB.C</li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="15,101,140,131"/>
<area shape="rect" href="$classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="12,5,143,35"/>
</map>

View File

@ -0,0 +1 @@
f954d36ba81a8f4486ad97d91f9d26de

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="15,5,140,35"/>
</map>

View File

@ -0,0 +1 @@
b0a925ae279f2672fdaf32ab461309b7

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="8,101,133,131"/>
<area shape="rect" href="$classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="5,5,136,35"/>
</map>

View File

@ -0,0 +1 @@
1e9b8a9ff0e4733cfb1be5f88b72bc90

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="8,5,133,35"/>
</map>

View File

@ -0,0 +1 @@
80373c781701a6d2561beb7e36b107b5

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,85 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Foam::DEMdrivenMeshMotion Member List</h1>This is the complete list of members for <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, meshMotionModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, meshMotionModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DEMdrivenMeshMotion</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DEMdrivenMeshMotion</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>dict_</b> (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>meshMotionModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>meshMotionModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>particleCloud_</b> (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setMotion</b>() const (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setMotion</b>() const (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;DEMdrivenMeshMotion&quot;) (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;DEMdrivenMeshMotion&quot;) (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;meshMotionModel&quot;) (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~DEMdrivenMeshMotion</b>() (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~DEMdrivenMeshMotion</b>() (defined in <a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a>)</td><td><a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">Foam::DEMdrivenMeshMotion</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~meshMotionModel</b>() (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~meshMotionModel</b>() (defined in <a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a>)</td><td><a class="el" href="classFoam_1_1meshMotionModel.html">Foam::meshMotionModel</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,104 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Foam::DEMdrivenMeshMotion Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
<div class="navpath"><b>Foam</b>::<a class="el" href="classFoam_1_1DEMdrivenMeshMotion.html">DEMdrivenMeshMotion</a>
</div>
</div>
<div class="contents">
<h1>Foam::DEMdrivenMeshMotion Class Reference</h1><!-- doxytag: class="Foam::DEMdrivenMeshMotion" --><!-- doxytag: inherits="Foam::meshMotionModel,Foam::meshMotionModel" --><div class="dynheader">
Inheritance diagram for Foam::DEMdrivenMeshMotion:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1DEMdrivenMeshMotion__inherit__graph.png" border="0" usemap="#Foam_1_1DEMdrivenMeshMotion_inherit__map" alt="Inheritance graph"/></div>
<map name="Foam_1_1DEMdrivenMeshMotion_inherit__map" id="Foam_1_1DEMdrivenMeshMotion_inherit__map">
<area shape="rect" href="classFoam_1_1meshMotionModel.html" title="Foam::meshMotionModel" alt="" coords="20,5,188,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Foam::DEMdrivenMeshMotion:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1DEMdrivenMeshMotion__coll__graph.png" border="0" usemap="#Foam_1_1DEMdrivenMeshMotion_coll__map" alt="Collaboration graph"/></div>
<map name="Foam_1_1DEMdrivenMeshMotion_coll__map" id="Foam_1_1DEMdrivenMeshMotion_coll__map">
<area shape="rect" href="classFoam_1_1meshMotionModel.html" title="Foam::meshMotionModel" alt="" coords="20,101,188,131"/><area shape="rect" href="classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="39,5,169,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classFoam_1_1DEMdrivenMeshMotion-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aba3e3bcf86921154faeb8a967f38bd50"></a><!-- doxytag: member="Foam::DEMdrivenMeshMotion::TypeName" ref="aba3e3bcf86921154faeb8a967f38bd50" args="(&quot;DEMdrivenMeshMotion&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;DEMdrivenMeshMotion&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a64eb6a95a9492832b744846a1239711d"></a><!-- doxytag: member="Foam::DEMdrivenMeshMotion::DEMdrivenMeshMotion" ref="a64eb6a95a9492832b744846a1239711d" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>DEMdrivenMeshMotion</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a01f8881ddcc66b2596ea6cf71375b93b"></a><!-- doxytag: member="Foam::DEMdrivenMeshMotion::setMotion" ref="a01f8881ddcc66b2596ea6cf71375b93b" args="() const " -->
tmp&lt; volVectorField &gt;&nbsp;</td><td class="memItemRight" valign="bottom"><b>setMotion</b> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aba3e3bcf86921154faeb8a967f38bd50"></a><!-- doxytag: member="Foam::DEMdrivenMeshMotion::TypeName" ref="aba3e3bcf86921154faeb8a967f38bd50" args="(&quot;DEMdrivenMeshMotion&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;DEMdrivenMeshMotion&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a64eb6a95a9492832b744846a1239711d"></a><!-- doxytag: member="Foam::DEMdrivenMeshMotion::DEMdrivenMeshMotion" ref="a64eb6a95a9492832b744846a1239711d" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>DEMdrivenMeshMotion</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1332a9238ae83fd981570cdd5a0bb46d"></a><!-- doxytag: member="Foam::DEMdrivenMeshMotion::setMotion" ref="a1332a9238ae83fd981570cdd5a0bb46d" args="() const " -->
tmp&lt; volVectorField &gt;&nbsp;</td><td class="memItemRight" valign="bottom"><b>setMotion</b> () const </td></tr>
</table>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/<a class="el" href="lnInclude_2DEMdrivenMeshMotion_8H_source.html">DEMdrivenMeshMotion.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/meshMotionModel/DEMdrivenMeshMotion/<a class="el" href="subModels_2meshMotionModel_2DEMdrivenMeshMotion_2DEMdrivenMeshMotion_8H_source.html">DEMdrivenMeshMotion.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/DEMdrivenMeshMotion.C</li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/meshMotionModel/DEMdrivenMeshMotion/DEMdrivenMeshMotion.C</li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1meshMotionModel.html" title="Foam::meshMotionModel" alt="" coords="20,101,188,131"/>
<area shape="rect" href="$classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="39,5,169,35"/>
</map>

View File

@ -0,0 +1 @@
5e9627955a3c3eef8d522cb2d3da9500

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1meshMotionModel.html" title="Foam::meshMotionModel" alt="" coords="20,5,188,35"/>
</map>

View File

@ -0,0 +1 @@
4c8e879f4ae93b953b0aa5a110c8598c

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -0,0 +1,101 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Foam::DiFeliceDrag Member List</h1>This is the complete list of members for <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>dict_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DiFeliceDrag</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DiFeliceDrag</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>particleCloud_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatDEM_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatExplicit_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;DiFeliceDrag&quot;) (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;DiFeliceDrag&quot;) (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;forceModel&quot;) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~DiFeliceDrag</b>() (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~DiFeliceDrag</b>() (defined in <a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDrag.html">Foam::DiFeliceDrag</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,104 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Foam::DiFeliceDrag Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
<div class="navpath"><b>Foam</b>::<a class="el" href="classFoam_1_1DiFeliceDrag.html">DiFeliceDrag</a>
</div>
</div>
<div class="contents">
<h1>Foam::DiFeliceDrag Class Reference</h1><!-- doxytag: class="Foam::DiFeliceDrag" --><!-- doxytag: inherits="Foam::forceModel,Foam::forceModel" --><div class="dynheader">
Inheritance diagram for Foam::DiFeliceDrag:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1DiFeliceDrag__inherit__graph.png" border="0" usemap="#Foam_1_1DiFeliceDrag_inherit__map" alt="Inheritance graph"/></div>
<map name="Foam_1_1DiFeliceDrag_inherit__map" id="Foam_1_1DiFeliceDrag_inherit__map">
<area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="11,5,136,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Foam::DiFeliceDrag:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1DiFeliceDrag__coll__graph.png" border="0" usemap="#Foam_1_1DiFeliceDrag_coll__map" alt="Collaboration graph"/></div>
<map name="Foam_1_1DiFeliceDrag_coll__map" id="Foam_1_1DiFeliceDrag_coll__map">
<area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="11,101,136,131"/><area shape="rect" href="classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="8,5,139,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classFoam_1_1DiFeliceDrag-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8896a875a806858bc7a7121ef55d1a97"></a><!-- doxytag: member="Foam::DiFeliceDrag::TypeName" ref="a8896a875a806858bc7a7121ef55d1a97" args="(&quot;DiFeliceDrag&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;DiFeliceDrag&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9d1f88b76b98ec8a5898eccb76c53e0c"></a><!-- doxytag: member="Foam::DiFeliceDrag::DiFeliceDrag" ref="a9d1f88b76b98ec8a5898eccb76c53e0c" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>DiFeliceDrag</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a636284e2054fa861cbc03260b2d27e53"></a><!-- doxytag: member="Foam::DiFeliceDrag::setForce" ref="a636284e2054fa861cbc03260b2d27e53" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8896a875a806858bc7a7121ef55d1a97"></a><!-- doxytag: member="Foam::DiFeliceDrag::TypeName" ref="a8896a875a806858bc7a7121ef55d1a97" args="(&quot;DiFeliceDrag&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;DiFeliceDrag&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9d1f88b76b98ec8a5898eccb76c53e0c"></a><!-- doxytag: member="Foam::DiFeliceDrag::DiFeliceDrag" ref="a9d1f88b76b98ec8a5898eccb76c53e0c" args="(const dictionary &amp;dict, cfdemCloud &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>DiFeliceDrag</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloud.html">cfdemCloud</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a636284e2054fa861cbc03260b2d27e53"></a><!-- doxytag: member="Foam::DiFeliceDrag::setForce" ref="a636284e2054fa861cbc03260b2d27e53" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
</table>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/<a class="el" href="lnInclude_2DiFeliceDrag_8H_source.html">DiFeliceDrag.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/DiFeliceDrag/<a class="el" href="subModels_2forceModel_2DiFeliceDrag_2DiFeliceDrag_8H_source.html">DiFeliceDrag.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/DiFeliceDrag.C</li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/DiFeliceDrag/DiFeliceDrag.C</li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,111 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Foam::DiFeliceDragMS Member List</h1>This is the complete list of members for <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>cloudRefMS</b>() const (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>cloudRefMS</b>() const (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>coupleForce_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModelMS, dictionary,(const dictionary &amp;dict, cfdemCloudMS &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModelMS, dictionary,(const dictionary &amp;dict, cfdemCloudMS &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>declareRunTimeSelectionTable</b>(autoPtr, forceModel, dictionary,(const dictionary &amp;dict, cfdemCloud &amp;sm),(dict, sm)) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>dict_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DiFeliceDragMS</b>(const dictionary &amp;dict, cfdemCloudMS &amp;sm) (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>DiFeliceDragMS</b>(const dictionary &amp;dict, cfdemCloudMS &amp;sm) (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModel</b>(const dictionary &amp;dict, cfdemCloud &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModelMS</b>(const dictionary &amp;dict, cfdemCloudMS &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>forceModelMS</b>(const dictionary &amp;dict, cfdemCloudMS &amp;sm) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces</b>() const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>impParticleForces_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [mutable, protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>manipulateScalarField</b>(volScalarField &amp;) const (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [inline]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>modelType_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloudMS &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloudMS &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>New</b>(const dictionary &amp;dict, cfdemCloud &amp;sm, word forceType) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>particleCloud_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>particleCloudMS_</b> (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>setForce</b>(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatDEM_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>treatExplicit_</b> (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;DiFeliceDragMS&quot;) (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;DiFeliceDragMS&quot;) (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;forceModelMS&quot;) (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>TypeName</b>(&quot;forceModel&quot;) (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~DiFeliceDragMS</b>() (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~DiFeliceDragMS</b>() (defined in <a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a>)</td><td><a class="el" href="classFoam_1_1DiFeliceDragMS.html">Foam::DiFeliceDragMS</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModel</b>() (defined in <a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a>)</td><td><a class="el" href="classFoam_1_1forceModel.html">Foam::forceModel</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModelMS</b>() (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td><code> [virtual]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~forceModelMS</b>() (defined in <a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a>)</td><td><a class="el" href="classFoam_1_1forceModelMS.html">Foam::forceModelMS</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,104 @@
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>CFDEMcoupling: Foam::DiFeliceDragMS Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
<li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
</ul>
</div>
<div class="navpath"><b>Foam</b>::<a class="el" href="classFoam_1_1DiFeliceDragMS.html">DiFeliceDragMS</a>
</div>
</div>
<div class="contents">
<h1>Foam::DiFeliceDragMS Class Reference</h1><!-- doxytag: class="Foam::DiFeliceDragMS" --><!-- doxytag: inherits="Foam::forceModelMS,Foam::forceModelMS" --><div class="dynheader">
Inheritance diagram for Foam::DiFeliceDragMS:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1DiFeliceDragMS__inherit__graph.png" border="0" usemap="#Foam_1_1DiFeliceDragMS_inherit__map" alt="Inheritance graph"/></div>
<map name="Foam_1_1DiFeliceDragMS_inherit__map" id="Foam_1_1DiFeliceDragMS_inherit__map">
<area shape="rect" href="classFoam_1_1forceModelMS.html" title="Foam::forceModelMS" alt="" coords="9,83,156,112"/><area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="20,5,145,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Foam::DiFeliceDragMS:</div>
<div class="dynsection">
<div class="center"><img src="classFoam_1_1DiFeliceDragMS__coll__graph.png" border="0" usemap="#Foam_1_1DiFeliceDragMS_coll__map" alt="Collaboration graph"/></div>
<map name="Foam_1_1DiFeliceDragMS_coll__map" id="Foam_1_1DiFeliceDragMS_coll__map">
<area shape="rect" href="classFoam_1_1forceModelMS.html" title="Foam::forceModelMS" alt="" coords="9,197,156,227"/><area shape="rect" href="classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="20,101,145,131"/><area shape="rect" href="classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="180,5,311,35"/><area shape="rect" href="classFoam_1_1cfdemCloudMS.html" title="Foam::cfdemCloudMS" alt="" coords="169,101,321,131"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classFoam_1_1DiFeliceDragMS-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1fd1a317d87c4f544d1a5d373cbc872c"></a><!-- doxytag: member="Foam::DiFeliceDragMS::TypeName" ref="a1fd1a317d87c4f544d1a5d373cbc872c" args="(&quot;DiFeliceDragMS&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;DiFeliceDragMS&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4ad550afcb989b1038cd6356c6022a8c"></a><!-- doxytag: member="Foam::DiFeliceDragMS::DiFeliceDragMS" ref="a4ad550afcb989b1038cd6356c6022a8c" args="(const dictionary &amp;dict, cfdemCloudMS &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>DiFeliceDragMS</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloudMS.html">cfdemCloudMS</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4daeef4039ee8db65026fa16ca3e9d60"></a><!-- doxytag: member="Foam::DiFeliceDragMS::setForce" ref="a4daeef4039ee8db65026fa16ca3e9d60" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1fd1a317d87c4f544d1a5d373cbc872c"></a><!-- doxytag: member="Foam::DiFeliceDragMS::TypeName" ref="a1fd1a317d87c4f544d1a5d373cbc872c" args="(&quot;DiFeliceDragMS&quot;)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>TypeName</b> (&quot;DiFeliceDragMS&quot;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4ad550afcb989b1038cd6356c6022a8c"></a><!-- doxytag: member="Foam::DiFeliceDragMS::DiFeliceDragMS" ref="a4ad550afcb989b1038cd6356c6022a8c" args="(const dictionary &amp;dict, cfdemCloudMS &amp;sm)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><b>DiFeliceDragMS</b> (const dictionary &amp;dict, <a class="el" href="classFoam_1_1cfdemCloudMS.html">cfdemCloudMS</a> &amp;sm)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4daeef4039ee8db65026fa16ca3e9d60"></a><!-- doxytag: member="Foam::DiFeliceDragMS::setForce" ref="a4daeef4039ee8db65026fa16ca3e9d60" args="(double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setForce</b> (double **const &amp;mask, double **&amp;, double **&amp;, double **&amp;) const </td></tr>
</table>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/<a class="el" href="lnInclude_2DiFeliceDragMS_8H_source.html">DiFeliceDragMS.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModelMS/DiFeliceDragMS/<a class="el" href="subModels_2forceModelMS_2DiFeliceDragMS_2DiFeliceDragMS_8H_source.html">DiFeliceDragMS.H</a></li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/DiFeliceDragMS.C</li>
<li>/home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModelMS/DiFeliceDragMS/DiFeliceDragMS.C</li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Apr 23 19:06:19 2012 for CFDEMcoupling by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>

View File

@ -0,0 +1,6 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModelMS.html" title="Foam::forceModelMS" alt="" coords="9,197,156,227"/>
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="20,101,145,131"/>
<area shape="rect" href="$classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="180,5,311,35"/>
<area shape="rect" href="$classFoam_1_1cfdemCloudMS.html" title="Foam::cfdemCloudMS" alt="" coords="169,101,321,131"/>
</map>

View File

@ -0,0 +1 @@
1a8f4d266d613dfbd35e807439ccf17d

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModelMS.html" title="Foam::forceModelMS" alt="" coords="9,83,156,112"/>
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="20,5,145,35"/>
</map>

View File

@ -0,0 +1 @@
bed15f6175740a3dc110d63a0a2bd6b6

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" href="$classFoam_1_1forceModel.html" title="Foam::forceModel" alt="" coords="11,101,136,131"/>
<area shape="rect" href="$classFoam_1_1cfdemCloud.html" title="Foam::cfdemCloud" alt="" coords="8,5,139,35"/>
</map>

View File

@ -0,0 +1 @@
75207c4fe5a150a3d4ca17e3fbc59fdd

Some files were not shown because too many files have changed in this diff Show More