18 #ifndef GENERIC_FIELD_IMPL_HH_ 19 #define GENERIC_FIELD_IMPL_HH_ 38 template <
int spacedim>
41 region_id.
name(
"region_id");
45 RegionSet all_regions=mesh.region_db().get_region_set(
"ALL");
46 for(
Region reg : all_regions) {
47 auto field_algo=std::make_shared<FieldConstant<spacedim, DoubleScalar>>();
48 field_algo->set_value(reg.id());
57 template <
int spacedim>
60 std::shared_ptr<DOFHandlerMultiDim> dh = std::make_shared<DOFHandlerMultiDim>(mesh);
61 std::shared_ptr<DiscreteSpace> ds = std::make_shared<EqualOrderDiscreteSpace>( &mesh, fe);
62 dh->distribute_dofs(ds);
64 auto field_subdomain_data = mesh.get_part()->subdomain_id_field_data();
65 unsigned int data_size = field_subdomain_data->size();
69 for (
auto cell : dh->own_range()) {
70 data_vec.
set( cell.get_loc_dof_indices()(0), (*field_subdomain_data)[i_ele] );
73 std::shared_ptr< FieldFE<spacedim, DoubleScalar> > field_ptr = std::make_shared< FieldFE<spacedim, DoubleScalar> >();
74 field_ptr->set_fe_data(dh, data_vec);
77 subdomain.
name(
"subdomain");
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.
void set(FieldBasePtr field, double time, std::vector< std::string > region_set_names={"ALL"})
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(unsigned int pos, double val)
Set value on given position.
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)