17#ifndef _B2ELEMENT_KLT_COMPUTE_CONSTRAINT_H_ 
   18#define _B2ELEMENT_KLT_COMPUTE_CONSTRAINT_H_ 
   23#include "elements/klt_shells/b2element_klt_util.H" 
   25namespace b2000 { 
namespace klt {
 
   27struct ComputeConstraint {
 
   28    const size_t ndof = 12;
 
   37    ComputeConstraint(
const bool first, 
const bool second)
 
   38        : b_0(ndof, first, second),
 
   39          b_1(ndof, first, second),
 
   40          b_2(ndof, first, second),
 
   41          aa(ndof, first, second),
 
   42          bb(ndof, first, second),
 
   43          ab(ndof, first, second),
 
   44          q(ndof, first, second) {}
 
   46    void compute(
const double X[4][3], 
const double u[4][3], 
const bool first, 
const bool second);
 
Contains the base classes for implementing Finite Elements.
Definition b2boundary_condition.H:32