00001 #ifndef ELEMENTCOMPUTATIONS_IS_INCLUDED
00002 #define ELEMENTCOMPUTATIONS_IS_INCLUDED
00003
00004 #include <FE.h>
00005 #include <Dof.h>
00006
00007
00008 void usage(FE& fe);
00009 void usage(FE& v_fe, FE& p_fe);
00010
00011 void compute_Poisson_element_matrix(FE& fe, Dof& dof, std::map<std::pair<int,int>, GiNaC::ex>& A);
00012 void compute_Stokes_element_matrix(FE& v_fe, FE& p_fe, Dof& dof, std::map<std::pair<int,int>, GiNaC::ex>& A);
00013 void compute_mixed_Poisson_element_matrix(FE& v_fe, FE& p_fe, Dof& dof, std::map<std::pair<int,int>, GiNaC::ex>& A);
00014
00015
00016 #endif
00017