30 using Tscal = shambase::VecComponent<Tvec>;
31 static constexpr u32 dim = shambase::VectorProperties<Tvec>::dimension;
39 LatticeIter generator;
41 static auto init_gen(Tscal dr, std::pair<Tvec, Tvec> box) {
43 auto [idxs_min, idxs_max] = Lattice::get_box_index_bounds(dr, box.first, box.second);
45 return LatticeIter(dr, idxs_min, idxs_max);
49 GeneratorLatticeCubic(
ShamrockCtx &context, Tscal dr, std::pair<Tvec, Tvec> box)
50 : context(context), dr(dr), box(box), generator(init_gen(dr, box)) {}
52 bool is_done() {
return generator.is_done(); }
57 using namespace shamrock::patch;
60 std::vector<Tvec> pos_data;
64 u64 loc_gen_count = nmax;
66 auto gen_info = shamalgs::collective::fetch_view(loc_gen_count);
68 u64 skip_start = gen_info.head_offset;
69 u64 gen_cnt = loc_gen_count;
70 u64 skip_end = gen_info.total_byte_count - loc_gen_count - gen_info.head_offset;
73 "GeneratorLatticeCubic",
79 skip_start + gen_cnt + skip_end);
81 generator.skip(skip_start);
82 auto tmp = generator.next_n(gen_cnt);
83 generator.skip(skip_end);
87 pos_data.push_back(r);
94 if (!pos_data.empty()) {
95 tmp.resize(pos_data.size());
99 u32 len = pos_data.size();
101 = tmp.get_field<Tvec>(sched.pdl_old().get_field_idx<Tvec>(
"xyz"));
103 f.override(pos_data, len);
108 = tmp.get_field<Tscal>(sched.pdl_old().get_field_idx<Tscal>(
"hpart"));
115 std::string
get_name() {
return "GeneratorLatticeCubic"; }
std::uint32_t u32
32 bit unsigned integer
std::uint64_t u64
64 bit unsigned integer
Iterator utility to generate the lattice.
utility for generating Cubic crystal lattices
bool is_done()
This function return true if the setup is done.
std::string get_name()
Get the name of the node.
ISPHSetupNode_Dot get_dot_subgraph()
Get a dot subgraph describing the node and its childrens (recursively).
shamrock::patch::PatchDataLayer next_n(u32 nmax)
This function generate patchdata with at most nmax per MPI ranks This function is always assumed as c...
This class is an interface that all SPH setup nodes must implement. It describe an operation associat...
PatchDataLayer container class, the layout is described in patchdata_layout.
T & get_check_ref(const std::unique_ptr< T > &ptr, SourceLocation loc=SourceLocation())
Takes a std::unique_ptr and returns a reference to the object it holds. It throws a std::runtime_erro...
namespace for the sph model modules
This file contains the definition for the stacktrace related functionality.
shambase::details::BasicStackEntry StackEntry
Alias for shambase::details::BasicStackEntry.
Axis-Aligned bounding box.
This struct is used to generate a dot graph of the setup tree.
static bool is_in_patch_converted(sycl::vec< T, 3 > val, sycl::vec< T, 3 > min_val, sycl::vec< T, 3 > max_val)
check if particle is in the asked range, given the output of @convert_coord