IOSS 2.0
Loading...
Searching...
No Matches
Ioss_EdgeBlock.h
Go to the documentation of this file.
1// Copyright(C) 1999-2020, 2022, 2023, 2024 National Technology & Engineering Solutions
2// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
3// NTESS, the U.S. Government retains certain rights in this software.
4//
5// See packages/seacas/LICENSE for details
6
7#pragma once
8
9#include "ioss_export.h"
10
11#include "Ioss_EntityBlock.h" // for EntityBlock
12#include "Ioss_EntityType.h" // for EntityType, etc
13#include "Ioss_Property.h" // for Property
14#include <cstddef> // for size_t
15#include <cstdint> // for int64_t
16#include <string> // for string
17namespace Ioss {
18 class DatabaseIO;
19} // namespace Ioss
20namespace Ioss {
21 class Field;
22} // namespace Ioss
23
24namespace Ioss {
25
26 /** \brief A collection of element edges with the same topology.
27 */
28 class IOSS_EXPORT EdgeBlock : public EntityBlock
29 {
30 public:
31 EdgeBlock(DatabaseIO *io_database, const std::string &my_name, const std::string &edge_type,
32 int64_t number_edges);
33
34 EdgeBlock(const EdgeBlock &) = default;
35
36 IOSS_NODISCARD std::string type_string() const override { return "EdgeBlock"; }
37 IOSS_NODISCARD std::string short_type_string() const override { return "edgeblock"; }
38 IOSS_NODISCARD std::string contains_string() const override { return "Edge"; }
39 IOSS_NODISCARD EntityType type() const override { return EDGEBLOCK; }
40
41 // Handle implicit properties -- These are calculated from data stored
42 // in the grouping entity instead of having an explicit value assigned.
43 // An example would be 'edge_block_count' for a region.
44 IOSS_NODISCARD Property get_implicit_property(const std::string &my_name) const override;
45
46 protected:
47 int64_t internal_get_field_data(const Field &field, void *data,
48 size_t data_size) const override;
49
50 int64_t internal_put_field_data(const Field &field, void *data,
51 size_t data_size) const override;
52
53 int64_t internal_get_zc_field_data(const Field &field, void **data,
54 size_t *data_size) const override;
55 };
56} // namespace Ioss
#define IOSS_NODISCARD
Definition Ioss_CodeTypes.h:54
An input or output Database.
Definition Ioss_DatabaseIO.h:63
A collection of element edges with the same topology.
Definition Ioss_EdgeBlock.h:29
IOSS_NODISCARD std::string contains_string() const override
What does this entity contain.
Definition Ioss_EdgeBlock.h:38
IOSS_NODISCARD EntityType type() const override
Get the EntityType, which indicates the particular type of GroupingEntity this is.
Definition Ioss_EdgeBlock.h:39
IOSS_NODISCARD std::string short_type_string() const override
Get a short name of the particular type of entity.
Definition Ioss_EdgeBlock.h:37
EdgeBlock(const EdgeBlock &)=default
IOSS_NODISCARD std::string type_string() const override
Get the name of the particular type of entity.
Definition Ioss_EdgeBlock.h:36
Base class for all 'block'-type grouping entities, which means all members of the block are similar o...
Definition Ioss_EntityBlock.h:38
Holds metadata for bulk data associated with a GroupingEntity.
Definition Ioss_Field.h:25
A named value that has a known type.
Definition Ioss_Property.h:27
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40
EntityType
The particular type of GroupingEntity.
Definition Ioss_EntityType.h:12
@ EDGEBLOCK
Definition Ioss_EntityType.h:14