Package meshpy :: Module gmsh_reader :: Class GmshElementBase
[hide private]
[frames] | no frames]

Class GmshElementBase

source code

object --+
         |
        GmshElementBase

Instance Methods [hide private]
 
__init__(self, order)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
vertex_count(self) source code
 
node_count(self)
Return the number of interpolation nodes in this element.
source code
 
lexicographic_node_tuples(self)
Generate tuples enumerating the node indices present in this element.
source code
 
get_lexicographic_gmsh_node_indices(self) source code
 
equidistant_vandermonde(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, order)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

node_count(self)

source code 

Return the number of interpolation nodes in this element.

Decorators:
  • @memoize_method

lexicographic_node_tuples(self)

source code 

Generate tuples enumerating the node indices present in this element. Each tuple has a length equal to the dimension of the element. The tuples constituents are non-negative integers whose sum is less than or equal to the order of the element.

The order in which these nodes are generated dictates the local node numbering.

Decorators:
  • @memoize_method

get_lexicographic_gmsh_node_indices(self)

source code 
Decorators:
  • @memoize_method

equidistant_vandermonde(self)

source code 
Decorators:
  • @memoize_method