Dear all,
I have a code version in which I am using a FESystem (3d) composed of three
elements: FE_Nedelec (w), FE_RaviartThomas (u) and DGQ (p).
The code compiles fine but gives unreasonable results and I do not see what
I am doing wrong or what I forgot.
I need to impose (essential) boundar
Nick,
You didn't declare print_mesh_info and you need to replace
template
void print_mesh_info(const Triangulation& triangulation, const
std::string& filename) {...}
by
template
void ElasticProblem::print_mesh_info(const Triangulation&
triangulation, const std::string& filename) {...}
You hav
Thanks, Bruno
I try to end the fuction print_mesh_info() at line 107 and re-run the step
again, while it still errors that i can't understand.
*2>step-8.obj: error LNK2019: Unresolved external symbol "private: void
__cdecl Step8::ElasticProblem<2>::print_mesh_info(void)"
(?print_mesh_info@?$El