VTK-m  2.0
ComputePotentialNeighbors.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_compute_potential_neighbors_h
52 #define vtkm_worklet_cosmotools_compute_potential_neighbors_h
53 
55 
56 namespace vtkm
57 {
58 namespace worklet
59 {
60 namespace cosmotools
61 {
62 
63 // Worklet for computing the potential for a particle using 27 neighbor bins
64 template <typename T>
66 {
67 public:
69 
70  using ControlSignature = void(FieldIn index, // (input) particle Id
71  WholeArrayIn binId, // (input) bin id for this particle
72  WholeArrayIn partId, // (input) first particle in halo
73  WholeArrayIn xLoc, // (input) x location in domain
74  WholeArrayIn yLoc, // (input) y location in domain
75  WholeArrayIn zLoc, // (input) z location in domain
76  WholeArrayIn firstParticleId, // (input) first particle in halo
77  WholeArrayIn lastParticleId, // (input) last particle in halo
78  FieldOut potential); // (output) bin ID
79  using ExecutionSignature = _9(_1, _2, _3, _4, _5, _6, _7, _8);
80  using InputDomain = _1;
81 
84  T mass;
85 
86  // Constructor
89  const vtkm::Id YNum,
90  const vtkm::Id ZNum,
91  const vtkm::Id NumNeighbors,
92  T Mass)
93  : xNum(XNum)
94  , yNum(YNum)
95  , zNum(ZNum)
96  , NUM_NEIGHBORS(NumNeighbors)
97  , mass(Mass)
98  {
99  }
100 
101  template <typename InFieldPortalType, typename InIdPortalType, typename InVectorPortalType>
103  const InIdPortalType& binId,
104  const InIdPortalType& partId,
105  const InFieldPortalType& xLoc,
106  const InFieldPortalType& yLoc,
107  const InFieldPortalType& zLoc,
108  const InVectorPortalType& firstParticleId,
109  const InVectorPortalType& lastParticleId) const
110  {
111  vtkm::Id iId = partId.Get(i);
112  vtkm::Id ibin = binId.Get(i);
113 
114  const vtkm::Id yVal = (ibin / xNum) % yNum;
115  const vtkm::Id zVal = ibin / (xNum * yNum);
116  vtkm::Id cnt = 0;
117  T potential = 0.0f;
118 
119  // Iterate on the 9 sets of neighbor particles
120  for (vtkm::Id z = zVal - 1; z <= zVal + 1; z++)
121  {
122  for (vtkm::Id y = yVal - 1; y <= yVal + 1; y++)
123  {
124  vtkm::Id firstBinId = NUM_NEIGHBORS * i + cnt;
125  vtkm::Id startParticle = firstParticleId.Get(firstBinId);
126  vtkm::Id endParticle = lastParticleId.Get(firstBinId);
127 
128  for (vtkm::Id j = startParticle; j < endParticle; j++)
129  {
130  vtkm::Id jId = partId.Get(j);
131  T xDist = xLoc.Get(iId) - xLoc.Get(jId);
132  T yDist = yLoc.Get(iId) - yLoc.Get(jId);
133  T zDist = zLoc.Get(iId) - zLoc.Get(jId);
134  T r = vtkm::Sqrt((xDist * xDist) + (yDist * yDist) + (zDist * zDist));
135  if ((i != j) && (fabs(r) > 0.00000000001f))
136  potential -= mass / r;
137  }
138  cnt++;
139  }
140  }
141  return potential;
142  }
143 }; // ComputePotentialNeighbors
144 }
145 }
146 }
147 
148 #endif
vtkm::worklet::cosmotools::ComputePotentialNeighbors::yNum
vtkm::Id yNum
Definition: ComputePotentialNeighbors.h:82
vtkm::Sqrt
VTKM_EXEC_CONT vtkm::Float32 Sqrt(vtkm::Float32 x)
Compute the square root of x.
Definition: Math.h:958
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::worklet::cosmotools::ComputePotentialNeighbors::ExecutionSignature
_9(_1, _2, _3, _4, _5, _6, _7, _8) ExecutionSignature
Definition: ComputePotentialNeighbors.h:79
vtkm::worklet::cosmotools::ComputePotentialNeighbors::ComputePotentialNeighbors
VTKM_EXEC_CONT ComputePotentialNeighbors(const vtkm::Id XNum, const vtkm::Id YNum, const vtkm::Id ZNum, const vtkm::Id NumNeighbors, T Mass)
Definition: ComputePotentialNeighbors.h:88
vtkm::worklet::cosmotools::ComputePotentialNeighbors::ControlSignature
void(FieldIn index, WholeArrayIn binId, WholeArrayIn partId, WholeArrayIn xLoc, WholeArrayIn yLoc, WholeArrayIn zLoc, WholeArrayIn firstParticleId, WholeArrayIn lastParticleId, FieldOut potential) ControlSignature
Definition: ComputePotentialNeighbors.h:78
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::cosmotools::ComputePotentialNeighbors::zNum
vtkm::Id zNum
Definition: ComputePotentialNeighbors.h:82
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
vtkm::worklet::cosmotools::ComputePotentialNeighbors::InputDomain
_1 InputDomain
Definition: ComputePotentialNeighbors.h:80
vtkm::worklet::cosmotools::ComputePotentialNeighbors::xNum
vtkm::Id xNum
Definition: ComputePotentialNeighbors.h:82
vtkm::worklet::cosmotools::ComputePotentialNeighbors
Definition: ComputePotentialNeighbors.h:65
vtkm::worklet::cosmotools::ComputePotentialNeighbors::operator()
VTKM_EXEC T operator()(const vtkm::Id &i, const InIdPortalType &binId, const InIdPortalType &partId, const InFieldPortalType &xLoc, const InFieldPortalType &yLoc, const InFieldPortalType &zLoc, const InVectorPortalType &firstParticleId, const InVectorPortalType &lastParticleId) const
Definition: ComputePotentialNeighbors.h:102
vtkm::worklet::cosmotools::ComputePotentialNeighbors::NUM_NEIGHBORS
vtkm::Id NUM_NEIGHBORS
Definition: ComputePotentialNeighbors.h:83
vtkm::List
Definition: List.h:34
vtkm::worklet::cosmotools::ComputePotentialNeighbors::mass
T mass
Definition: ComputePotentialNeighbors.h:84
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38