00001 // Copyright (C) 2006-2009 Kent-Andre Mardal and Simula Research Laboratory. 00002 // Licensed under the GNU GPL Version 2, or (at your option) any later version. 00003 00004 #ifndef NEDELEC2HDIV_IS_INCLUDED 00005 #define NEDELEC2HDIV_IS_INCLUDED 00006 00007 #include "FE.h" 00008 00009 namespace SyFi 00010 { 00011 00012 class Nedelec2Hdiv : public StandardFE 00013 { 00014 public: 00015 GiNaC::lst dof_repr; 00016 Nedelec2Hdiv(); 00017 Nedelec2Hdiv(Polygon& p, unsigned int order = 1); 00018 virtual ~Nedelec2Hdiv() {} 00019 00020 virtual void compute_basis_functions(); 00021 }; 00022 00023 } // namespace SyFi 00024 #endif