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>
48 sub_fields_(other.sub_fields_),
49 full_input_list_(other.full_input_list_),
50 no_check_control_field_(other.no_check_control_field_)
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;
81 this->multifield_ =
true;
87 sub_fields_.reserve( other.
size() );
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.") );
94 sub_fields_[i].name_ = this->shared_->comp_names_[i] +
"_" + name();
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>
120 it::Array type =
it::Array( SubFieldBaseType::get_input_type_instance(shared_->input_element_selection_), 1);
125 template<
int spacedim,
class Value>
130 no_check_control_field_=&control_field;
131 shared_->no_check_values_=value_list;
136 template<
int spacedim,
class Value>
141 if (sub_fields_.size() == 0) {
146 set_time_result_ = TimeStatus::constant;
149 if (field.set_time(time, limit_side))
150 set_time_result_ = TimeStatus::changed;
151 is_jump_time_ = is_jump_time_ || field.is_jump_time();
153 return (set_time_result_ == TimeStatus::changed);
158 template<
int spacedim,
class Value>
161 if (shared_->mesh_ && shared_->mesh_ != &mesh) {
162 THROW(ExcFieldMeshDifference() << EI_Field(name()) );
165 shared_->mesh_ = &mesh;
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)) {
180 this->operator=(other_field);
182 auto const &other_field =
dynamic_cast< SubFieldType const &
>(other);
183 sub_fields_.resize(1);
184 sub_fields_[0] = other_field;
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.");
229 for(
auto &field : sub_fields_) {
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");
265 OLD_ASSERT(this->shared_->mesh_,
"Mesh is not set!\n");
267 sub_fields_.reserve( comp_size );
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();
276 sub_fields_.push_back(
SubFieldType(i_comp, name(), full_name, is_bc()) );
277 sub_fields_[i_comp].units( units() );
278 if (no_check_control_field_ !=
nullptr && no_check_control_field_->size() == sub_fields_.size())
279 sub_fields_[i_comp].disable_where((*no_check_control_field_)[i_comp], shared_->no_check_values_);
280 sub_fields_[i_comp].set_mesh( *(shared_->mesh_) );
282 sub_fields_[i_comp].input_selection(shared_->input_element_selection_);
283 sub_fields_[i_comp].add_factory( std::make_shared<MultiFieldFactory>(i_comp) );
285 if (this->shared_->input_default_!=
"") {
286 sub_fields_[i_comp].shared_->input_default_ = this->shared_->input_default_;
289 sub_fields_[i_comp].flags_ = this->flags_;
290 sub_fields_[i_comp].set_input_list(this->full_input_list_, *tg_);
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() );
313 this->full_input_list_ =
list;
317 list.copy_to(shared_->input_list_);
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>