Flow123d  release_2.2.0-914-gf1a3a4f
field_constant.cc
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_constant.cc
15  * @brief
16  */
17 
18 #include "fields/field_constant.hh"
20 #include "fields/field_instances.hh" // for instantiation macros
21 #include "input/input_type.hh"
22 
23 
24 /// Implementation.
25 
26 namespace it = Input::Type;
27 
28 FLOW123D_FORCE_LINK_IN_CHILD(field_constant)
29 
30 
31 template <int spacedim, class Value>
32 const Input::Type::Record & FieldConstant<spacedim, Value>::get_input_type()
33 {
34  return it::Record("FieldConstant", FieldAlgorithmBase<spacedim,Value>::template_name()+" Field constant in space.")
37  .declare_key("value", Value::get_input_type(), it::Default::obligatory(),
38  "Value of the constant field. "
39  "For vector values, you can use scalar value to enter constant vector. "
40  "For square (($N\\times N$))-matrix values, you can use: "
41  " - vector of size (($N$)) to enter diagonal matrix\n\n"
42  " - vector of size (($\\frac12N(N+1)$)) to enter symmetric matrix (upper triangle, row by row)\n"
43  " - scalar to enter multiple of the unit matrix." )
44  //.declare_key("unit", FieldAlgorithmBase<spacedim, Value>::get_input_type_unit_si(), it::Default::optional(),
45  // "Definition of unit.")
46  .allow_auto_conversion("value")
47  .close();
48 }
49 
50 template <int spacedim, class Value>
52  Input::register_class< FieldConstant<spacedim, Value>, unsigned int >("FieldConstant") +
54 
55 
56 template <int spacedim, class Value>
58 : FieldAlgorithmBase<spacedim, Value>(n_comp)
59 {}
60 
61 
62 template <int spacedim, class Value>
64 {
65  this->r_value_ = val;
66 
67  return *this;
68 }
69 
70 
71 template <int spacedim, class Value>
73  this->init_unit_conversion_coefficient(rec, init_data);
74 
75 
76  this->value_.init_from_input( rec.val<typename Value::AccessType>("value") );
77  this->value_.scale(this->unit_conversion_coefficient_);
78  this->check_field_limits(rec, init_data);
79 
80  typename Value::return_type tmp_value;
81  Value tmp_field_value(tmp_value);
82  tmp_field_value.set_n_comp(this->n_comp());
83 
84  tmp_field_value.zeros();
85  if ( this->value_.equal_to(tmp_value) ) {
87  return;
88  }
89 
90 
91  tmp_field_value.ones();
92  if ( this->value_.equal_to(tmp_value) ) {
93  this->field_result_ = result_ones;
94  return;
95  }
96 
97  // This check must be the last one, since for scalar and vector values ones() == eye().
98  // For vector, eye() does nothing. So, the value of tmp_value remains equal to ones().
99  tmp_field_value.eye();
100  if ( this->value_.equal_to(tmp_value) ) {
101  this->field_result_ = result_eye;
102  return;
103  }
104 
105 
107 }
108 
109 
110 
111 /**
112  * Returns one value in one given point. ResultType can be used to avoid some costly calculation if the result is trivial.
113  */
114 template <int spacedim, class Value>
115 typename Value::return_type const & FieldConstant<spacedim, Value>::value(const Point &p, const ElementAccessor<spacedim> &elm)
116 {
117  return this->r_value_;
118 }
119 
120 
121 
122 /**
123  * Returns std::vector of scalar values in several points at once.
124  */
125 template <int spacedim, class Value>
128 {
129  OLD_ASSERT_EQUAL( point_list.size(), value_list.size() );
130 
131  for(unsigned int i=0; i< point_list.size(); i++) {
132  OLD_ASSERT( Value(value_list[i]).n_rows()==this->value_.n_rows(),
133  "value_list[%d] has wrong number of rows: %d; should match number of components: %d\n",
134  i, Value(value_list[i]).n_rows(),this->value_.n_rows());
135 
136 
137  value_list[i]=this->r_value_;
138  }
139 }
140 
141 
142 template <int spacedim, class Value>
144 {
145  if (Value::is_scalable())
146  for( unsigned int row=0; row<this->value_.n_rows(); row++)
147  for( unsigned int col=0; col<this->value_.n_cols(); col++) {
148  if ( (this->value_(row,col) < init_data.limits_.first) || (this->value_(row,col) > init_data.limits_.second) ) {
149  WarningOut().fmt("Value '{}' of Field '{}' at address '{}' is out of limits: <{}, {}>\nUnit of the Field: [{}]\n",
150  this->value_(row,col), init_data.field_name_, rec.address_string(),
151  init_data.limits_.first, init_data.limits_.second, init_data.unit_si_.format_text() );
152  }
153  }
154 }
155 
156 
157 
158 template <int spacedim, class Value>
160 }
161 
162 
163 // Instantiations of FieldConstant
165 
166 // temporary solution for computing more fields at once in python
167 template class FieldConstant<3, FieldValue<0>::Vector >; // Necessary due to default value of the abstract.
168 
void init_unit_conversion_coefficient(const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data)
Init value of unit_conversion_coefficient_ from input.
void check_field_limits(const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data)
Compare field value with given minimal and maximal limits.
FieldConstant< spacedim, Value > & set_value(const typename Value::return_type &val)
std::string format_text() const
Definition: unit_si.cc:127
FieldResult field_result_
Indicator of particular values (zero, one) constant over space.
Abstract linear system class.
Definition: equation.hh:37
virtual void value_list(const std::vector< Point > &point_list, const ElementAccessor< spacedim > &elm, std::vector< typename Value::return_type > &value_list)
static Default obligatory()
The factory function to make an empty default value which is obligatory.
Definition: type_record.hh:110
#define INSTANCE_ALL(field)
Helper struct stores data for initizalize descentants of FieldAlgorithmBase.
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm)
Value::return_type r_value_
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:303
double unit_conversion_coefficient_
Coeficient of conversion of user-defined unit.
virtual Record & derive_from(Abstract &parent)
Method to derive new Record from an AbstractRecord parent.
Definition: type_record.cc:195
#define OLD_ASSERT(...)
Definition: global_defs.h:131
virtual Record & allow_auto_conversion(const string &from_key)
Allows shorter input of the Record providing only value of the from_key given as the parameter...
Definition: type_record.cc:132
Accessor to the data with type Type::Record.
Definition: accessors.hh:292
const Ret val(const string &key) const
FieldConstant(unsigned int n_comp=0)
Record & declare_key(const string &key, std::shared_ptr< TypeBase > type, const Default &default_value, const string &description, TypeBase::attribute_map key_attributes=TypeBase::attribute_map())
Declares a new key of the Record.
Definition: type_record.cc:490
virtual void init_from_input(const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data)
Space< spacedim >::Point Point
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:215
const UnitSI & unit_si_
virtual ~FieldConstant()
Value value_
Last value, prevents passing large values (vectors) by value.
#define WarningOut()
Macro defining &#39;warning&#39; record of log.
Definition: logger.hh:246
#define OLD_ASSERT_EQUAL(a, b)
Definition: global_defs.h:133
std::pair< double, double > limits_
Record type proxy class.
Definition: type_record.hh:182
#define FLOW123D_FORCE_LINK_IN_CHILD(x)
Definition: global_defs.h:180
unsigned int n_comp() const
string address_string() const
Definition: accessors.cc:184