18 #ifndef MULTI_FIELD_IMPL_HH_ 19 #define MULTI_FIELD_IMPL_HH_ 33 template<
int spacedim,
class Value>
36 no_check_control_field_(nullptr)
45 template<
int spacedim,
class Value>
57 template<
int spacedim,
class Value>
61 OLD_ASSERT(other.
shared_->mesh_,
"Must call set_mesh before assign to other field.\n");
63 "Assignment between multi fields with different meshes.\n");
64 OLD_ASSERT(
shared_->comp_names_.size(),
"Vector of component names can't be empty!\n");
66 "Both multi fields must have same size of vectors of component names.\n");
69 if (&other ==
this)
return *
this;
74 shared_->comp_names_ = comp_names;
75 shared_->is_fully_initialized_ =
false;
88 for (
unsigned int i=0; i<other.
size(); ++i) {
90 if (this->
shared_->comp_names_[i].length() == 0)
91 THROW( Input::ExcInputMessage() << EI_Message(
"The field " + this->
input_name()
92 +
" has set empty name of component.") );
98 THROW( ExcMessage() << EI_Message(
"Internal error. Assignment operator can't be used after call setup_component() method.") );
108 template<
int spacedim,
class Value>
110 OLD_ASSERT(
false,
"This method can't be used for MultiField");
118 template<
int spacedim,
class Value>
125 template<
int spacedim,
class Value>
131 shared_->no_check_values_=value_list;
136 template<
int spacedim,
class Value>
149 if (field.set_time(time, limit_side))
158 template<
int spacedim,
class Value>
162 THROW(ExcFieldMeshDifference() << EI_Field(
name()) );
169 template<
int spacedim,
class Value>
172 .error(
"Can not copy to the non-copy field.");
176 && this->
shared_->input_list_.size() != 0 )
return;
178 if (
typeid(other) ==
typeid(*this)) {
182 auto const &other_field =
dynamic_cast< SubFieldType const &
>(other);
190 template<
int spacedim,
class Value>
199 for (
unsigned long index=0; index < this->
size(); index++) {
200 sub_fields_[index].compute_field_data( type, stream );
207 template<
int spacedim,
class Value>
210 for(
auto &field :
sub_fields_) field.observe_output(observe);
216 template<
int spacedim,
class Value>
219 for(
auto &field :
sub_fields_) const_all = const_all && field.is_constant(reg);
223 template<
int spacedim,
class Value>
226 ASSERT_DBG(
true).error(
"Not used yet. Test it.");
230 FieldResult sub_result = field.field_result(region_set);
234 result_all = sub_result;
237 else if (sub_result != result_all)
246 template<
int spacedim,
class Value>
249 int nrows = Value::NRows_;
250 int ncols = Value::NCols_;
251 string type =
"Integer";
255 return fmt::format(
"{{ \"subfields\": true, \"shape\": [ {}, {} ], \"type\": \"{}\", \"limit\": [ {}, {} ] }}",
256 nrows, ncols, type, this->
limits().first, this->
limits().second);
260 template<
int spacedim,
class Value>
262 unsigned int comp_size = this->
shared_->comp_names_.size();
264 OLD_ASSERT(comp_size,
"Vector of component names is empty!\n");
268 for(
unsigned int i_comp=0; i_comp < comp_size; i_comp++)
270 if (this->
shared_->comp_names_[i_comp].length() == 0)
273 full_name = this->
shared_->comp_names_[i_comp] +
"_" +
name();
283 sub_fields_[i_comp].add_factory( std::make_shared<MultiFieldFactory>(i_comp) );
285 if (this->
shared_->input_default_!=
"") {
296 template<
int spacedim,
class Value>
305 if (
it->opt_val(this->input_name(), mf_array) ) {
306 unsigned int comp_size = this->
shared_->comp_names_.size();
307 if (mf_array.
size() != 1 && mf_array.
size() != comp_size)
308 THROW( Exc_InvalidMultiFieldSize() << EI_MultiFieldName(this->
input_name())
309 << EI_Size(mf_array.
size()) << EI_ExpectedSize(comp_size) << list.
ei_address() );
344 template<
int spacedim,
class Value>
351 unsigned int position = 0;
353 if (multifield_arr.
size() > 1)
354 while (index_ != position) {
360 field_algo_base->set_component_idx(index_);
361 return field_algo_base;
369 template<
int spacedim,
class Value>
IT::Instance get_input_type() override
std::string get_value_attribute() const override
Common abstract parent of all Field<...> classes.
auto disable_where(const MultiField< spacedim, typename FieldValue< spacedim >::Enum > &control_field, const vector< FieldEnum > &value_list) -> MultiField &
unsigned int size() const
Number of subfields that compose the multi-field.
FieldFlag::Flags get_flags() const
static const Input::Type::Instance & get_input_type_instance(Input::Type::Selection value_selection=Input::Type::Selection())
bool is_active_field_descriptor(const Input::Record &in_rec, const std::string &input_name) override
OutputTime::DiscreteSpace get_output_type() const
void copy_from(const FieldCommon &other) override
Class template representing a field with values dependent on: point, element, and region...
std::string format(CStringRef format_str, ArgList args)
unsigned int component_index_
std::pair< double, double > limits() const
Field< spacedim, Value > SubFieldType
const MultiField< spacedim, typename FieldValue< spacedim >::Enum > * no_check_control_field_
Helper struct stores data for initizalize descentants of FieldAlgorithmBase.
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
MultiField & operator=(const MultiField &other)
Basic time management functionality for unsteady (and steady) solvers (class Equation).
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
void set_input_list(const Input::Array &list, const TimeGovernor &tg) override
Input::Array full_input_list_
Full list of input field descriptors from which the subfields of MultiField are set.
static constexpr bool value
constexpr bool match(Mask mask) const
std::shared_ptr< SharedData > shared_
const std::string & name() const
std::vector< SubFieldType > sub_fields_
Subfields (items) of MultiField.
FieldFlag::Flags & flags()
virtual Field< spacedim, Value >::FieldBasePtr create_field(Input::Record rec, const FieldCommon &field)
const UnitSI & units() const
FieldFlag::Flags flags_
Field flags. Default setting is "an equation input field, that can read from user input...
static const unsigned int N_DISCRETE_SPACES
const TimeGovernor * tg_
TimeGovernor is necessary for set input list in setup_components method.
bool set_time(const TimeStep &time, LimitSide limit_side) override
LimitSide last_limit_side_
FieldResult field_result(RegionSet region_set) const override
Indicates special field states.
MultiField(bool bc=false)
void field_output(std::shared_ptr< OutputTime > stream) override
static std::shared_ptr< FieldAlgorithmBase< spacedim, Value > > function_factory(const Input::AbstractRecord &rec, const struct FieldAlgoBaseInitData &init_data)
std::shared_ptr< FieldBaseType > FieldBasePtr
bool is_constant(Region reg) override
IT::Array get_multifield_input_type() override
#define ASSERT_LT(a, b)
Definition of comparative assert macro (Less Than)
const Mesh * mesh() const
FieldCommon & name(const string &name)
unsigned int n_comp() const
Class for representation of a vector of fields of the same physical quantity.
const std::string & input_name() const
static constexpr Mask equation_input
The field is data parameter of the owning equation. (default on)
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
Representation of one time step..
TimeStatus set_time_result_
void observe_output(std::shared_ptr< Observe > observe) override
void set_mesh(const Mesh &mesh) override
static constexpr Mask declare_input
The field can be set from input. The key in input field descriptor is declared. (default on) ...