00001 // ------------------------------------------------------------------------- 00002 // MixShQua.h - This header file contains the public data structure 00003 // definitions for the numerical integration ( MIXED-SHELL ) 00004 // within FEMOOP over a quadrilateral domain. 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: evandro $ 00008 // $Revision: 1.1 $ 00009 // $Date: 1999/04/13 19:31:15 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _MIXSHQUA_H 00015 #define _MIXSHQUA_H 00016 00017 #include "mixed.h" 00018 00019 // ------------------------------------------------------------------------- 00020 // Quadrilateral Mixed class: 00021 00022 class cMixShellQuad : public cMixedIntPt 00023 { 00024 public: 00025 static int ComputeNumPts( sOrder * ); 00026 cMixShellQuad( cIntPt *&, sOrder *, cElement *, int ); 00027 ~cMixShellQuad( void ); 00028 void SetNatCoord ( void ); 00029 }; 00030 00031 #endif