48 template <
int spacedim,
class Value>
67 DECLARE_EXCEPTION( ExcInvalidElemeDim, <<
"Dimension of element in target mesh must be 0, 1 or 2! elm.idx() = " << EI_ElemIdx::val <<
".\n" );
140 void set_mesh(
const Mesh *mesh,
bool boundary_domain)
override;
208 template <
unsigned int dim>
212 unsigned int i_dof,
unsigned int i_qp)
215 for (
unsigned int c=0; c<Value::NRows_*Value::NCols_; ++c)
216 v(c/spacedim,c%spacedim) =
fe_values_[dim].shape_value_component(i_dof, i_qp, c);
217 if (Value::NRows_ == Value::NCols_)
223 template<
unsigned int dim>
226 ASSERT_DBG(fe_system_ptr !=
nullptr).error(
"Wrong type, must be FESystem!\n");
227 this->
fe_item_[dim].comp_index_ = fe_system_ptr->function_space()->dof_indices()[block_index].component_offset;
228 this->
fe_item_[dim].range_begin_ = fe_system_ptr->fe_dofs(block_index)[0];
229 this->
fe_item_[dim].range_end_ = this->
fe_item_[dim].range_begin_ + fe_system_ptr->fe()[block_index]->n_dofs();
233 template<
unsigned int dim>
235 this->
fe_item_[dim].comp_index_ = 0;
236 this->
fe_item_[dim].range_begin_ = 0;
242 std::shared_ptr<DOFHandlerMultiDim>
dh_;
302 template <
int spacedim,
class Value>
303 std::shared_ptr<FieldFE<spacedim, Value> >
create_field_fe(std::shared_ptr<DOFHandlerMultiDim> dh,
308 std::shared_ptr< FieldFE<spacedim, Value> > field_ptr = std::make_shared< FieldFE<spacedim, Value> >();
310 field_ptr->set_fe_data( dh, dh->create_vector(), block_index );
312 field_ptr->set_fe_data( dh, *
vec, block_index );
319 template <
int spacedim,
class Value>
323 std::shared_ptr<DOFHandlerMultiDim> dh_par = std::make_shared<DOFHandlerMultiDim>(mesh);
324 std::shared_ptr<DiscreteSpace> ds = std::make_shared<EqualOrderDiscreteSpace>( &mesh, fe);
325 dh_par->distribute_dofs(ds);
327 return create_field_fe<spacedim,Value>(dh_par);
Armor::ArmaMat< typename Value::element_type, Value::NRows_, Value::NCols_ > handle_fe_shape(unsigned int dim, unsigned int i_dof, unsigned int i_qp)
virtual ~FieldFE()
Destructor.
unsigned int range_begin_
Declaration of class which handles the ordering of degrees of freedom (dof) and mappings between loca...
void interpolate_gauss(ElementDataCache< double >::ComponentDataPtr data_vec)
Interpolate data (use Gaussian distribution) over all elements of target mesh.
FEValueHandler< 0, spacedim, Value > value_handler0_
Value handler that allows get value of 0D elements.
std::shared_ptr< std::vector< T > > ComponentDataPtr
P0 interpolation (with the use of calculation of intersections)
MixedPtr< FiniteElement > fe_
void calculate_equivalent_values(ElementDataCache< double >::ComponentDataPtr data_cache)
Calculate data of equivalent_mesh interpolation on input over all elements of target mesh...
std::vector< FEValues< spacedim > > fe_values_
List of FEValues objects of dimensions 0,1,2,3 used for value calculation.
std::string field_name_
field name read from input
static const unsigned int undef_uint
FEValueHandler< 2, spacedim, Value > value_handler2_
Value handler that allows get value of 2D elements.
VectorMPI data_vec_
Store data of Field.
FilePath reader_file_
mesh reader file
Directing class of FieldValueCache.
Helper struct stores data for initizalize descentants of FieldAlgorithmBase.
FieldAlgorithmBase< spacedim, Value >::Point Point
Class FESystem for compound finite elements.
static const int registrar
Registrar of class to factory.
void set_mesh(const Mesh *mesh, bool boundary_domain) override
double default_value_
Default value of element if not set in mesh data file.
FEValueHandler< 3, spacedim, Value > value_handler3_
Value handler that allows get value of 3D elements.
bool set_time(const TimeStep &time) override
static const Input::Type::Selection & get_interp_selection_input_type()
void fill_boundary_dofs()
FieldAlgorithmBase< spacedim, Value > FactoryBaseType
Base class for quadrature rules on simplices in arbitrary dimensions.
VectorMPI set_fe_data(std::shared_ptr< DOFHandlerMultiDim > dh, VectorMPI dof_values=VectorMPI::sequential(0), unsigned int block_index=FieldFE< spacedim, Value >::undef_uint)
std::shared_ptr< FieldFE< spacedim, Value > > create_field_fe(std::shared_ptr< DOFHandlerMultiDim > dh, VectorMPI *vec=nullptr, unsigned int block_index=FieldFE< spacedim, Value >::undef_uint)
unsigned int data_size() const
bool boundary_domain_
Is set in set_mesh method. Value true means, that we accept only boundary element accessors in the va...
TYPEDEF_ERR_INFO(EI_ElemIdx, unsigned int)
OutputTime::DiscreteSpace discretization_
Specify section where to find the field data in input mesh file.
std::shared_ptr< DOFHandlerMultiDim > dh_
DOF handler object.
static const Input::Type::Record & get_input_type()
Implementation.
Quadrature init_quad(std::shared_ptr< EvalPoints > eval_points)
Initialize FEValues object of given dimension.
DataInterpolation interpolation_
Specify type of FE data interpolation.
Compound finite element on dim dimensional simplex.
std::array< FEItem, 4 > fe_item_
Holds specific data of field evaluation over all dimensions.
Definitions of basic Lagrangean finite elements with polynomial shape functions.
void interpolate_intersection(ElementDataCache< double >::ComponentDataPtr data_vec)
Interpolate data (use intersection library) over all elements of target mesh.
std::shared_ptr< std::vector< IntIdx > > boundary_dofs_
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm)
void local_to_ghost_data_scatter_begin()
Call begin scatter functions (local to ghost) on data vector.
Space< spacedim >::Point Point
void local_to_ghost_data_scatter_end()
Call end scatter functions (local to ghost) on data vector.
typename arma::Mat< Type >::template fixed< nr, nc > ArmaMat
FEValueHandler< 1, spacedim, Value > value_handler1_
Value handler that allows get value of 1D elements.
DECLARE_EXCEPTION(ExcInvalidElemeDim,<< "Dimension of element in target mesh must be 0, 1 or 2! elm.idx() = "<< EI_ElemIdx::val<< ".\n")
Dedicated class for storing path to input and output files.
std::shared_ptr< DOFHandlerMultiDim > get_dofhandler() const
static const Input::Type::Selection & get_disc_selection_input_type()
Input::Record in_rec_
Accessor to Input::Record.
FieldFE(unsigned int n_comp=0)
void cache_update(FieldValueCache< typename Value::element_type > &data_cache, ElementCacheMap &cache_map, unsigned int region_patch_idx) override
std::shared_ptr< std::vector< LongIdx > > source_target_mesh_elm_map_
Maps element indices between source (data) and target (computational) mesh if data interpolation is s...
virtual void value_list(const Armor::array &point_list, const ElementAccessor< spacedim > &elm, std::vector< typename Value::return_type > &value_list)
virtual void init_from_input(const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data)
void fill_fe_system_data(unsigned int block_index)
Abstract class for description of finite elements.
void cache_reinit(const ElementCacheMap &cache_map) override
equivalent mesh (default value)
void calculate_native_values(ElementDataCache< double >::ComponentDataPtr data_cache)
Calculate native data over all elements of target mesh.
FieldFlag::Flags flags_
Field flags.
Representation of one time step..
void make_dof_handler(const Mesh *mesh)
Create DofHandler object.
Implementation of range helper class.
void native_data_to_cache(ElementDataCache< double > &output_data_cache)
static VectorMPI sequential(unsigned int size)
P0 interpolation (with the use of Gaussian distribution)
unsigned int n_comp() const
void calculate_identic_values(ElementDataCache< double >::ComponentDataPtr data_cache)
Calculate data of identict_mesh interpolation on input data over all elements of target mesh...