mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
Utility postProcess is modified to be used in Version 1.0
- counting dictionary is added to postProcess - Code need to be modified to cleaned (fields in the repository should be removed onces postProcess is passed the next time step)
This commit is contained in:
@ -27,17 +27,17 @@ namespace pFlow
|
||||
{
|
||||
|
||||
template<typename T>
|
||||
using rectMeshField_H = rectMeshField<T,HostSpace>;
|
||||
using rectMeshField_H = rectMeshField<T>;
|
||||
|
||||
using int8RectMeshField_H = rectMeshField<int8, HostSpace>;
|
||||
using int8RectMeshField_H = rectMeshField<int8>;
|
||||
|
||||
using int32RectMeshField_H = rectMeshField<int32, HostSpace>;
|
||||
using int32RectMeshField_H = rectMeshField<int32>;
|
||||
|
||||
using int64RectMeshField_H = rectMeshField<int64, HostSpace>;
|
||||
using int64RectMeshField_H = rectMeshField<int64>;
|
||||
|
||||
using realRectMeshField_H = rectMeshField<real, HostSpace>;
|
||||
using realRectMeshField_H = rectMeshField<real>;
|
||||
|
||||
using realx3RectMeshField_H = rectMeshField<realx3, HostSpace>;
|
||||
using realx3RectMeshField_H = rectMeshField<realx3>;
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user