18 #ifndef MULTI_FIELD_HH_ 19 #define MULTI_FIELD_HH_ 54 template<
int spacedim,
class Value>
66 <<
"of the MultiField " << EI_MultiFieldName::qval <<
", expected size: " << EI_ExpectedSize::val );
76 bool is_active_field_descriptor(
const Input::Record &in_rec,
const std::string &input_name)
override;
105 IT::Array get_multifield_input_type()
override;
132 void set_mesh(
const Mesh &mesh)
override;
137 void copy_from(
const FieldCommon & other)
override;
142 void field_output(std::shared_ptr<OutputTime> stream)
override;
147 void observe_output(std::shared_ptr<Observe> observe)
override;
152 bool is_constant(
Region reg)
override;
166 std::string get_value_attribute()
const override;
174 inline unsigned int size()
const 175 {
return sub_fields_.size(); }
182 OLD_ASSERT(idx < sub_fields_.size(),
"Index of subfield in MultiField '%s' is out of range.\n", this->input_name().c_str());
183 return sub_fields_[idx];
189 inline const SubFieldType &
operator[](
unsigned int idx)
const 191 OLD_ASSERT(idx < sub_fields_.size(),
"Index of subfield in MultiField '%s' is out of range.\n", this->input_name().c_str());
192 return sub_fields_[idx];
200 void setup_components();
Common abstract parent of all Field<...> classes.
unsigned int size() const
Number of subfields that compose the multi-field.
Class template representing a field with values dependent on: point, element, and region...
Field< spacedim, Value > SubFieldType
const MultiField< spacedim, typename FieldValue< spacedim >::Enum > * no_check_control_field_
FieldValue_< 0, 1, typename Value::element_type > MultiFieldValue
Input::Array full_input_list_
Full list of input field descriptors from which the subfields of MultiField are set.
FieldAlgorithmBase< spacedim, Value > SubFieldBaseType
std::vector< SubFieldType > sub_fields_
Subfields (items) of MultiField.
MultiFieldFactory(unsigned int index)
Constructor.
#define TYPEDEF_ERR_INFO(EI_Type, Type)
Macro to simplify declaration of error_info types.
Space< spacedim >::Point Point
FieldAlgorithmBase< spacedim, Value >::Point Point
std::shared_ptr< FieldBaseType > FieldBasePtr
#define DECLARE_INPUT_EXCEPTION(ExcName, Format)
Macro for simple definition of input exceptions.
const SubFieldType & operator[](unsigned int idx) const
Class for representation of a vector of fields of the same physical quantity.
SubFieldType & operator[](unsigned int idx)
Representation of one time step..