IOSS 2.0
Loading...
Searching...
No Matches
Ioss_FaceBlock.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"
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 faces with the same topology.
27 */
28 class IOSS_EXPORT FaceBlock : public EntityBlock
29 {
30 public:
31 FaceBlock(DatabaseIO *io_database, const std::string &my_name, const std::string &face_type,
32 int64_t number_faces);
33
34 IOSS_NODISCARD std::string type_string() const override { return "FaceBlock"; }
35 IOSS_NODISCARD std::string short_type_string() const override { return "faceblock"; }
36 IOSS_NODISCARD std::string contains_string() const override { return "Face"; }
37 IOSS_NODISCARD EntityType type() const override { return FACEBLOCK; }
38
39 // Handle implicit properties -- These are calculated from data stored
40 // in the grouping entity instead of having an explicit value assigned.
41 // An example would be 'face_block_count' for a region.
42 IOSS_NODISCARD Property get_implicit_property(const std::string &my_name) const override;
43
44 protected:
45 int64_t internal_get_field_data(const Field &field, void *data,
46 size_t data_size) const override;
47
48 int64_t internal_put_field_data(const Field &field, void *data,
49 size_t data_size) const override;
50
51 int64_t internal_get_zc_field_data(const Field &field, void **data,
52 size_t *data_size) const override;
53 };
54} // namespace Ioss
#define IOSS_NODISCARD
Definition Ioss_CodeTypes.h:55
An input or output Database.
Definition Ioss_DatabaseIO.h:63
Base class for all 'block'-type grouping entities, which means all members of the block are similar o...
Definition Ioss_EntityBlock.h:38
A collection of element faces with the same topology.
Definition Ioss_FaceBlock.h:29
IOSS_NODISCARD std::string contains_string() const override
What does this entity contain.
Definition Ioss_FaceBlock.h:36
IOSS_NODISCARD std::string short_type_string() const override
Get a short name of the particular type of entity.
Definition Ioss_FaceBlock.h:35
IOSS_NODISCARD std::string type_string() const override
Get the name of the particular type of entity.
Definition Ioss_FaceBlock.h:34
IOSS_NODISCARD EntityType type() const override
Get the EntityType, which indicates the particular type of GroupingEntity this is.
Definition Ioss_FaceBlock.h:37
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
@ FACEBLOCK
Definition Ioss_EntityType.h:15