XC Open source finite element analysis program
DqPtrsConstraint.h
1 //----------------------------------------------------------------------------
2 // XC program; finite element analysis code
3 // for structural analysis and design.
4 //
5 // Copyright (C) Luis Claudio Pérez Tato
6 //
7 // This program derives from OpenSees <http://opensees.berkeley.edu>
8 // developed by the «Pacific earthquake engineering research center».
9 //
10 // Except for the restrictions that may arise from the copyright
11 // of the original program (see copyright_opensees.txt)
12 // XC is free software: you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation, either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 // This software is distributed in the hope that it will be useful, but
18 // WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 //
23 // You should have received a copy of the GNU General Public License
24 // along with this program.
25 // If not, see <http://www.gnu.org/licenses/>.
26 //----------------------------------------------------------------------------
27 //DqPtrsConstraint.h
28 //constraint pointers deque.
29 
30 
31 #ifndef DQPTRSCONSTRAINT_H
32 #define DQPTRSCONSTRAINT_H
33 
34 #include "DqPtrs.h"
35 
36 class ExprAlgebra;
37 
38 namespace XC {
39 class Constraint;
40 
45 class DqPtrsConstraint: public DqPtrs<Constraint>
46  {
47  public:
48  DqPtrsConstraint(EntCmd *owr= nullptr);
49  explicit DqPtrsConstraint(const std::deque<Constraint *> &ts);
50  explicit DqPtrsConstraint(const std::set<const Constraint *> &ts);
51 
52  std::set<int> getTags(void) const;
53 
54  Constraint *buscaConstrainto(const int &tag);
55  const Constraint *buscaConstrainto(const int &tag) const;
56 
57  void numera(void);
58  };
59 
60 } //end of XC namespace
61 #endif
62 
Pointer to (nodes, elements, points, lines,...) container.
Definition: DqPtrs.h:57
Constraint * buscaConstrainto(const int &tag)
Returns (if it exists) a pointer to the element identified by the tag being passed as parameter...
Definition: DqPtrsConstraint.cc:54
void numera(void)
Set indices to the objects to allow its use in VTK.
Definition: DqPtrsConstraint.cc:95
Base class for model constraints.
Definition: Constraint.h:49
DqPtrsConstraint(EntCmd *owr=nullptr)
Constructor.
Definition: DqPtrsConstraint.cc:35
Constraint pointers deque.
Definition: DqPtrsConstraint.h:45
================================================================================
Definition: ContinuaReprComponent.h:34
std::set< int > getTags(void) const
Returns the tags of the elements.
Definition: DqPtrsConstraint.cc:106