Flow123d  master-c50b6b6
multi_field.impl.hh
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file multi_field.impl.hh
15  * @brief
16  */
17 
18 #ifndef MULTI_FIELD_IMPL_HH_
19 #define MULTI_FIELD_IMPL_HH_
20 
21 
22 #include "multi_field.hh"
24 #include "fields/eval_subset.hh"
25 #include "fields/eval_points.hh"
27 #include "fields/field_set.hh"
28 #include "input/input_exception.hh"
29 #include "io/observe.hh"
30 
31 namespace it = Input::Type;
32 
33 /******************************************************************************************
34  * Implementation of MultiField<...>
35  */
36 
37 template<int spacedim, class Value>
39 : FieldCommon(),
40  no_check_control_field_(nullptr)
41 {
42 // static_assert(Value::NRows_ == 1 && Value::NCols_ == 1, "");
43  this->multifield_ = true;
44  this->shared_->bc_ = bc;
45  this->set_shape( Value::NRows_, Value::NCols_ );
46 }
47 
48 
49 
50 template<int spacedim, class Value>
52 : FieldCommon(other),
53  sub_fields_(other.sub_fields_),
54  full_input_list_(other.full_input_list_),
55  no_check_control_field_(other.no_check_control_field_)
56 {
57  this->multifield_ = true;
58  this->set_shape( Value::NRows_, Value::NCols_ );
59 }
60 
61 
62 
63 template<int spacedim, class Value>
65 {
66  //ASSERT( flags().match( FieldFlag::input_copy )(this->name())(other.name()).error("Try to assign to non-copy field.");
67  ASSERT_PTR(other.shared_->mesh_).error("Must call set_mesh before assign to other field.\n");
68  ASSERT( !shared_->mesh_ || (shared_->mesh_==other.shared_->mesh_))
69  .error("Assignment between multi fields with different meshes.\n");
70  ASSERT_GT( shared_->comp_names_.size(), 0).error("Vector of component names can't be empty!\n");
71  ASSERT_EQ( shared_->comp_names_.size(), other.shared_->comp_names_.size())
72  .error("Both multi fields must have same size of vectors of component names.\n");
73 
74  // check for self assignement
75  if (&other == this) return *this;
76 
77  // class members derived from FieldCommon
78  std::vector< std::string > comp_names = shared_->comp_names_; // keep component names
79  shared_ = other.shared_;
80  shared_->comp_names_ = comp_names;
81  shared_->is_fully_initialized_ = false;
82  set_time_result_ = other.set_time_result_;
83  last_time_ = other.last_time_;
84  last_limit_side_ = other.last_limit_side_;
85  is_jump_time_ = other.is_jump_time_;
86  component_index_ = other.component_index_;
87  this->multifield_ = true;
88  this->shape_ = other.shape_;
89 
90  // class members of Field class
91  if ( size() == 0 ) {
92  // move subfields from other, set correct names
93  sub_fields_.clear();
94  sub_fields_.reserve( other.size() );
95  for (unsigned int i=0; i<other.size(); ++i) {
96  sub_fields_.push_back( other.sub_fields_[i] );
97  if (this->shared_->comp_names_[i].length() == 0)
98  THROW( Input::ExcInputMessage() << EI_Message("The field " + this->input_name()
99  + " has set empty name of component.") );
100  else {
101  sub_fields_[i].name_ = this->shared_->comp_names_[i] + "_" + name();
102  }
103  }
104  } else {
105  THROW( ExcMessage() << EI_Message("Internal error. Assignment operator can't be used after call setup_component() method.") );
106  }
107  full_input_list_ = other.full_input_list_;
108  no_check_control_field_ = other.no_check_control_field_;
109 
110  return *this;
111 }
112 
113 
114 
115 template<int spacedim, class Value>
117  ASSERT_PERMANENT(false).error("This method can't be used for MultiField");
118 
119  it::Abstract abstract = it::Abstract();
121  return inst;
122 }
123 
124 
125 template<int spacedim, class Value>
127  it::Array type = it::Array( SubFieldBaseType::get_input_type_instance(shared_->input_element_selection_), 1);
128  return type;
129 }
130 
131 
132 template<int spacedim, class Value>
134  const MultiField<spacedim, typename FieldValue<spacedim>::Enum > &control_field,
135  const vector<FieldEnum> &value_list) -> MultiField &
136 {
137  no_check_control_field_=&control_field;
138  shared_->no_check_values_=value_list;
139  return *this;
140 }
141 
142 
143 template<int spacedim, class Value>
145  const TimeStep &time, LimitSide limit_side)
146 {
147  // initialization of Multifield for first call
148  if (sub_fields_.size() == 0) {
149  setup_components();
150  }
151 
152  // set time for sub fields
153  set_time_result_ = TimeStatus::constant;
154  is_jump_time_=false;
155  for( SubFieldType &field : sub_fields_) {
156  if (field.set_time(time, limit_side))
157  set_time_result_ = TimeStatus::changed;
158  is_jump_time_ = is_jump_time_ || field.is_jump_time();
159  }
160  return (set_time_result_ == TimeStatus::changed);
161 }
162 
163 
164 
165 template<int spacedim, class Value>
167  // test if mesh is not set
168  if (shared_->mesh_ && shared_->mesh_ != &mesh) {
169  THROW(ExcFieldMeshDifference() << EI_Field(name()) );
170  }
171 
172  shared_->mesh_ = &mesh;
173 }
174 
175 
176 template<int spacedim, class Value>
178  ASSERT( flags().match(FieldFlag::equation_input))(other.name())(this->name())
179  .error("Can not copy to the non-copy field.");
180 
181  // do not use copy if the field have its own input
182  if ( flags().match(FieldFlag::declare_input)
183  && this->shared_->input_list_.size() != 0 ) return;
184 
185  if (typeid(other) == typeid(*this)) {
186  auto const &other_field = dynamic_cast< MultiField<spacedim, Value> const &>(other);
187  this->operator=(other_field);
188  } else if (typeid(other) == typeid(SubFieldType)) {
189  auto const &other_field = dynamic_cast< SubFieldType const &>(other);
190  sub_fields_.resize(1);
191  sub_fields_[0] = other_field;
192  }
193 }
194 
195 
196 
197 template<int spacedim, class Value>
198 void MultiField<spacedim, Value>::field_output(std::shared_ptr<OutputTime> stream, OutputTime::DiscreteSpace type)
199 {
200  // currently we cannot output boundary fields
201  if (!is_bc()) {
202  ASSERT_LT( type, OutputTime::N_DISCRETE_SPACES ).error();
203 
204  for (unsigned long index=0; index < this->size(); index++) {
205  sub_fields_[index].compute_field_data( type, stream );
206  }
207  }
208 }
209 
210 
211 
212 
213 template<int spacedim, class Value>
215  bool const_all=true;
216  for(auto &field : sub_fields_) const_all = const_all && field.is_constant(reg);
217  return const_all;
218 }
219 
220 template<int spacedim, class Value>
222 {
223  ASSERT(true).error("Not used yet. Test it.");
224 
225  FieldResult result_all = result_none;
226  for(auto &field : sub_fields_) {
227  FieldResult sub_result = field.field_result(region_set);
228  if (sub_result == result_none) return result_none;
229 
230  if (result_all == result_none) // first subfield
231  result_all = sub_result;
232  else if (sub_result == result_other || result_all == result_other)
233  result_all = result_other;
234  else if (sub_result != result_all)
235  result_all = result_constant; // all subfields are (possibly different) constants
236  }
237 
238  return result_all;
239 
240 }
241 
242 
243 template<int spacedim, class Value>
245 {
246  int nrows = Value::NRows_;
247  int ncols = Value::NCols_;
248  string type = "Integer";
250  type = "Double";
251 
252  return fmt::format("{{ \"subfields\": true, \"shape\": [ {}, {} ], \"type\": \"{}\", \"limit\": [ {}, {} ] }}",
253  nrows, ncols, type, this->limits().first, this->limits().second);
254 }
255 
256 
257 template<int spacedim, class Value>
259  unsigned int comp_size = this->shared_->comp_names_.size();
260  ASSERT_GT(comp_size, 0).error("Vector of component names is empty!\n");
261  ASSERT_PTR(this->shared_->mesh_).error("Mesh is not set!\n");
262 
263  sub_fields_.reserve( comp_size );
264  for(unsigned int i_comp=0; i_comp < comp_size; i_comp++)
265  {
266  sub_fields_.push_back( SubFieldType(i_comp, name(), this->full_comp_name(i_comp), is_bc()) );
267  sub_fields_[i_comp].units( units() );
268  if (no_check_control_field_ != nullptr && no_check_control_field_->size() == sub_fields_.size())
269  sub_fields_[i_comp].disable_where((*no_check_control_field_)[i_comp], shared_->no_check_values_);
270  sub_fields_[i_comp].set_mesh( *(shared_->mesh_) );
271 // sub_fields_[i_comp].set_limit_side(this->limit_side_);
272  sub_fields_[i_comp].input_selection(shared_->input_element_selection_);
273  sub_fields_[i_comp].add_factory( std::make_shared<MultiFieldFactory>(i_comp) );
274 
275  if (this->shared_->input_default_!="") {
276  sub_fields_[i_comp].shared_->input_default_ = this->shared_->input_default_;
277  }
278 
279  sub_fields_[i_comp].flags_ = this->flags_;
280  sub_fields_[i_comp].set_input_list(this->full_input_list_, *tg_);
281  }
282 }
283 
284 
285 
286 template<int spacedim, class Value>
288  if (! flags().match(FieldFlag::declare_input)) return;
289 
290  // Check sizes of Arrays defined MultiField in field descriptors
292  it != list.end();
293  ++it) {
294  Input::Array mf_array;
295  if ( it->opt_val(this->input_name(), mf_array) ) {
296  unsigned int comp_size = this->shared_->comp_names_.size();
297  if (mf_array.size() != 1 && mf_array.size() != comp_size)
298  THROW( Exc_InvalidMultiFieldSize() << EI_MultiFieldName(this->input_name())
299  << EI_Size(mf_array.size()) << EI_ExpectedSize(comp_size) << list.ei_address() );
300  }
301  }
302 
303  this->full_input_list_ = list;
304  this->tg_ = &tg;
305 
306  // Save the full array for future use in FieldCommon::mark_input_times().
307  list.copy_to(shared_->input_list_);
308 }
309 
310 
311 // template<int spacedim, class Value>
312 // typename MultiField<spacedim, Value>::MultiFieldValue::return_type MultiField<spacedim, Value>::value(const Point &p, const ElementAccessor<spacedim> &elm) const {
313 // typename MultiFieldValue::return_type ret(size(), 1);
314 // for (unsigned int i_comp=0; i_comp < size(); i_comp++) {
315 // ret(i_comp, 0) = sub_fields_[i_comp].value(p,elm);
316 // }
317 //
318 // return ret;
319 // }
320 //
321 //
322 //
323 // template<int spacedim, class Value>
324 // void MultiField<spacedim, Value>::value_list(const std::vector< Point > &point_list, const ElementAccessor<spacedim> &elm,
325 // std::vector<typename MultiFieldValue::return_type> &value_list) const {
326 // ASSERT_PERMANENT_EQ( point_list.size(), value_list.size() );
327 // for(unsigned int i=0; i< point_list.size(); i++) {
328 // value_list[i]=this->value(point_list[i], elm);
329 // }
330 // }
331 
332 
333 
334 template<int spacedim, class Value>
336  Input::Array multifield_arr;
337  if (descriptor_rec.opt_val(field.input_name(), multifield_arr))
338  {
339  //ASSERT_PERMANENT(multifield_arr.size() == 1 || multifield_arr.size() == field.n_comp() )(field.input_name())
340  // .error("Invalid size of Array defined for MultiField!\n";
341  unsigned int position = 0;
342  auto it = multifield_arr.begin<Input::AbstractRecord>();
343  if (multifield_arr.size() > 1)
344  while (index_ != position) {
345  ++it; ++position;
346  }
347 
348  FieldAlgoBaseInitData init_data(field.input_name(), field.n_comp(), field.units(), field.limits(), field.get_flags());
350  field_algo_base->set_component_idx(index_);
351  return field_algo_base;
352  }
353 
354  return NULL;
355 }
356 
357 
358 
359 template<int spacedim, class Value>
361  return in_rec.find<Input::Array>(input_name);
362 }
363 
364 
365 template<int spacedim, class Value>
367  ASSERT_PERMANENT(false).error("Set dependency of MultiField should be performed by individual components!\n");
369 }
370 
371 
372 
373 template<int spacedim, class Value>
374 void MultiField<spacedim, Value>::cache_reallocate(FMT_UNUSED const ElementCacheMap &cache_map, FMT_UNUSED unsigned int region_idx) const {
375  //for(auto &field : sub_fields_) field.cache_reallocate(cache_map);
376  ASSERT_PERMANENT(false).error("Cache reallocate of MultiField should be performed by individual components!\n");
377 }
378 
379 
380 template<int spacedim, class Value>
382  FMT_UNUSED unsigned int region_patch_idx) const {
383  ASSERT_PERMANENT(false).error("Cache update of MultiField should be performed by individual components!\n");
384 }
385 
386 
387 template<int spacedim, class Value>
390  double time,
391  std::vector<std::string> region_set_names)
392 {
393  unsigned int comp_size = this->shared_->comp_names_.size();
394  ASSERT_GT(comp_size, 0).error("Vector of component names is empty!\n");
395  ASSERT_EQ(comp_size, field_vec.size());
396  ASSERT_PTR(this->shared_->mesh_).error("Mesh is not set!\n");
397 
398  sub_fields_.reserve( comp_size );
399  for(unsigned int i_comp=0; i_comp < comp_size; i_comp++)
400  {
401  sub_fields_.push_back( SubFieldType(i_comp, name(), "", is_bc()) );
402  sub_fields_[i_comp].set_mesh( *(shared_->mesh_) );
403  sub_fields_[i_comp].flags_ = this->flags_;
404  sub_fields_[i_comp].set(field_vec[i_comp], time, region_set_names);
405  }
406 }
407 
408 
409 template<int spacedim, class Value>
412  double time,
413  std::vector<std::string> region_set_names)
414 {
415  ASSERT_EQ(this->shared_->comp_names_.size(), 1).error("Size of component names vector must be 1!\n");
416  ASSERT_PTR(this->shared_->mesh_).error("Mesh is not set!\n");
417 
418  sub_fields_.reserve(1);
419  sub_fields_.push_back( SubFieldType(0, name(), "", is_bc()) );
420  sub_fields_[0].set_mesh( *(shared_->mesh_) );
421  sub_fields_[0].flags_ = this->flags_;
422  sub_fields_[0].set(field, time, region_set_names);
423 }
424 
425 
426 
427 #endif /* MULTI_FIELD_IMPL_HH_ */
FieldCommon::units
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
Definition: field_common.hh:153
result_none
@ result_none
Definition: field_algo_base.hh:71
FieldCommon::shared_
std::shared_ptr< SharedData > shared_
Definition: field_common.hh:664
MultiField::cache_reallocate
void cache_reallocate(const ElementCacheMap &cache_map, unsigned int region_idx) const override
Implements FieldCommon::cache_reallocate.
Definition: multi_field.impl.hh:374
FieldCommon::last_limit_side_
LimitSide last_limit_side_
Definition: field_common.hh:688
eval_subset.hh
MultiField::setup_components
void setup_components()
Definition: multi_field.impl.hh:258
ASSERT_GT
#define ASSERT_GT(a, b)
Definition of comparative assert macro (Greater Than) only for debug mode.
Definition: asserts.hh:317
MultiField::set_mesh
void set_mesh(const Mesh &mesh) override
Definition: multi_field.impl.hh:166
FieldCommon::last_time_
double last_time_
Definition: field_common.hh:687
MultiField::SubFieldType
Field< spacedim, Value > SubFieldType
Definition: multi_field.hh:90
MultiField::disable_where
auto disable_where(const MultiField< spacedim, typename FieldValue< spacedim >::Enum > &control_field, const vector< FieldEnum > &value_list) -> MultiField &
Definition: multi_field.impl.hh:133
field_algo_base.hh
MultiField::set_dependency
std::vector< const FieldCommon * > set_dependency(FieldSet &field_set, unsigned int i_reg) const override
Definition: multi_field.impl.hh:366
ASSERT
#define ASSERT(expr)
Definition: asserts.hh:351
FieldCommon::set_shape
void set_shape(uint n_rows, uint n_cols)
Definition: field_common.hh:564
MultiField::set
void set(std::vector< typename Field< spacedim, Value >::FieldBasePtr > field_vec, double time, std::vector< std::string > region_set_names={"ALL"})
Definition: multi_field.impl.hh:388
MultiField::is_constant
bool is_constant(Region reg) override
Definition: multi_field.impl.hh:214
ElementCacheMap
Directing class of FieldValueCache.
Definition: field_value_cache.hh:152
eval_points.hh
value
static constexpr bool value
Definition: json.hpp:87
FieldResult
FieldResult
Definition: field_algo_base.hh:70
field_set.hh
result_other
@ result_other
Definition: field_algo_base.hh:72
THROW
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
Definition: exceptions.hh:53
std::vector< std::string >
MultiField::get_value_attribute
std::string get_value_attribute() const override
Definition: multi_field.impl.hh:244
MultiField::MultiFieldFactory::create_field
virtual Field< spacedim, Value >::FieldBasePtr create_field(Input::Record rec, const FieldCommon &field)
Definition: multi_field.impl.hh:335
MultiField::get_input_type
IT::Instance get_input_type() override
Definition: multi_field.impl.hh:116
FieldCommon::flags_
FieldFlag::Flags flags_
Field flags. Default setting is "an equation input field, that can read from user input,...
Definition: field_common.hh:718
MultiField::field_output
void field_output(std::shared_ptr< OutputTime > stream, OutputTime::DiscreteSpace type) override
Definition: multi_field.impl.hh:198
MultiField::MultiFieldFactory::index_
unsigned int index_
Definition: multi_field.hh:110
fmt::format
std::string format(CStringRef format_str, ArgList args)
Definition: format.h:3141
MultiField::full_input_list_
Input::Array full_input_list_
Full list of input field descriptors from which the subfields of MultiField are set.
Definition: multi_field.hh:298
MultiField::MultiFieldFactory::is_active_field_descriptor
bool is_active_field_descriptor(const Input::Record &in_rec, const std::string &input_name) override
Definition: multi_field.impl.hh:360
Input::Array::begin
Iterator< ValueType > begin() const
Definition: accessors_impl.hh:145
ASSERT_LT
#define ASSERT_LT(a, b)
Definition of comparative assert macro (Less Than) only for debug mode.
Definition: asserts.hh:301
result_constant
@ result_constant
Definition: field_algo_base.hh:73
FieldCommon::shape_
std::vector< uint > shape_
Definition: field_common.hh:539
Region
Definition: region.hh:145
Input::Iterator
Definition: accessors.hh:143
MultiField::cache_update
void cache_update(ElementCacheMap &cache_map, unsigned int region_patch_idx) const override
Implements FieldCommon::cache_update.
Definition: multi_field.impl.hh:381
MultiField::copy_from
void copy_from(const FieldCommon &other) override
Definition: multi_field.impl.hh:177
Input::Record
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
MultiField::size
unsigned int size() const
Number of subfields that compose the multi-field.
Definition: multi_field.hh:201
FieldCommon::multifield_
bool multifield_
Definition: field_common.hh:710
ASSERT_PERMANENT
#define ASSERT_PERMANENT(expr)
Allow use shorter versions of macro names if these names is not used with external library.
Definition: asserts.hh:348
FieldAlgoBaseInitData
Helper struct stores data for initizalize descentants of FieldAlgorithmBase.
Definition: field_algo_base.hh:81
MultiField::set_time
bool set_time(const TimeStep &time, LimitSide limit_side) override
Definition: multi_field.impl.hh:144
MultiField::set_input_list
void set_input_list(const Input::Array &list, const TimeGovernor &tg) override
Definition: multi_field.impl.hh:287
TimeStep
Representation of one time step..
Definition: time_governor.hh:123
TimeGovernor
Basic time management functionality for unsteady (and steady) solvers (class Equation).
Definition: time_governor.hh:317
Input::AbstractRecord
Accessor to the polymorphic input data of a type given by an AbstracRecord object.
Definition: accessors.hh:458
FieldCommon
Common abstract parent of all Field<...> classes.
Definition: field_common.hh:77
Input::Type::Abstract
Class for declaration of polymorphic Record.
Definition: type_abstract.hh:62
ASSERT_EQ
#define ASSERT_EQ(a, b)
Definition of comparative assert macro (EQual) only for debug mode.
Definition: asserts.hh:333
Input::Record::opt_val
bool opt_val(const string &key, Ret &value) const
Definition: accessors_impl.hh:107
Input::Type::Instance
Helper class that stores data of generic types.
Definition: type_generic.hh:89
Input::Array::size
unsigned int size() const
Definition: accessors_impl.hh:163
MultiField::operator=
MultiField & operator=(const MultiField &other)
Definition: multi_field.impl.hh:64
LimitSide
LimitSide
Definition: field_common.hh:64
input_exception.hh
FieldCommon::is_bc
bool is_bc() const
Definition: field_common.hh:269
FieldSet
Container for various descendants of FieldCommonBase.
Definition: field_set.hh:159
Input::Record::find
Iterator< Ret > find(const string &key) const
Definition: accessors_impl.hh:91
FieldValue_
Definition: field_values.hh:248
Input::Type
Definition: balance.hh:41
MultiField::field_result
FieldResult field_result(RegionSet region_set) const override
Indicates special field states.
Definition: multi_field.impl.hh:221
observe.hh
Field::FieldBasePtr
std::shared_ptr< FieldBaseType > FieldBasePtr
Definition: field.hh:96
Mesh
Definition: mesh.h:362
multi_field.hh
Input::Type::Array
Class for declaration of inputs sequences.
Definition: type_base.hh:339
Input::Array
Accessor to input data conforming to declared Array.
Definition: accessors.hh:566
MultiField
Class for representation of a vector of fields of the same physical quantity.
Definition: multi_field.hh:87
field_value_cache.hh
MultiField::get_multifield_input_type
IT::Array get_multifield_input_type() override
Definition: multi_field.impl.hh:126
MultiField::sub_fields_
std::vector< SubFieldType > sub_fields_
Subfields (items) of MultiField.
Definition: multi_field.hh:295
FieldFlag::equation_input
static constexpr Mask equation_input
The field is data parameter of the owning equation. (default on)
Definition: field_flag.hh:33
FieldCommon::get_flags
FieldFlag::Flags get_flags() const
Definition: field_common.hh:293
FieldFlag::declare_input
static constexpr Mask declare_input
The field can be set from input. The key in input field descriptor is declared. (default on)
Definition: field_flag.hh:35
FieldCommon::name
const std::string & name() const
Definition: field_common.hh:246
FieldCommon::n_comp
unsigned int n_comp() const
Definition: field_common.hh:272
OutputTime::DiscreteSpace
DiscreteSpace
Definition: output_time.hh:108
FieldCommon::is_jump_time_
bool is_jump_time_
Definition: field_common.hh:694
FieldCommon::input_name
const std::string & input_name() const
Definition: field_common.hh:243
FieldCommon::limits
std::pair< double, double > limits() const
Definition: field_common.hh:261
Field< spacedim, FieldValue< 3 >::Enum >
std::list
Definition: doxy_dummy_defs.hh:9
MultiField::no_check_control_field_
const MultiField< spacedim, typename FieldValue< spacedim >::Enum > * no_check_control_field_
Definition: multi_field.hh:310
ASSERT_PTR
#define ASSERT_PTR(ptr)
Definition of assert macro checking non-null pointer (PTR) only for debug mode.
Definition: asserts.hh:341
OutputTime::N_DISCRETE_SPACES
static const unsigned int N_DISCRETE_SPACES
Definition: output_time.hh:107
FieldCommon::time
double time() const
Definition: field_common.hh:300
FieldAlgorithmBase::function_factory
static std::shared_ptr< FieldAlgorithmBase< spacedim, Value > > function_factory(const Input::AbstractRecord &rec, const struct FieldAlgoBaseInitData &init_data)
Definition: field_algo_base.impl.hh:101
FieldCommon::set_time_result_
TimeStatus set_time_result_
Definition: field_common.hh:681
FieldCommon::component_index_
unsigned int component_index_
Definition: field_common.hh:704
FieldCommon::name
FieldCommon & name(const string &name)
Definition: field_common.hh:121
MultiField::MultiField
MultiField(bool bc=false)
Definition: multi_field.impl.hh:38
FMT_UNUSED
#define FMT_UNUSED
Definition: posix.h:75