Flow123d  release_3.0.0-1140-gd35b574
field_constant.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_constant.hh
15  * @brief
16  */
17 
18 #ifndef FIELD_CONSTANT_HH_
19 #define FIELD_CONSTANT_HH_
20 
21 #include <stdio.h> // for sprintf
22 #include <string.h> // for memcpy
23 #include <boost/exception/info.hpp> // for operator<<, error_info:...
24 #include <new> // for operator new[]
25 #include <string> // for operator<<
26 #include <vector> // for vector
27 #include <armadillo>
28 #include "fields/field_algo_base.hh" // for FieldAlgorithmBase
29 #include "fields/field_values.hh" // for FieldValue<>::TensorFixed
30 #include "tools/unit_converter.hh" // for ExcInvalidUnit, ExcNonc...
31 #include "input/accessors.hh" // for ExcTypeMismatch, ExcAcc...
32 #include "input/accessors_impl.hh" // for Record::val, Iterator::...
33 #include "input/storage.hh" // for ExcStorageTypeMismatch
34 #include "input/type_record.hh" // for Record::ExcRecordKeyNot...
35 #include "system/exceptions.hh" // for ExcAssertMsg::~ExcAsser...
36 template <int spacedim> class ElementAccessor;
37 
38 
39 /**
40  * Class representing spatially constant fields.
41  *
42  */
43 template <int spacedim, class Value>
44 class FieldConstant : public FieldAlgorithmBase<spacedim, Value>
45 {
46 public:
49 
50  /**
51  * Default constructor, optionally we need number of components @p n_comp in the case of Vector valued fields.
52  */
53  FieldConstant(unsigned int n_comp=0);
54 
55 
56  /**
57  * Return Record for initialization of FieldConstant that is derived from Abstract given by @p a_type
58  * and the individual elements of the possible Value (vector, tensor) have Input::Type @p eit.
59  */
60  static const Input::Type::Record & get_input_type();
61 
62  /**
63  * Smart setter from the given value to return.
64  */
65  FieldConstant<spacedim, Value> &set_value(const typename Value::return_type &val);
66 
67  /**
68  * This method initialize actual value of the field given from the given Input::Record @p rec.
69  */
70  virtual void init_from_input(const Input::Record &rec, const struct FieldAlgoBaseInitData& init_data);
71 
72 
73 
74  /**
75  * Returns one value in one given point. ResultType can be used to avoid some costly calculation if the result is trivial.
76  */
77  virtual typename Value::return_type const &value(const Point &p, const ElementAccessor<spacedim> &elm);
78 
79  /**
80  * Returns std::vector of scalar values in several points at once.
81  */
82  virtual void value_list (const std::vector< Point > &point_list, const ElementAccessor<spacedim> &elm,
84 
85 
86  virtual ~FieldConstant();
87 
88 protected:
89  /// Compare field value with given minimal and maximal limits.
90  void check_field_limits(const Input::Record &rec, const struct FieldAlgoBaseInitData& init_data);
91 
92 private:
93  /// Registrar of class to factory
94  static const int registrar;
95 
96 };
97 
98 
99 #endif /* FIELD_CONSTANT_HH_ */
static const Input::Type::Record & get_input_type()
Implementation.
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)
static const int registrar
Registrar of class to factory.
virtual void value_list(const std::vector< Point > &point_list, const ElementAccessor< spacedim > &elm, std::vector< typename Value::return_type > &value_list)
Helper struct stores data for initizalize descentants of FieldAlgorithmBase.
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm)
Accessor to the data with type Type::Record.
Definition: accessors.hh:292
FieldAlgorithmBase< spacedim, Value >::Point Point
FieldConstant(unsigned int n_comp=0)
FieldAlgorithmBase< spacedim, Value > FactoryBaseType
virtual void init_from_input(const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data)
Space< spacedim >::Point Point
virtual ~FieldConstant()
Record type proxy class.
Definition: type_record.hh:182
unsigned int n_comp() const