2022-09-05 01:56:29 +04:30
|
|
|
/*------------------------------- phasicFlow ---------------------------------
|
|
|
|
O C enter of
|
|
|
|
O O E ngineering and
|
|
|
|
O O M ultiscale modeling of
|
|
|
|
OOOOOOO F luid flow
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Copyright (C): www.cemf.ir
|
|
|
|
email: hamid.r.norouzi AT gmail.com
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Licence:
|
|
|
|
This file is part of phasicFlow code. It is a free software for simulating
|
|
|
|
granular and multiphase flows. You can redistribute it and/or modify it under
|
|
|
|
the terms of GNU General Public License v3 or any other later versions.
|
|
|
|
|
|
|
|
phasicFlow is distributed to help others in their research in the field of
|
|
|
|
granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
|
2022-12-10 01:32:54 +03:30
|
|
|
#include "types.hpp"
|
2024-03-24 01:46:19 -07:00
|
|
|
#include "unsortedPairs.hpp"
|
2022-09-05 01:56:29 +04:30
|
|
|
|
2024-03-24 01:46:19 -07:00
|
|
|
#ifndef __contactSearchGlobals_hpp__
|
|
|
|
#define __contactSearchGlobals_hpp__
|
2022-09-05 01:56:29 +04:30
|
|
|
|
|
|
|
namespace pFlow
|
|
|
|
{
|
|
|
|
|
2024-03-24 01:46:19 -07:00
|
|
|
using csExecutionSpace = DefaultExecutionSpace;
|
2022-09-05 01:56:29 +04:30
|
|
|
|
2024-03-24 01:46:19 -07:00
|
|
|
using csIdType = uint32;
|
2022-09-05 01:56:29 +04:30
|
|
|
|
2024-03-24 01:46:19 -07:00
|
|
|
using csPairContainerType = unsortedPairs<DefaultExecutionSpace, uint32>;
|
2022-09-05 01:56:29 +04:30
|
|
|
|
2024-04-04 12:31:19 -07:00
|
|
|
inline
|
|
|
|
const uint32 BASE_MIRROR_WALL_INDEX = 1000000;
|
|
|
|
|
2022-09-05 01:56:29 +04:30
|
|
|
}
|
|
|
|
|
2024-03-24 01:46:19 -07:00
|
|
|
#endif
|