phasicFlow/utilities/postprocessPhasicFlow/rectMeshFields.hpp

46 lines
1.5 KiB
C++
Raw Normal View History

2022-09-05 06:44:41 +00:00
/*------------------------------- 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-09 22:02:54 +00:00
#ifndef __rectMeshFields_hpp__
#define __rectMeshFields_hpp__
2022-09-05 06:44:41 +00:00
2022-12-09 22:02:54 +00:00
#include "rectMeshField.hpp"
2022-09-05 06:44:41 +00:00
2022-09-26 07:38:03 +00:00
namespace pFlow
2022-09-05 06:44:41 +00:00
{
2022-09-26 07:38:03 +00:00
template<typename T>
using rectMeshField_H = rectMeshField<T,HostSpace>;
2022-09-05 06:44:41 +00:00
2022-09-26 07:38:03 +00:00
using int8RectMeshField_H = rectMeshField<int8, HostSpace>;
2022-09-05 06:44:41 +00:00
2022-09-26 07:38:03 +00:00
using int32RectMeshField_H = rectMeshField<int32, HostSpace>;
2022-09-05 06:44:41 +00:00
2022-09-26 07:38:03 +00:00
using int64RectMeshField_H = rectMeshField<int64, HostSpace>;
2022-09-05 06:44:41 +00:00
2022-09-26 07:38:03 +00:00
using realRectMeshField_H = rectMeshField<real, HostSpace>;
2022-09-05 06:44:41 +00:00
2022-09-26 07:38:03 +00:00
using realx3RectMeshField_H = rectMeshField<realx3, HostSpace>;
2022-09-05 06:44:41 +00:00
}
2022-12-09 22:02:54 +00:00
#endif // __rectMeshFields_hpp__