Flow123d  3.9.0-d39db4f
field_common.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 field_common.hh
15  * @brief
16  */
17 
18 #ifndef FIELD_COMMON_HH_
19 #define FIELD_COMMON_HH_
20 
21 #include <algorithm> // for sort, unique
22 #include <limits> // for numeric_limits
23 #include <memory> // for shared_ptr
24 #include <ostream> // for operator<<
25 #include <string> // for string, basic_...
26 #include <utility> // for make_pair, pair
27 #include <vector> // for vector, allocator
28 #include "fields/field_algo_base.hh" // for FieldResult
29 #include "fields/field_flag.hh" // for FieldFlag, Fie...
30 #include "fields/field_values.hh" // for FieldEnum
31 #include "tools/unit_si.hh" // for UnitSI
32 #include "input/accessors.hh" // for Record, Array ...
33 #include "input/input_exception.hh" // for ExcInputMessage
34 #include "input/type_base.hh" // for Array, Type
35 #include "input/type_generic.hh" // for Instance
36 #include "input/type_record.hh" // for Record
37 #include "input/type_selection.hh" // for Selection
38 #include "io/output_time.hh" // for OutputTime
39 #include "io/output_time_set.hh" // for OutputTimeSet
40 #include "mesh/region.hh" // for Region (ptr only)
41 #include "system/asserts.hh" // for Assert, ASSERT_PERMANENT
42 #include "system/exc_common.hh" // for EI_Message
43 #include "system/exceptions.hh" // for operator<<
44 #include "system/flag_array.hh" // for FlagArray<>::Mask
45 #include "tools/time_governor.hh" // for TimeGovernor (...
46 
47 class Mesh;
48 class Observe;
49 class EvalPoints;
50 class ElementCacheMap;
51 class FieldSet;
52 class BulkPoint;
53 
54 
55 using namespace std;
56 
57 namespace IT=Input::Type;
58 
59 /**
60  * Left and right time limit, used in the @p set_time() method.
61  * Assigned values allow to index an array.
62  */
63 enum class LimitSide {
64  left=0,
65  right=1
66 };
67 
68 
69 
70 /**
71  * @brief Common abstract parent of all Field<...> classes.
72  *
73  * We need common ancestor in order to keep a list of all fields in one EqData object and allow
74  * collective operations like @p set_time or @p init_from_input.
75  */
76 class FieldCommon {
77 
78 public:
79  TYPEDEF_ERR_INFO(EI_Time, double);
80  TYPEDEF_ERR_INFO(EI_Field, std::string);
81  TYPEDEF_ERR_INFO( EI_FieldInputName, std::string);
82  TYPEDEF_ERR_INFO( EI_FieldName, std::string);
83  TYPEDEF_ERR_INFO( EI_RegId, unsigned int);
84  TYPEDEF_ERR_INFO( EI_RegLabel, std::string);
85  DECLARE_INPUT_EXCEPTION(ExcNonascendingTime,
86  << "Non-ascending time: " << EI_Time::val << " for field " << EI_Field::qval << ".\n");
87  DECLARE_INPUT_EXCEPTION(ExcMissingDomain,
88  << "Missing domain specification (region or r_id) in the field descriptor:");
89  DECLARE_EXCEPTION(ExcFieldMeshDifference,
90  << "Two copies of the field " << EI_Field::qval << "call set_mesh with different arguments.\n");
91  DECLARE_INPUT_EXCEPTION(ExcMissingFieldValue,
92  << "Missing value of the input field " << EI_FieldInputName::qval << " (" << EI_FieldName::qval
93  << ") on region ID: " << EI_RegId::val << " label: " << EI_RegLabel::qval << ".\n");
94 
95 
96 
97  /// Store data of one initialization message.
98  struct MessageData {
99  /// Constructor
100  MessageData(std::string default_value, std::string field_name, std::string region_list)
101  : default_value_(default_value), field_name_(field_name), region_list_(region_list) {};
102 
103  std::string default_value_; ///< Default value of the field.
104  std::string field_name_; ///< Parameter name_ of the field.
105  std::string region_list_; ///< List of regions separated by comma.
106  };
107 
108  /**
109  * Set name of the field. In fact there are two attributes set by this method.
110  *
111  * The first is name used to identify the field as part of a FieldSet or MultiField objects.
112  * This name is permanent and can be set only by this method. Can be accessed by @p name() method.
113  * This name is also used at output.
114  *
115  * The second is @p input_name_ that determines appropriate key name in the input field descriptor.
116  * This name is also set by this method, but is stored in the internal shared space which
117  * is overwritten during call of copy_from method or assignment operator. Can be accessed by @p input_name() mathod.
118  *
119  */
120  FieldCommon &name(const string & name)
121  { name_=shared_->input_name_ = name;
122  return *this;
123  }
124  /**
125  * Set description of the field, used for description of corresponding key in documentation.
126  */
127  FieldCommon & description(const string & description)
128  { shared_->input_description_ = description; return *this;}
129  /**
130  * Set default value for the field's key from which the default constant valued field will be constructed.
131  *
132  * During the first call of the @p set_time method, we check that the field is defined on all regions.
133  * On regions where it is not set yet, we use given @p dflt string to get particular instance of
134  * FieldBase<> (see @p check_initialized_region_fields_).
135  * The default string is interpreted in the same way as if it appears in the input file
136  * as the value of the field. In particular it can be whole record with @p TYPE of the field etc.
137  * Most common choice is however mere constant.
138  */
139  FieldCommon & input_default(const string &input_default)
140  { shared_->input_default_ = input_default; return *this;}
141  /**
142  * @brief Set basic units of the field.
143  *
144  * Currently, we use it only during output and we represents units just by a string.
145  *
146  * TODO:
147  * Particular class for representing and conversion of various units would be more appropriate.
148  * This can allow specification of the units on the inptu, automatic conversion and the same on the output.
149  * Possibly this allow using Boost::Units library, however, it seems to introduce lot of boilerplate code.
150  * But can increase correctness of the calculations.
151  */
152  FieldCommon & units(const UnitSI & units)
153  { shared_->units_ = units; return *this;}
154 
155  /**
156  * Set limits of value of the field.
157  */
158  FieldCommon & set_limits(double min, double max = std::numeric_limits<double>::max())
159  {
160  ASSERT_PERMANENT_LT(min, max).error("Invalid field limits!");
161  shared_->limits_ = std::make_pair(min, max);
162  return *this;
163  }
164 
165  /**
166  * For the fields returning "Enum", we have to pass the Input::Type::Selection object to
167  * the field implementations.
168  *
169  * We must save raw pointer since selection may not be yet initialized (during static initialization phase).
170  */
172  {
173  shared_->input_element_selection_=element_selection;
174  return *this;
175  }
176 
177  /**
178  * Output discrete space used in the output() method. Can be different for different field copies.
179  * one can choose between:
180  * data constant on elements, linear data given in nodes, and discontinuous linear data.
181  *
182  * If not set explicitly by this method, the default value is OutputTime::ELEM_DATA
183  */
185  { if (rt!=OutputTime::UNDEFINED) default_output_data_ = rt; return *this; }
186 
187  /**
188  * Set given mask to the field flags, ignoring default setting.
189  * Default setting is declare_input & equation_input & allow_output.
190  */
191  FieldCommon & flags(FieldFlag::Flags::Mask mask)
192  { flags_ = FieldFlag::Flags(mask); return *this; }
193 
194  /**
195  * Add given mask to the field flags.
196  */
197  FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
198  { flags().add(mask); return *this; }
199 
200  /**
201  * Set vector of component names.
202  * Set number of components for run-time sized vectors. This is used latter when we construct
203  * objects derived from FieldBase<...>.
204  *
205  * n_comp_ is constant zero for fixed values, this zero is set by Field<...> constructors
206  */
207  void set_components(const std::vector<string> &names) {
208  // Test of unique values in names vector for MultiField
209  if (multifield_) {
210  std::vector<string> cpy = names;
211  std::sort( cpy.begin(), cpy.end() );
212  cpy.erase( std::unique( cpy.begin(), cpy.end() ), cpy.end() );
213  if (names.size() != cpy.size()) {
214  THROW( Input::ExcInputMessage() << EI_Message("The field " + this->input_name()
215  + " has set non-unique names of components.") );
216  }
217  shared_->n_comp_ = names.size();
218  } else {
219  shared_->n_comp_ = (shared_->n_comp_ ? names.size() : 0);
220  }
221 
222  shared_->comp_names_ = names;
223  }
224 
225 
226  /**
227  * Set internal mesh pointer.
228  */
229  virtual void set_mesh(const Mesh &mesh) = 0;
230  /**
231  * Set the data list from which field will read its input. It is list of "field descriptors".
232  * When reading from the input list we consider only field descriptors containing key of
233  * named by the field name. These field descriptors has to have times forming ascending sequence.
234  *
235  * The list is used by set_time method to set field on individual regions to actual FieldBase descendants.
236  */
237  virtual void set_input_list(const Input::Array &list, const TimeGovernor &tg) =0;
238 
239  /**
240  * Getters.
241  */
242  const std::string &input_name() const
243  { return shared_->input_name_;}
244 
245  const std::string &name() const
246  { return name_;}
247 
248  const std::string description() const
249  {return shared_->input_description_;}
250 
251  const std::string &input_default() const
252  { return shared_->input_default_;}
253 
254  const UnitSI &units() const
255  {
256  ASSERT(shared_->units_.is_def())(name()).error("Getting undefined unit.\n");
257  return shared_->units_;
258  }
259 
260  std::pair<double, double> limits() const
261  {
262  return shared_->limits_;
263  }
264 
266  { return default_output_data_; }
267 
268  bool is_bc() const
269  { return shared_->bc_;}
270 
271  unsigned int n_comp() const
272  { return shared_->comp_names_.size();}
273 
274  /**
275  * Returns full name of subfield on \p i_comp position created from component name and field name.
276  *
277  * If component name is empty returns only field name.
278  */
279  inline std::string full_comp_name(unsigned int i_comp) const
280  {
281  ASSERT_LT(i_comp, shared_->comp_names_.size());
282  return shared_->comp_names_[i_comp].empty() ? this->name()
283  : shared_->comp_names_[i_comp] + "_" + this->name();
284  }
285 
286  const Mesh * mesh() const
287  { return shared_->mesh_;}
288 
290  { return flags_; }
291 
293  { return flags_; }
294 
295  /**
296  * Returns time set by last call of set_time method.
297  * Can be different for different field copies.
298  */
299  double time() const
300  { return last_time_; }
301 
302  /**
303  * Returns true if the field change algorithm for the current time set through the @p set_time method.
304  * This happen for all times in the field descriptors on the input of this particular field.
305  */
306  bool is_jump_time() {
307  return is_jump_time_;
308  }
309 
310  /**
311  * Returns number of field descriptors containing the field.
312  */
313  unsigned int input_list_size() const {
314  return shared_->input_list_.size();
315  }
316 
317  /**
318  * If the field on given region @p reg exists and is of type FieldConstant<...> the method method returns true
319  * otherwise it returns false.
320  * Then one can call ElementAccessor<spacedim>(mesh(), reg ) to construct an ElementAccessor @p elm
321  * pointing to "virtual" element on which Field::value returns constant value.
322  * Unlike the Field<>::field_result method, this one provides no value, so it have common header (arguments, return type) and
323  * could be part of FieldCommon and FieldSet which is useful in some applications.
324  *
325  * TODO:Current implementation use virtual functions and can be prohibitively slow if called for every element. If this
326  * becomes necessary it is possible to incorporate such test into set_time method and in this method just return precomputed result.
327  */
328  virtual bool is_constant(Region reg) =0;
329 
330 
331  /**
332  * @brief Indicates special field states.
333  *
334  * Extension of the previous method. Return possible values from the enum @p FieldResult, see description there.
335  * The initial state is @p field_none, if the field is correctly set on all regions of the @p region_set given as parameter
336  * we return state @p field_other or even more particular result.
337  *
338  * Special field values spatially constant. Could allow optimization of tensor multiplication and
339  * tensor or vector addition. field_result_ should be set in constructor and in set_time method of particular Field implementation.
340  * We return value @p result_none, if the field is not initialized on the region of the given element accessor @p elm.
341  * Other possible results are: result_zeros, result_eye, result_ones, result_constant, result_other
342  * see @p FieldResult for explanation.
343  *
344  * Multifield return most particular value that holds for all its subfields.
345  *
346  *
347  */
348  virtual FieldResult field_result( RegionSet region_set) const =0;
349 
350  /**
351  * Return specification of the field value type in form of the string:
352  * [ <element type>, NRows, NCols]
353  *
354  * Result is valid JSON (and/or flow style YAML).
355  * For multifields not implemented.
356  */
357  virtual std::string get_value_attribute() const =0;
358 
359  /**
360  * Returns true if set_time_result_ is not @p TimeStatus::constant.
361  * Returns the same value as last set_time method.
362  */
363  bool changed() const
364  {
365  ASSERT( set_time_result_ != TimeStatus::unknown ).error("Invalid time status.");
366  return ( (set_time_result_ == TimeStatus::changed) ||
367  (set_time_result_ == TimeStatus::changed_forced) );
368  }
369 
370  /**
371  * Common part of the field descriptor. To get finished record
372  * one has to add keys for individual fields. This is done automatically
373  * using FieldSet::get_input_type().
374  */
375  static IT::Record field_descriptor_record(const string& record_name);
376 
377  /**
378  * Create description of field descriptor record.
379  */
380  static const std::string field_descriptor_record_description(const string& record_name);
381 
382  /**
383  * Returns input type for particular field instance, this is reference to a static member input_type of the corresponding @p FieldBase
384  * class (i.e. with the same template parameters). This is used in FieldSet::make_field_descriptor_type.
385  */
386  virtual IT::Instance get_input_type() =0;
387 
388  /**
389  * Returns input type for MultiField instance.
390  * TODO: temporary solution, see @p multifield_
391  */
392  virtual IT::Array get_multifield_input_type() =0;
393 
394  /**
395  * Pass through the input array @p input_list_, collect all times where the field could change and
396  * put appropriate time marks into global TimeMarks object.
397  * Introduced time marks have both given @p mark_type and @p type_input() type.
398  *
399  * Further development:
400  * - we have to distinguish "jump" times and "smooth" times
401  */
402  void mark_input_times(const TimeGovernor &tg);
403 
404  /**
405  * Abstract method to update field to the new time level.
406  * Implemented by in class template Field<...>.
407  *
408  * Return true if the value of the field was changed on some region.
409  * The returned value is also stored in @p changed_during_set_time data member.
410  *
411  * Default values helps when creating steady field. Note that default TimeGovernor constructor
412  * set time to 0.0.
413  *
414  * Different field copies can be set to different times.
415  *
416  * TODO: update following:
417  * Set side of limit when calling @p set_time
418  * with jump time, i.e. time where the field change implementation on some region.
419  * Wee assume that implementations prescribe only smooth fields.
420  * This method invalidate result of
421  * @p changed() so it should be called just before @p set_time.
422  * Can be different for different field copies.
423  */
424  virtual bool set_time(const TimeStep &time, LimitSide limit_side) =0;
425 
426  /**
427  * Check that @p other is instance of the same Field<..> class and
428  * perform assignment. Polymorphic copy.
429  *
430  * The copy is performed only if *this have set flag 'input_copy'.
431  * If *this have set also the flag 'decare_input' the copy is performed only if the
432  * input_list is empty.
433  */
434  virtual void copy_from(const FieldCommon & other) =0;
435 
436  /**
437  * Output the field.
438  * The parameter @p output_fields is checked for value named by the field name. If the key exists,
439  * then the output of the field is performed. If the key do not appear in the input, no output is done.
440  */
441  virtual void field_output(std::shared_ptr<OutputTime> stream, OutputTime::DiscreteSpace type) =0;
442 
443  /**
444  * Perform the observe output of the field.
445  * The Observe object passed by the parameter is called with the particular Field<> as the parameter
446  * to evaluate the field in observation points and store the values in the OutputData arrays.
447  */
448  virtual void observe_output(std::shared_ptr<Observe> observe) =0;
449 
450  /**
451  * Set reference of FieldSet to all instances of FieldFormula.
452  */
453  virtual std::vector<const FieldCommon *> set_dependency(FieldSet &field_set, unsigned int i_reg) const =0;
454 
455  /**
456  * Sets @p component_index_
457  */
458  void set_component_index(unsigned int idx)
459  {
460  this->component_index_ = idx;
461  }
462 
463  /**
464  * Return @p multifield_ flag.
465  * TODO: temporary solution
466  */
467  inline bool is_multifield() const
468  {
469  return this->multifield_;
470  }
471 
472  /**
473  * Reallocate field value cache of Field on given region.
474  */
475  virtual void cache_reallocate(const ElementCacheMap &cache_map, unsigned int region_idx) const = 0;
476 
477  /**
478  * Read data to cache for appropriate elements given by ElementCacheMap object.
479  */
480  virtual void cache_update(ElementCacheMap &cache_map, unsigned int region_patch_idx) const = 0;
481 
482 
483  /**
484  * Returns pointer to this (Field) or the sub-field component (MultiField).
485  */
486  virtual FieldCommon *get_component(FMT_UNUSED unsigned int idx) {
487  return this;
488  }
489 
490 
491  /**
492  * Returns FieldValueCache if element_type of field is double or nullptr for other element_types.
493  */
494  virtual FieldValueCache<double> * value_cache() =0;
495 
496 
497  /**
498  * Same as previous but return const pointer
499  */
500  virtual const FieldValueCache<double> * value_cache() const =0;
501 
502  /// Create and set shared_ptr to ElementDataCache. Used only in descendant Field<>.
503  virtual void set_output_data_cache(FMT_UNUSED OutputTime::DiscreteSpace space_type, FMT_UNUSED std::shared_ptr<OutputTime> stream)
504  {
505  ASSERT_PERMANENT(false);
506  }
507 
508  /// Fill data to ElementDataCache on given patch.
509  virtual void fill_data_value(FMT_UNUSED const std::vector<int> &offsets)
510  {
511  ASSERT_PERMANENT(false);
512  }
513 
514 
515  /**
516  * Print stored messages to table.
517  *
518  * Return true if messages_data_ vector is nonempty and clear its.
519  */
520  static bool print_message_table(ostream& stream, std::string equation_name);
521 
522  /**
523  * Virtual destructor.
524  */
525  virtual ~FieldCommon();
526 
527  /**
528  * Hold shape of Field.
529  *
530  * Value is set in constructor of descendant class.
531  */
533 
534 
535 protected:
536  /**
537  * Private default constructor. Should be used only through
538  * Field<...>
539  */
540  FieldCommon();
541 
542  /**
543  * Private copy constructor. Should be used only through
544  * Field<...>
545  */
546  FieldCommon(const FieldCommon & other);
547 
548  /**
549  * Invalidate last time in order to force set_time method
550  * update region_fields_.
551  */
553  {
554  last_time_ = -numeric_limits<double>::infinity();
555  }
556 
557  void set_shape(uint n_rows, uint n_cols) {
558  if (n_cols==1) this->shape_ = { n_rows };
559  else this->shape_ = { n_rows, n_cols };
560  }
561 
562  /**
563  * Setters for essential field properties.
564  */
565  /**
566  * Data shared among copies of the same field.
567  *
568  * This allow field copies in different equations with different time setting, but
569  * sharing common input field descriptor array and common history.
570  */
571  struct SharedData {
572  /**
573  * Empty constructor.
574  */
576  : list_idx_(0), limits_(std::make_pair(-std::numeric_limits<double>::max(), std::numeric_limits<double>::max())) {};
577 
578  /**
579  * True for boundary fields.
580  */
581  bool bc_;
582  /**
583  * Number of components for fields that return variable size vectors. Zero in other cases.
584  */
585  unsigned int n_comp_;
586  /**
587  * Names of field components.
588  */
590  /**
591  * Name of the particular field. Used to name the key in the Field list Record.
592  */
593  std::string input_name_;
594  /**
595  * Description of corresponding key in the Field list Record.
596  */
597  std::string input_description_;
598  /**
599  * Units of the field values. Currently just a string description.
600  */
602  /**
603  * For Enum valued fields this is the input type selection that should be used
604  * to read possible values of the field (e.g. for FieldConstant the key 'value' has this selection input type).
605  *
606  * Is empty selection for for non-enum values fields.
607  */
609  /**
610  * Possible default value of the field.
611  */
613  /**
614  * Pointer to the mesh on which the field lives.
615  */
616  const Mesh *mesh_;
617 
618  /**
619  * Vector of input field descriptors from which the field is set.
620  */
622 
623  /**
624  * Index to current position of input field descriptor.
625  */
626  unsigned int list_idx_;
627 
628  /**
629  * True after check_initialized_region_fields_ is called. That happen at first call of the set_time method.
630  */
632 
633  /**
634  * For which values of an enum valued field we do not
635  * check the field. User is responsible, that the value will not be called
636  * on such regions.
637  */
639 
640  /**
641  * Allow set minimal and maximal limit value of Field.
642  */
643  std::pair<double, double> limits_;
644 
645 
646  };
647 
648  /**
649  * Name that identifies the field in the field_set. By default this is same as
650  * shared_->input_name_.
651  */
652  std::string name_;
653 
654  /**
655  * Data shared among copies of the same input field.
656  */
657  std::shared_ptr<SharedData> shared_;
658 
659  /**
660  * Result of last set time method
661  */
662  enum class TimeStatus {
663  changed, //< Field changed during last set time call.
664  constant, //< Field doesn't change.
665  changed_forced, //< Field changed manually (reset during set_time() to changed).
666  unknown //< Before first call of set_time.
667  };
668 
669  // TODO: Merge time information: set_time_result_, last_time_, last_limit_side_, is_jump_time into
670  // a single structure with single getter.
671  /**
672  * Status of @p history.
673  */
675 
676  /**
677  * Last set time. Can be different for different field copies.
678  * Store also time limit, since the field may be discontinuous.
679  */
680  double last_time_ = -numeric_limits<double>::infinity();
681  LimitSide last_limit_side_ = LimitSide::left;
682 
683  /**
684  * Set to true by the @p set_time method the field algorithm change on any region.
685  * Accessible through the @p is_jump_time method.
686  */
688 
689  /**
690  * Default output data type used in the output() method. Can be different for different field copies.
691  */
693 
694  /**
695  * Specify if the field is part of a MultiField and which component it is
696  */
697  unsigned int component_index_;
698 
699  /**
700  * Flag determining if object is Multifield or Field.
701  * TODO: temporary solution, goal is to make these two classes to behave similarly
702  */
704 
705  /**
706  * Maximum number of FieldBase objects we store per one region.
707  */
708  static const unsigned int history_length_limit_=3;
709 
710  /// Field flags. Default setting is "an equation input field, that can read from user input, and can be written to output"
712 
713  /// Vector of data of initialization messages.
715 
716  /**
717  * Stream output operator
718  */
719  friend std::ostream &operator<<(std::ostream &stream, const FieldCommon &field) {
720 
721  vector<string> limit_side_str = {"left", "right"};
722 
723  stream
724  << "field name:" << field.name()
725  << " n. comp.:" << field.n_comp()
726  << " last time:" << field.last_time_
727  << " last limit side:" << limit_side_str[(unsigned int) field.last_limit_side_];
728  return stream;
729  }
730 
731 public:
732 
733  /// Manually mark flag that the field has been changed.
735  { set_time_result_ = TimeStatus::changed_forced; }
736 };
737 
738 
739 
740 
741 
742 
743 
744 #endif /* FIELD_COMMON_HH_ */
FieldCommon::units
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
Definition: field_common.hh:152
LimitSide::right
@ right
FieldCommon::shared_
std::shared_ptr< SharedData > shared_
Definition: field_common.hh:657
FieldCommon::operator<<
friend std::ostream & operator<<(std::ostream &stream, const FieldCommon &field)
Definition: field_common.hh:719
Observe
Definition: observe.hh:198
FieldCommon::last_limit_side_
LimitSide last_limit_side_
Definition: field_common.hh:681
FieldCommon::get_output_type
OutputTime::DiscreteSpace get_output_type() const
Definition: field_common.hh:265
FieldCommon::last_time_
double last_time_
Definition: field_common.hh:680
time_governor.hh
Basic time management class.
FlagArray< FieldFlag >
FieldCommon::output_type
FieldCommon & output_type(OutputTime::DiscreteSpace rt)
Definition: field_common.hh:184
field_algo_base.hh
FieldCommon::flags
FieldFlag::Flags & flags()
Definition: field_common.hh:289
ASSERT
#define ASSERT(expr)
Definition: asserts.hh:351
FieldCommon::set_shape
void set_shape(uint n_rows, uint n_cols)
Definition: field_common.hh:557
FieldCommon::messages_data_
static std::vector< MessageData > messages_data_
Vector of data of initialization messages.
Definition: field_common.hh:714
FieldCommon::SharedData::input_name_
std::string input_name_
Definition: field_common.hh:593
ASSERT_PERMANENT_LT
#define ASSERT_PERMANENT_LT(a, b)
Definition of comparative assert macro (Less Than)
Definition: asserts.hh:297
FieldCommon::set_component_index
void set_component_index(unsigned int idx)
Definition: field_common.hh:458
ElementCacheMap
Directing class of FieldValueCache.
Definition: field_value_cache.hh:151
asserts.hh
Definitions of ASSERTS.
FieldCommon::TimeStatus
TimeStatus
Definition: field_common.hh:662
FieldResult
FieldResult
Definition: field_algo_base.hh:70
FieldCommon::mesh
const Mesh * mesh() const
Definition: field_common.hh:286
BulkPoint
Base point accessor class.
Definition: eval_subset.hh:55
THROW
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
Definition: exceptions.hh:53
std::vector
Definition: doxy_dummy_defs.hh:7
OutputTime::ELEM_DATA
@ ELEM_DATA
Definition: output_time.hh:111
FieldCommon::set_limits
FieldCommon & set_limits(double min, double max=std::numeric_limits< double >::max())
Definition: field_common.hh:158
FieldCommon::flags
FieldCommon & flags(FieldFlag::Flags::Mask mask)
Definition: field_common.hh:191
FieldFlag::allow_output
static constexpr Mask allow_output
The field can output. Is part of generated output selection. (default on)
Definition: field_flag.hh:37
FieldCommon::SharedData::limits_
std::pair< double, double > limits_
Definition: field_common.hh:643
uint
unsigned int uint
Definition: mh_dofhandler.hh:101
FieldCommon::SharedData::SharedData
SharedData()
Definition: field_common.hh:575
type_base.hh
type_selection.hh
FieldCommon::set_time_result_changed
void set_time_result_changed()
Manually mark flag that the field has been changed.
Definition: field_common.hh:734
field_flag.hh
FieldCommon::description
const std::string description() const
Definition: field_common.hh:248
FieldCommon::MessageData::field_name_
std::string field_name_
Parameter name_ of the field.
Definition: field_common.hh:104
FieldCommon::SharedData::input_element_selection_
IT::Selection input_element_selection_
Definition: field_common.hh:608
exceptions.hh
type_record.hh
ASSERT_LT
#define ASSERT_LT(a, b)
Definition of comparative assert macro (Less Than) only for debug mode.
Definition: asserts.hh:301
FieldCommon::shape_
std::vector< uint > shape_
Definition: field_common.hh:532
FieldCommon::flags_add
FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
Definition: field_common.hh:197
Region
Definition: region.hh:145
FieldCommon::input_default
const std::string & input_default() const
Definition: field_common.hh:251
LimitSide::left
@ left
FieldCommon::SharedData::units_
UnitSI units_
Definition: field_common.hh:601
FieldCommon::SharedData::comp_names_
std::vector< std::string > comp_names_
Definition: field_common.hh:589
FieldCommon::multifield_
bool multifield_
Definition: field_common.hh:703
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
FieldCommon::units
const UnitSI & units() const
Definition: field_common.hh:254
type_generic.hh
FieldCommon::MessageData::MessageData
MessageData(std::string default_value, std::string field_name, std::string region_list)
Constructor.
Definition: field_common.hh:100
FieldCommon::SharedData::is_fully_initialized_
bool is_fully_initialized_
Definition: field_common.hh:631
accessors.hh
FieldCommon::SharedData::input_description_
std::string input_description_
Definition: field_common.hh:597
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
output_time.hh
field_values.hh
FieldCommon
Common abstract parent of all Field<...> classes.
Definition: field_common.hh:76
FieldCommon::SharedData::n_comp_
unsigned int n_comp_
Definition: field_common.hh:585
UnitSI
Class for representation SI units of Fields.
Definition: unit_si.hh:40
FieldCommon::MessageData::region_list_
std::string region_list_
List of regions separated by comma.
Definition: field_common.hh:105
Input::Type::Instance
Helper class that stores data of generic types.
Definition: type_generic.hh:89
FieldCommon::changed
bool changed() const
Definition: field_common.hh:363
LimitSide
LimitSide
Definition: field_common.hh:63
input_exception.hh
FieldCommon::is_bc
bool is_bc() const
Definition: field_common.hh:268
FieldSet
Container for various descendants of FieldCommonBase.
Definition: field_set.hh:159
output_time_set.hh
Input::Type::Selection
Template for classes storing finite set of named values.
Definition: type_selection.hh:65
FieldCommon::fill_data_value
virtual void fill_data_value(FMT_UNUSED const std::vector< int > &offsets)
Fill data to ElementDataCache on given patch.
Definition: field_common.hh:509
FieldCommon::SharedData::input_list_
vector< Input::Record > input_list_
Definition: field_common.hh:621
Input::Type
Definition: balance.hh:41
exc_common.hh
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
TYPEDEF_ERR_INFO
#define TYPEDEF_ERR_INFO(EI_Type, Type)
Macro to simplify declaration of error_info types.
Definition: exceptions.hh:194
FieldCommon::is_multifield
bool is_multifield() const
Definition: field_common.hh:467
FieldCommon::set_components
void set_components(const std::vector< string > &names)
Definition: field_common.hh:207
FieldCommon::input_default
FieldCommon & input_default(const string &input_default)
Definition: field_common.hh:139
OutputTime::UNDEFINED
@ UNDEFINED
Definition: output_time.hh:114
Mesh
Definition: mesh.h:361
FieldFlag::Flags
FlagArray< FieldFlag > Flags
Definition: field_flag.hh:26
Input::Type::Array
Class for declaration of inputs sequences.
Definition: type_base.hh:339
FieldCommon::SharedData::mesh_
const Mesh * mesh_
Definition: field_common.hh:616
Input::Array
Accessor to input data conforming to declared Array.
Definition: accessors.hh:566
unit_si.hh
std
Definition: doxy_dummy_defs.hh:5
DECLARE_INPUT_EXCEPTION
#define DECLARE_INPUT_EXCEPTION(ExcName, Format)
Macro for simple definition of input exceptions.
Definition: input_exception.hh:69
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:292
region.hh
flag_array.hh
Armor::Array
Definition: armor.hh:597
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::SharedData
Definition: field_common.hh:571
FieldCommon::name
const std::string & name() const
Definition: field_common.hh:245
FieldCommon::n_comp
unsigned int n_comp() const
Definition: field_common.hh:271
FieldCommon::set_output_data_cache
virtual void set_output_data_cache(FMT_UNUSED OutputTime::DiscreteSpace space_type, FMT_UNUSED std::shared_ptr< OutputTime > stream)
Create and set shared_ptr to ElementDataCache. Used only in descendant Field<>.
Definition: field_common.hh:503
FieldCommon::SharedData::list_idx_
unsigned int list_idx_
Definition: field_common.hh:626
OutputTime::DiscreteSpace
DiscreteSpace
Definition: output_time.hh:108
FieldCommon::full_comp_name
std::string full_comp_name(unsigned int i_comp) const
Definition: field_common.hh:279
FieldCommon::SharedData::no_check_values_
std::vector< FieldEnum > no_check_values_
Definition: field_common.hh:638
FieldCommon::is_jump_time_
bool is_jump_time_
Definition: field_common.hh:687
FieldCommon::input_name
const std::string & input_name() const
Definition: field_common.hh:242
FieldCommon::SharedData::input_default_
string input_default_
Definition: field_common.hh:612
FieldCommon::is_jump_time
bool is_jump_time()
Definition: field_common.hh:306
FieldCommon::limits
std::pair< double, double > limits() const
Definition: field_common.hh:260
FieldCommon::input_selection
FieldCommon & input_selection(Input::Type::Selection element_selection)
Definition: field_common.hh:171
FieldCommon::description
FieldCommon & description(const string &description)
Definition: field_common.hh:127
std::list
Definition: doxy_dummy_defs.hh:9
DECLARE_EXCEPTION
#define DECLARE_EXCEPTION(ExcName, Format)
Macro for simple definition of exceptions.
Definition: exceptions.hh:158
FieldCommon::set_history_changed
void set_history_changed()
Definition: field_common.hh:552
FieldCommon::time
double time() const
Definition: field_common.hh:299
FieldCommon::MessageData
Store data of one initialization message.
Definition: field_common.hh:98
FieldCommon::set_time_result_
TimeStatus set_time_result_
Definition: field_common.hh:674
FieldCommon::input_list_size
unsigned int input_list_size() const
Definition: field_common.hh:313
FieldCommon::name_
std::string name_
Definition: field_common.hh:652
FieldCommon::component_index_
unsigned int component_index_
Definition: field_common.hh:697
FieldCommon::name
FieldCommon & name(const string &name)
Definition: field_common.hh:120
FieldCommon::get_component
virtual FieldCommon * get_component(FMT_UNUSED unsigned int idx)
Definition: field_common.hh:486
FMT_UNUSED
#define FMT_UNUSED
Definition: posix.h:75
EvalPoints
Class holds local coordinations of evaluating points (bulk and sides) specified by element dimension.
Definition: eval_points.hh:43