VTK-m  2.0
MarkActiveNeighbors.h
Go to the documentation of this file.
1 //============================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //============================================================================
10 // Copyright (c) 2016, Los Alamos National Security, LLC
11 // All rights reserved.
12 //
13 // Copyright 2016. Los Alamos National Security, LLC.
14 // This software was produced under U.S. Government contract DE-AC52-06NA25396
15 // for Los Alamos National Laboratory (LANL), which is operated by
16 // Los Alamos National Security, LLC for the U.S. Department of Energy.
17 // The U.S. Government has rights to use, reproduce, and distribute this
18 // software. NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC
19 // MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY FOR THE
20 // USE OF THIS SOFTWARE. If software is modified to produce derivative works,
21 // such modified software should be clearly marked, so as not to confuse it
22 // with the version available from LANL.
23 //
24 // Additionally, redistribution and use in source and binary forms, with or
25 // without modification, are permitted provided that the following conditions
26 // are met:
27 //
28 // 1. Redistributions of source code must retain the above copyright notice,
29 // this list of conditions and the following disclaimer.
30 // 2. Redistributions in binary form must reproduce the above copyright notice,
31 // this list of conditions and the following disclaimer in the documentation
32 // and/or other materials provided with the distribution.
33 // 3. Neither the name of Los Alamos National Security, LLC, Los Alamos
34 // National Laboratory, LANL, the U.S. Government, nor the names of its
35 // contributors may be used to endorse or promote products derived from
36 // this software without specific prior written permission.
37 //
38 // THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND
39 // CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
40 // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
41 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS
42 // NATIONAL SECURITY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
43 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
44 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
45 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
46 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
47 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
48 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49 //============================================================================
50 
51 #ifndef vtkm_worklet_cosmotools_mark_active_neighbors_h
52 #define vtkm_worklet_cosmotools_mark_active_neighbors_h
53 
56 
57 namespace vtkm
58 {
59 namespace worklet
60 {
61 namespace cosmotools
62 {
63 // Worklet for particles to indicate which neighbors are active
64 // because at least one particle in that bin is within linking length
65 template <typename T>
67 {
68 public:
69  using ControlSignature =
70  void(FieldIn index, // (input) particle index
71  FieldIn partId, // (input) particle id sorted
72  FieldIn binId, // (input) bin Id per particle
73  WholeArrayIn partIdArray, // (input) sequence imposed on sorted particle Ids
74  WholeArrayIn location, // (input) location of particles
75  WholeArrayIn firstPartId, // (input) vector of first particle indices
76  WholeArrayIn lastPartId, // (input) vector of last particle indices
77  FieldOut flag); // (output) active bin neighbors mask
78  using ExecutionSignature = _8(_1, _2, _3, _4, _5, _6, _7);
79  using InputDomain = _1;
80 
84 
85  // Constructor
88  const vtkm::Id YNum,
89  const vtkm::Id ZNum,
90  const vtkm::Id NumNeighbors,
91  const T LinkLen)
92  : xNum(XNum)
93  , yNum(YNum)
94  , zNum(ZNum)
95  , NUM_NEIGHBORS(NumNeighbors)
96  , linkLenSq(LinkLen * LinkLen)
97  {
98  }
99 
100  template <typename InIdPortalType, typename InFieldPortalType, typename InVectorPortalType>
102  const vtkm::Id& iPartId,
103  const vtkm::Id& iBinId,
104  const InIdPortalType& partIdArray,
105  const InFieldPortalType& location,
106  const InVectorPortalType& firstPartId,
107  const InVectorPortalType& lastPartId) const
108  {
109  const vtkm::Id ybin = (iBinId / xNum) % yNum;
110  const vtkm::Id zbin = iBinId / (xNum * yNum);
111  vtkm::UInt32 activeFlag = 0;
112  vtkm::UInt32 bcnt = 1;
113  vtkm::Id cnt = 0;
114 
115  // Examine all neighbor bins surrounding this particle
116  for (vtkm::Id z = zbin - 1; z <= zbin + 1; z++)
117  {
118  for (vtkm::Id y = ybin - 1; y <= ybin + 1; y++)
119  {
120  if ((y >= 0) && (y < yNum) && (z >= 0) && (z < zNum))
121  {
122  vtkm::Id pos = NUM_NEIGHBORS * i + cnt;
123  vtkm::Id startParticle = firstPartId.Get(pos);
124  vtkm::Id endParticle = lastPartId.Get(pos);
125 
126  // If the bin has any particles, check to see if any of those
127  // are within the linking length from this particle
128  for (vtkm::Id j = startParticle; j < endParticle; j++)
129  {
130  vtkm::Id jPartId = partIdArray.Get(j);
131  vtkm::Vec<T, 3> iloc = location.Get(iPartId);
132  vtkm::Vec<T, 3> jloc = location.Get(jPartId);
133  T xDist = iloc[0] - jloc[0];
134  T yDist = iloc[1] - jloc[1];
135  T zDist = iloc[2] - jloc[2];
136 
137  // Found a particle within linking length so this bin is active
138  if ((xDist * xDist + yDist * yDist + zDist * zDist) <= linkLenSq)
139  {
140  activeFlag = activeFlag | bcnt;
141  break;
142  }
143  }
144  }
145  bcnt = bcnt << 1;
146  cnt++;
147  }
148  }
149  return activeFlag;
150  }
151 }; // MarkActiveNeighbors
152 }
153 }
154 }
155 
156 #endif
vtkm::worklet::cosmotools::MarkActiveNeighbors::InputDomain
_1 InputDomain
Definition: MarkActiveNeighbors.h:79
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
WorkletMapField.h
VTKM_EXEC_CONT
#define VTKM_EXEC_CONT
Definition: ExportMacros.h:52
vtkm::worklet::WorkletMapField::FieldOut
A control signature tag for output fields.
Definition: WorkletMapField.h:60
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::cosmotools::MarkActiveNeighbors::ControlSignature
void(FieldIn index, FieldIn partId, FieldIn binId, WholeArrayIn partIdArray, WholeArrayIn location, WholeArrayIn firstPartId, WholeArrayIn lastPartId, FieldOut flag) ControlSignature
Definition: MarkActiveNeighbors.h:77
vtkm::worklet::cosmotools::MarkActiveNeighbors::MarkActiveNeighbors
VTKM_EXEC_CONT MarkActiveNeighbors(const vtkm::Id XNum, const vtkm::Id YNum, const vtkm::Id ZNum, const vtkm::Id NumNeighbors, const T LinkLen)
Definition: MarkActiveNeighbors.h:87
vtkm::worklet::cosmotools::MarkActiveNeighbors::operator()
VTKM_EXEC vtkm::UInt32 operator()(const vtkm::Id &i, const vtkm::Id &iPartId, const vtkm::Id &iBinId, const InIdPortalType &partIdArray, const InFieldPortalType &location, const InVectorPortalType &firstPartId, const InVectorPortalType &lastPartId) const
Definition: MarkActiveNeighbors.h:101
vtkm::worklet::cosmotools::MarkActiveNeighbors::zNum
vtkm::Id zNum
Definition: MarkActiveNeighbors.h:81
vtkm::worklet::cosmotools::MarkActiveNeighbors
Definition: MarkActiveNeighbors.h:66
vtkm::worklet::cosmotools::MarkActiveNeighbors::ExecutionSignature
_8(_1, _2, _3, _4, _5, _6, _7) ExecutionSignature
Definition: MarkActiveNeighbors.h:78
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
vtkm::worklet::cosmotools::MarkActiveNeighbors::NUM_NEIGHBORS
vtkm::Id NUM_NEIGHBORS
Definition: MarkActiveNeighbors.h:82
vtkm::worklet::cosmotools::MarkActiveNeighbors::xNum
vtkm::Id xNum
Definition: MarkActiveNeighbors.h:81
vtkm::Vec< T, 3 >
Definition: Types.h:975
vtkm::UInt32
uint32_t UInt32
Definition: Types.h:161
TagTypes.h
vtkm::worklet::cosmotools::MarkActiveNeighbors::linkLenSq
T linkLenSq
Definition: MarkActiveNeighbors.h:83
vtkm::worklet::cosmotools::MarkActiveNeighbors::yNum
vtkm::Id yNum
Definition: MarkActiveNeighbors.h:81
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38