IOSS 2.0
Loading...
Searching...
No Matches
Ioex_SuperElement.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#pragma once
7
8#include <cstddef> // for size_t
9#include <cstdint> // for int64_t
10#include <string> // for string
11
12#include "Ioss_CodeTypes.h"
13#include "Ioss_EntityType.h" // for EntityType, etc
14#include "Ioss_GroupingEntity.h" // for GroupingEntity
15#include "Ioss_Property.h" // for Property
16#include "ioex_export.h"
17
18namespace Ioss {
19 class Field;
20} // namespace Ioss
21
22namespace Ioss {
23 class Property;
24} // namespace Ioss
25
26namespace Ioex {
27 class IOEX_EXPORT SuperElement : public Ioss::GroupingEntity
28 {
29 public:
30 SuperElement(std::string filename, const std::string &my_name);
31 ~SuperElement() override;
32
33 IOSS_NODISCARD std::string type_string() const override { return "SuperElement"; }
34 IOSS_NODISCARD std::string short_type_string() const override { return "superelement"; }
35 IOSS_NODISCARD std::string contains_string() const override { return "Element"; }
37
38 // Handle implicit properties -- These are calculated from data stored
39 // in the grouping entity instead of having an explicit value assigned.
40 // An example would be 'element_block_count' for a region.
41 IOSS_NODISCARD Ioss::Property get_implicit_property(const std::string &the_name) const override;
42
43 protected:
44 int64_t internal_get_field_data(const Ioss::Field &field, void *data,
45 size_t data_size) const override;
46
47 int64_t internal_put_field_data(const Ioss::Field &field, void *data,
48 size_t data_size) const override;
49
50 int64_t internal_get_zc_field_data(const Ioss::Field &, void **, size_t *) const override
51 {
52 return -1;
53 }
54
55 private:
56 std::string fileName{};
57 size_t numDOF{0};
58 size_t num_nodes{0};
59 size_t numEIG{0};
60 size_t numRBM{0};
61 size_t num_dim{0};
62 int filePtr{-1};
63 };
64} // namespace Ioex
#define IOSS_NODISCARD
Definition Ioss_CodeTypes.h:54
Definition Ioex_SuperElement.h:28
IOSS_NODISCARD std::string type_string() const override
Get the name of the particular type of entity.
Definition Ioex_SuperElement.h:33
IOSS_NODISCARD Ioss::EntityType type() const override
Get the EntityType, which indicates the particular type of GroupingEntity this is.
Definition Ioex_SuperElement.h:36
IOSS_NODISCARD std::string short_type_string() const override
Get a short name of the particular type of entity.
Definition Ioex_SuperElement.h:34
int64_t internal_get_zc_field_data(const Ioss::Field &, void **, size_t *) const override
Definition Ioex_SuperElement.h:50
IOSS_NODISCARD std::string contains_string() const override
What does this entity contain.
Definition Ioex_SuperElement.h:35
Holds metadata for bulk data associated with a GroupingEntity.
Definition Ioss_Field.h:25
Base class for all 'grouping' entities. The following derived classes are typical:
Definition Ioss_GroupingEntity.h:67
A named value that has a known type.
Definition Ioss_Property.h:27
A namespace for the exodus database format.
Definition Ioex_BaseDatabaseIO.C:198
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40
EntityType
The particular type of GroupingEntity.
Definition Ioss_EntityType.h:12
@ SUPERELEMENT
Definition Ioss_EntityType.h:26