IOSS  2.0
Ioex_SuperElement.h
Go to the documentation of this file.
1 // Copyright(C) 1999-2017 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 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // * Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
11 //
12 // * Redistributions in binary form must reproduce the above
13 // copyright notice, this list of conditions and the following
14 // disclaimer in the documentation and/or other materials provided
15 // with the distribution.
16 //
17 // * Neither the name of NTESS nor the names of its
18 // contributors may be used to endorse or promote products derived
19 // from this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #ifndef IOSS_Ioex_SuperElement_h
33 #define IOSS_Ioex_SuperElement_h
34 
35 #include "Ioss_EntityType.h" // for EntityType, etc
36 #include "Ioss_Property.h" // for Property
37 #include <Ioss_GroupingEntity.h> // for GroupingEntity
38 #include <cstddef> // for size_t
39 #include <cstdint> // for int64_t
40 #include <string> // for string
41 namespace Ioss {
42  class Field;
43 } // namespace Ioss
44 
45 namespace Ioss {
46  class Property;
47 } // namespace Ioss
48 
49 namespace Ioex {
51  {
52  public:
53  SuperElement(std::string filename, const std::string &my_name);
54  ~SuperElement() override;
55 
56  std::string type_string() const override { return "SuperElement"; }
57  std::string short_type_string() const override { return "superelement"; }
58  Ioss::EntityType type() const override { return Ioss::SUPERELEMENT; }
59 
60  // Handle implicit properties -- These are calcuated from data stored
61  // in the grouping entity instead of having an explicit value assigned.
62  // An example would be 'element_block_count' for a region.
63  Ioss::Property get_implicit_property(const std::string &the_name) const override;
64 
65  protected:
66  int64_t internal_get_field_data(const Ioss::Field &field, void *data,
67  size_t data_size) const override;
68 
69  int64_t internal_put_field_data(const Ioss::Field &field, void *data,
70  size_t data_size) const override;
71 
72  private:
73  std::string fileName;
74  size_t numDOF;
75  size_t num_nodes;
76  size_t numEIG;
77  size_t numRBM;
78  size_t num_dim;
79  int filePtr;
80  };
81 } // namespace Ioex
82 #endif
size_t num_nodes
Definition: Ioex_SuperElement.h:75
size_t num_dim
Definition: Ioex_SuperElement.h:78
A named value that has a known type.
Definition: Ioss_Property.h:47
std::string type_string() const override
Get the name of the particular type of entity.
Definition: Ioex_SuperElement.h:56
The main namespace for the Ioss library.
Definition: Iocgns_DatabaseIO.h:50
Base class for all &#39;grouping&#39; entities. The following derived classes are typical: ...
Definition: Ioss_GroupingEntity.h:93
Ioss::EntityType type() const override
Get the EntityType, which indicates the particular type of GroupingEntity this is.
Definition: Ioex_SuperElement.h:58
int filePtr
Definition: Ioex_SuperElement.h:79
std::string short_type_string() const override
Get a short name of the particular type of entity.
Definition: Ioex_SuperElement.h:57
A namespace for the exodus database format.
Definition: Ioex_IOFactory.C:61
std::string fileName
Definition: Ioex_SuperElement.h:73
size_t numDOF
Definition: Ioex_SuperElement.h:74
size_t numEIG
Definition: Ioex_SuperElement.h:76
size_t numRBM
Definition: Ioex_SuperElement.h:77
Holds metadata for bulk data associated with a GroupingEntity.
Definition: Ioss_Field.h:47
Definition: Ioex_SuperElement.h:50
EntityType
The particular type of GroupingEntity.
Definition: Ioss_EntityType.h:39
std::vector< char > data
Definition: Ioss_Utils.C:78
Definition: Ioss_EntityType.h:53