Skip to content
Snippets Groups Projects
Select Git revision
  • 486f649180bd749e2eee988c11424fa26a21663c
  • master default protected
  • dev_mm_pf
  • cyrielle
  • vinayak
  • ujwal_21_08_2024
  • dev_mm_torchSCRU
  • debug_mm_pf
  • newStructureNonLocal
  • Mohamed_stochasticDMN
  • dev_mm_bench
  • stochdmn
  • revert-351ff7aa
  • ujwal_29April2024
  • dev_mm_ann
  • mohamed_vevp
  • ujwal_debug
  • ujwal_2ndApril2024
  • ujwal_October_2023
  • gabriel
  • SFEM
  • v4.0
  • v3.2.3_multiplePhase
  • v3.5
  • v3.3.2
  • v3.4
  • v3.3
  • ver3.2
  • verJulienWork
  • ver3.1
  • ver2
  • ver1.1.2
  • ver1.1.1
  • ver1.1
34 results

contactTerms.cpp

Blame
  • HexNodeBasis.h 680 B
    #ifndef _HEXNODEBASIS_H_
    #define _HEXNODEBASIS_H_
    
    #include "BasisHierarchical0Form.h"
    
    /**
       @class HexNodeBasis
       @brief A Node Basis for Hexahedra
    
       This class can instantiate a Node-Based Basis
       (high or low order) for Hexahedra.@n
    
       It uses
       <a href="http://www.hpfem.jku.at/publications/szthesis.pdf">Zaglmayr's</a>
       Basis for @em high @em order Polynomial%s generation.@n
     */
    
    class HexNodeBasis: public BasisHierarchical0Form{
     public:
      //! @param order The order of the Basis
      //!
      //! Returns a new Node-Basis for Hexahedra of the given order
      HexNodeBasis(size_t order);
    
      //! @return Deletes this Basis
      //!
      virtual ~HexNodeBasis(void);
    };
    
    #endif