00001 // ------------------------------------------------------------------------- 00002 // GauTetr.h - This header file contains the public data structure 00003 // definitions for the numerical integration ( GAUSS ) 00004 // within FEMOOP over a tetrahedral domain. 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: evandro $ 00008 // $Revision: 1.3 $ 00009 // $Date: 1999/04/12 14:53:48 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _GAUTETR_H 00015 #define _GAUTETR_H 00016 00017 #include "gauss.h" 00018 00019 // ------------------------------------------------------------------------- 00020 // Tetrahedral Gauss class: 00021 // 00022 class cGaussTetr : public cGauss 00023 { 00024 public: 00025 static int ComputeNumPts( sOrder *order ); 00026 static sNatCoord GetCoord ( sOrder *, int ); 00027 static double GetWeight ( sOrder *, int ); 00028 cGaussTetr ( cIntPt *&, sOrder *, cElement *, int ); 00029 ~cGaussTetr ( void ); 00030 void SetNatCoord ( void ); 00031 int CheckTRMatrix( int, double ** ); 00032 }; 00033 00034 #endif