MAIA bb96820c
Multiphysics at AIA
Loading...
Searching...
No Matches
dgcartesiangridmap.h
Go to the documentation of this file.
1// Copyright (C) 2024 The m-AIA AUTHORS
2//
3// This file is part of m-AIA (https://git.rwth-aachen.de/aia/m-AIA/m-AIA)
4//
5// SPDX-License-Identifier: LGPL-3.0-only
6
7#ifndef DGGRIDMAP_H_
8#define DGGRIDMAP_H_
9
10#include "INCLUDE/maiatypes.h"
11
12namespace maia {
13namespace dg {
14
20 // For each target cell, store the number of offspring of the donor cell that
21 // are mapped to this cell
22 std::vector<MInt> m_noOffspring;
23};
24
25} // namespace dg
26} // namespace maia
27
28#endif // ifndef DGGRIDMAP_H_
int32_t MInt
Definition: maiatypes.h:62
Namespace for auxiliary functions/classes.
std::vector< MInt > m_noOffspring
MInt m_noTargetCells
Number of consecutive mapped target cells.
MInt m_firstTargetCellId
Cell id on current domain (target grid)
MInt m_firstDonorGlobalId
First cell id of mapped (donor) grid.
MInt m_noDonorCells
Number of consecutive mapped donor cells.