18 #ifndef GENERIC_FIELD_IMPL_HH_ 19 #define GENERIC_FIELD_IMPL_HH_ 37 template <
int spacedim>
40 region_id.
name(
"region_id");
44 RegionSet all_regions=mesh.region_db().get_region_set(
"ALL");
45 for(
Region reg : all_regions) {
46 auto field_algo=std::make_shared<FieldConstant<spacedim, DoubleScalar>>();
47 field_algo->set_value(reg.id());
56 template <
int spacedim>
62 std::shared_ptr<DOFHandlerMultiDim> dh = std::make_shared<DOFHandlerMultiDim>(mesh);
63 std::shared_ptr<DiscreteSpace> ds = std::make_shared<EqualOrderDiscreteSpace>( &mesh, &fe0, &fe1, &fe2, &fe3);
64 dh->distribute_dofs(ds);
66 auto field_subdomain_data = mesh.get_part()->subdomain_id_field_data();
68 unsigned int data_size = field_subdomain_data->size();
72 for (
auto cell : dh->own_range()) {
73 cell.get_loc_dof_indices(indices);
74 data_vec[ indices[0] ] = (*field_subdomain_data)[i_ele];
77 std::shared_ptr< FieldFE<spacedim, DoubleScalar> > field_ptr = std::make_shared< FieldFE<spacedim, DoubleScalar> >();
78 field_ptr->set_fe_data(dh, 0, data_vec);
81 subdomain.
name(
"subdomain");
86 mesh.region_db().get_region_set(
"ALL"),
Class MappingP1 implements the affine transformation of the unit cell onto the actual cell...
static auto subdomain(Mesh &mesh) -> IndexField
Declaration of class which handles the ordering of degrees of freedom (dof) and mappings between loca...
Class template representing a field with values dependent on: point, element, and region...
Fields computed from the mesh data.
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
Definitions of basic Lagrangean finite elements with polynomial shape functions.
static auto region_id(Mesh &mesh) -> IndexField
Declaration of class which provides the finite element for every mesh cell.
void set_field(const RegionSet &domain, FieldBasePtr field, double time=0.0)
FieldCommon & name(const string &name)
void set_mesh(const Mesh &mesh) override
static UnitSI & dimensionless()
Returns dimensionless unit.
#define ASSERT_EQ(a, b)
Definition of comparative assert macro (EQual)