109 lines
2.9 KiB
C++
Executable File
109 lines
2.9 KiB
C++
Executable File
/*---------------------------------------------------------------------------*\
|
|
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(R). Note: this code is not part of OpenFOAM(R) (see DISCLAIMER).
|
|
|
|
Class
|
|
engineSearchMany2Many
|
|
|
|
SourceFiles
|
|
engineSearchMany2Many.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef engineSearchMany2Many_H
|
|
#define engineSearchMany2Many_H
|
|
|
|
#include "engineSearch.H"
|
|
|
|
#include "meshSearch.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class noDrag Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class engineSearchMany2Many
|
|
:
|
|
public engineSearch
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("engineSearchMany2Many");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
engineSearchMany2Many
|
|
(
|
|
const dictionary& dict,
|
|
cfdemCloud& sm
|
|
);
|
|
|
|
// Destructor
|
|
|
|
~engineSearchMany2Many();
|
|
|
|
|
|
// Member Functions
|
|
label intersection
|
|
(
|
|
const point& pStart,
|
|
const point& pEnd
|
|
) const;
|
|
|
|
label findCell
|
|
(
|
|
double** const& mask,
|
|
double**& positions,
|
|
int**& cellIDs,
|
|
int size
|
|
) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|