Go to the documentation of this file. 1 #include <libmesh/equation_systems.h>
2 #include <libmesh/mesh.h>
3 #include <libmesh/mesh_generation.h>
4 #include <libmesh/numeric_vector.h>
5 #include <libmesh/dof_map.h>
6 #include <libmesh/elem.h>
7 #include <libmesh/default_coupling.h>
22 const Real & x = p(0);
23 const Real & y = LIBMESH_DIM > 1 ? p(1) : 0;
24 const Real & z = LIBMESH_DIM > 2 ? p(2) : 0;
26 return x*(1-x)*(1-x) + x*x*(1-y) + x*(1-y)*(1-z) + y*(1-y)*z + z*(1-z)*(1-z);
36 CPPUNIT_TEST( testCouplingOnEdge3 );
39 CPPUNIT_TEST( testCouplingOnQuad9 );
40 CPPUNIT_TEST( testCouplingOnTri6 );
41 CPPUNIT_TEST( testCouplingOnHex27 );
44 CPPUNIT_TEST_SUITE_END();
64 const unsigned int n_elem_per_side = 5;
65 const std::unique_ptr<Elem> test_elem =
Elem::build(elem_type);
66 const unsigned int ymax = test_elem->dim() > 1;
67 const unsigned int zmax = test_elem->dim() > 2;
68 const unsigned int ny = ymax * n_elem_per_side;
69 const unsigned int nz = zmax * n_elem_per_side;
83 std::set<dof_id_type> evaluable_elements;
88 evaluable_elements.insert(elem->id());
90 for (
unsigned int s1=0; s1 != elem->n_neighbors(); ++s1)
99 if (!evaluable_elements.count(n1->
id()))
102 evaluable_elements.insert(n1->
id());
105 for (
unsigned int s2=0; s2 != elem->n_neighbors(); ++s2)
112 if (!evaluable_elements.count(n2->
id()))
115 evaluable_elements.insert(n2->
id());
118 for (
unsigned int s3=0; s3 != elem->n_neighbors(); ++s3)
123 evaluable_elements.count(n3->
id()))
127 evaluable_elements.insert(n3->
id());
139 const std::size_t n_evaluable =
143 CPPUNIT_ASSERT_EQUAL(evaluable_elements.size(), n_evaluable);
Manages consistently variables, degrees of freedom, and coefficient vectors.
bool is_evaluable(const DofObjectSubclass &obj, unsigned int var_num=libMesh::invalid_uint) const
The Mesh class is a thin wrapper, around the ReplicatedMesh class by default.
virtual System & add_system(const std::string &system_type, const std::string &name)
Add the system of type system_type named name to the systems array.
virtual SimpleRange< element_iterator > active_local_element_ptr_range()=0
The libMesh namespace provides an interface to certain functionality in the library.
static const Real TOLERANCE
virtual element_iterator evaluable_elements_begin(const DofMap &dof_map, unsigned int var_num=libMesh::invalid_uint)=0
Iterate over elements in the Mesh where the solution (as distributed by the given DofMap) can be eval...
processor_id_type processor_id() const
virtual Point centroid() const
virtual element_iterator evaluable_elements_end(const DofMap &dof_map, unsigned int var_num=libMesh::invalid_uint)=0
void testCouplingOnQuad9()
Number cubic_default_coupling_test(const Point &p, const Parameters &, const std::string &, const std::string &)
processor_id_type processor_id() const
unsigned int add_variable(const std::string &var, const FEType &type, const std::set< subdomain_id_type > *const active_subdomains=nullptr)
Adds the variable var to the list of variables for this system.
libMesh::Parallel::Communicator * TestCommWorld
virtual void init()
Initialize all the systems.
A Point defines a location in LIBMESH_DIM dimensional Real space.
CPPUNIT_TEST_SUITE_REGISTRATION(DefaultCouplingTest)
void testCoupling(const ElemType elem_type)
void testCouplingOnHex27()
This is the EquationSystems class.
Real distance(const Point &p)
Number point_value(unsigned int var, const Point &p, const bool insist_on_success=true, const NumericVector< Number > *sol=nullptr) const
This is the base class from which all geometric element types are derived.
void testCouplingOnEdge3()
DefaultCoupling & default_algebraic_ghosting()
Default algebraic ghosting functor.
const DofMap & get_dof_map() const
const Elem * neighbor_ptr(unsigned int i) const
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
void project_solution(FunctionBase< Number > *f, FunctionBase< Gradient > *g=nullptr) const
Projects arbitrary functions onto the current solution.
static std::unique_ptr< Elem > build(const ElemType type, Elem *p=nullptr)
void testCouplingOnTri6()
This class provides the ability to map between arbitrary, user-defined strings and several data types...
ElemType
Defines an enum for geometric element types.
void set_n_levels(unsigned int n_levels)
Parameters parameters
Data structure holding arbitrary parameters.