Flow123d  master-e663071
field_coords.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_coords.hh
15  * @brief
16  */
17 
18 #ifndef FIELD_COORDS_HH_
19 #define FIELD_COORDS_HH_
20 
21 #include "fields/field_common.hh" // for FieldCommon::T...
22 #include "fields/field_value_cache.hh" // for FieldValueCache
23 #include "fields/eval_points.hh" // for EvalPoints
24 #include "fem/mapping_p1.hh"
25 #include "mesh/ref_element.hh"
26 #include "mesh/point.hh" // for Point
27 
28 template <int spacedim> class ElementAccessor;
29 
30 namespace IT=Input::Type;
31 
32 
33 /**
34  * Specialized field represents coordinate variables ('x', 'y', 'z') of FieldFormula.
35  */
36 class FieldCoords : public FieldCommon {
37 public:
38  typedef typename Space<3>::Point Point;
39 
40  /// Constructor
42  : value_cache_( FieldValueCache<double>(3, 1) )
43  {
44  this->multifield_ = false;
45  unsigned int cache_size = CacheMapElementNumber::get();
46  value_cache_.reinit(cache_size);
47  value_cache_.resize(cache_size);
48  this->set_shape(3, 1);
49  }
50 
52  ASSERT_PERMANENT(false).error("This method can't be used for FieldCoords");
53 
54  IT::Abstract abstract = IT::Abstract();
56  return inst;
57  }
58 
60  ASSERT_PERMANENT(false).error("This method can't be used for FieldCoords");
61 
62  IT::Array arr = IT::Array( IT::Integer() );
63  return arr;
64  }
65 
66  void set_mesh(const Mesh &mesh) override {
67  shared_->mesh_ = &mesh;
68  }
69 
70  bool is_constant(FMT_UNUSED Region reg) override {
71  return false;
72  }
73 
74  bool set_time(FMT_UNUSED const TimeStep &time, FMT_UNUSED LimitSide limit_side) override {
75  return false;
76  }
77 
78  void copy_from(FMT_UNUSED const FieldCommon & other) override {
79  ASSERT_PERMANENT(false).error("Forbidden method for FieldCoords!");
80  }
81 
82  void field_output(FMT_UNUSED std::shared_ptr<OutputTime> stream, FMT_UNUSED OutputTime::DiscreteSpace type) override {
83  ASSERT_PERMANENT(false).error("Forbidden method for FieldCoords!");
84  }
85 
86  FieldResult field_result(FMT_UNUSED RegionSet region_set) const override {
87  return result_none;
88  }
89 
90  std::string get_value_attribute() const override {
91  double limit = std::numeric_limits<double>::max();
92  return fmt::format("{{ \"shape\": [ 3, 1 ], \"type\": \"Double\", \"limit\": [ {}, {} ] }}", -limit, +limit);
93  }
94 
96  {}
97 
98  /// Implements FieldCommon::cache_allocate
99  void cache_reallocate(FMT_UNUSED const ElementCacheMap &cache_map, FMT_UNUSED unsigned int region_idx) const override
100  {}
101 
102  /// Implements FieldCommon::cache_update
103  void cache_update(ElementCacheMap &cache_map, unsigned int region_patch_idx) const override {
104  std::shared_ptr<EvalPoints> eval_points = cache_map.eval_points();
105  unsigned int reg_chunk_begin = cache_map.region_chunk_begin(region_patch_idx);
106  unsigned int reg_chunk_end = cache_map.region_chunk_end(region_patch_idx);
107  unsigned int region_idx = cache_map.eval_point_data(reg_chunk_begin).i_reg_;
108  unsigned int last_element_idx = -1;
109  ElementAccessor<3> elm;
110  arma::vec3 coords;
111  unsigned int dim = 0;
112 
113  const MeshBase *mesh; // Holds bulk or boundary mesh by region_idx
114  if (region_idx%2 == 1) mesh = shared_->mesh_;
115  else mesh = shared_->mesh_->bc_mesh();
116 
117  for (unsigned int i_data = reg_chunk_begin; i_data < reg_chunk_end; ++i_data) { // i_eval_point_data
118  unsigned int elm_idx = cache_map.eval_point_data(i_data).i_element_;
119  if (elm_idx != last_element_idx) {
120  elm = mesh->element_accessor( elm_idx );
121  dim = elm.dim();
122  last_element_idx = elm_idx;
123  }
124 
125  unsigned int i_point = cache_map.eval_point_data(i_data).i_eval_point_;
126  switch (dim) {
127  case 0:
128  coords = *elm.node(0);
129  break;
130  case 1:
131  coords = MappingP1<1,3>::project_unit_to_real(RefElement<1>::local_to_bary(eval_points->local_point<1>(i_point)),
133  break;
134  case 2:
135  coords = MappingP1<2,3>::project_unit_to_real(RefElement<2>::local_to_bary(eval_points->local_point<2>(i_point)),
137  break;
138  case 3:
139  coords = MappingP1<3,3>::project_unit_to_real(RefElement<3>::local_to_bary(eval_points->local_point<3>(i_point)),
141  break;
142  default:
143  coords = arma::vec3("0 0 0"); //Should not happen
144  }
145  value_cache_.set(i_data) = coords;
146  }
147  }
148 
149  /// Implements FieldCommon::value_cache
151  return &value_cache_;
152  }
153 
154  /// Implements FieldCommon::value_cache
155  const FieldValueCache<double> * value_cache() const override {
156  return &value_cache_;
157  }
158 
159  /// Implements FieldCommon::set_dependency().
160  std::vector<const FieldCommon *> set_dependency(FMT_UNUSED unsigned int i_reg) const override {
162  }
163 
164  /// Returns one value of coordinates in one given point @p.
165  inline arma::vec3 const & value(const Point &p, FMT_UNUSED const ElementAccessor<3> &elm) const
166  {
167  return p;
168  }
169 
170  inline void value_list(const Armor::array &point_list, const ElementAccessor<3> &elm,
172  {
173  ASSERT(point_list.n_rows() == 3 && point_list.n_cols() == 1).error("Invalid point size.\n");
174  ASSERT_EQ(point_list.size(), value_list.size()).error("Different size of point list and value list.\n");
175 
176  for (uint i=0; i<point_list.size(); ++i)
177  value_list[i] = this->value(point_list.template vec<3>(i), elm);
178  }
179 
180  /// Return item of @p value_cache_ given by i_cache_point.
181  arma::vec3 operator[] (unsigned int i_cache_point) const
182  {
183  return this->value_cache_.template vec<3>(i_cache_point);
184  }
185 
186 private:
187  /**
188  * Field value data cache
189  *
190  * See implementation of Field<spacedim, Value>::value_cache_
191  */
193 };
194 
195 #endif /* FIELD_COORDS_HH_ */
result_none
@ result_none
Definition: field_algo_base.hh:71
Space::Point
Armor::ArmaVec< double, spacedim > Point
Definition: point.hh:42
EvalPointData::i_element_
unsigned int i_element_
mesh_idx of ElementAccessor appropriate to element
Definition: field_value_cache.hh:75
ElementAccessor::dim
unsigned int dim() const
Definition: accessors.hh:188
FieldCommon::shared_
std::shared_ptr< SharedData > shared_
Definition: field_common.hh:682
FieldCoords::value_list
void value_list(const Armor::array &point_list, const ElementAccessor< 3 > &elm, std::vector< arma::vec3 > &value_list) const
Definition: field_coords.hh:170
FieldCoords
Definition: field_coords.hh:36
FieldCoords::value_cache
const FieldValueCache< double > * value_cache() const override
Implements FieldCommon::value_cache.
Definition: field_coords.hh:155
CacheMapElementNumber::get
static unsigned int get()
Return number of stored elements.
Definition: field_value_cache.hh:94
FieldCoords::Point
Space< 3 >::Point Point
Definition: field_coords.hh:38
EvalPointData::i_eval_point_
unsigned int i_eval_point_
index of point in EvalPoint object
Definition: field_value_cache.hh:76
ref_element.hh
Class RefElement defines numbering of vertices, sides, calculation of normal vectors etc.
FieldCoords::value_cache
FieldValueCache< double > * value_cache() override
Implements FieldCommon::value_cache.
Definition: field_coords.hh:150
FieldCoords::cache_update
void cache_update(ElementCacheMap &cache_map, unsigned int region_patch_idx) const override
Implements FieldCommon::cache_update.
Definition: field_coords.hh:103
RefElement
Definition: ref_element.hh:339
ASSERT
#define ASSERT(expr)
Definition: asserts.hh:351
FieldCommon::set_shape
void set_shape(uint n_rows, uint n_cols)
Definition: field_common.hh:574
FieldCoords::set_dependency
std::vector< const FieldCommon * > set_dependency(FMT_UNUSED unsigned int i_reg) const override
Implements FieldCommon::set_dependency().
Definition: field_coords.hh:160
FieldCoords::get_value_attribute
std::string get_value_attribute() const override
Definition: field_coords.hh:90
point.hh
Input::Type::Integer
Class for declaration of the integral input data.
Definition: type_base.hh:483
ElementCacheMap
Directing class of FieldValueCache.
Definition: field_value_cache.hh:152
eval_points.hh
FieldResult
FieldResult
Definition: field_algo_base.hh:70
FieldCommon::mesh
const Mesh * mesh() const
Definition: field_common.hh:287
std::vector
Definition: doxy_dummy_defs.hh:7
ElementAccessor
Definition: dh_cell_accessor.hh:32
FieldCoords::cache_reallocate
void cache_reallocate(FMT_UNUSED const ElementCacheMap &cache_map, FMT_UNUSED unsigned int region_idx) const override
Implements FieldCommon::cache_allocate.
Definition: field_coords.hh:99
arma::vec3
Definition: doxy_dummy_defs.hh:17
uint
unsigned int uint
Definition: mh_dofhandler.hh:101
fmt::format
std::string format(CStringRef format_str, ArgList args)
Definition: format.h:3141
FieldCoords::value_cache_
FieldValueCache< double > value_cache_
Definition: field_coords.hh:192
ElementCacheMap::eval_point_data
const EvalPointData & eval_point_data(unsigned int point_idx) const
Return item of eval_point_data_ specified by its position.
Definition: field_value_cache.hh:290
Armor::Array::n_rows
uint n_rows() const
Definition: armor.hh:715
Region
Definition: region.hh:145
ElementCacheMap::region_chunk_end
unsigned int region_chunk_end(unsigned int region_patch_idx) const
Return end position of region chunk in FieldValueCache.
Definition: field_value_cache.hh:273
MappingP1::project_unit_to_real
static RealPoint project_unit_to_real(const BaryPoint &point, const ElementMap &map)
Definition: mapping_p1.cc:85
FieldCoords::set_input_list
void set_input_list(FMT_UNUSED const Input::Array &list, FMT_UNUSED const TimeGovernor &tg) override
Definition: field_coords.hh:95
EvalPointData::i_reg_
unsigned int i_reg_
region_idx of element
Definition: field_value_cache.hh:74
FieldCommon::multifield_
bool multifield_
Definition: field_common.hh:728
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
FieldCoords::operator[]
arma::vec3 operator[](unsigned int i_cache_point) const
Return item of value_cache_ given by i_cache_point.
Definition: field_coords.hh:181
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
MeshBase::element_accessor
ElementAccessor< 3 > element_accessor(unsigned int idx) const
Create and return ElementAccessor to element of given idx.
Definition: mesh.cc:866
ElementCacheMap::eval_points
std::shared_ptr< EvalPoints > eval_points() const
Getter of eval_points object.
Definition: field_value_cache.hh:194
FieldCommon
Common abstract parent of all Field<...> classes.
Definition: field_common.hh:77
FieldCoords::FieldCoords
FieldCoords()
Constructor.
Definition: field_coords.hh:41
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::Type::Instance
Helper class that stores data of generic types.
Definition: type_generic.hh:89
FieldCoords::set_mesh
void set_mesh(const Mesh &mesh) override
Definition: field_coords.hh:66
LimitSide
LimitSide
Definition: field_common.hh:64
FieldCoords::copy_from
void copy_from(FMT_UNUSED const FieldCommon &other) override
Definition: field_coords.hh:78
Armor::Array::n_cols
uint n_cols() const
Definition: armor.hh:720
ElementAccessor::node
NodeAccessor< 3 > node(unsigned int ni) const
Definition: accessors.hh:230
FieldCoords::field_output
void field_output(FMT_UNUSED std::shared_ptr< OutputTime > stream, FMT_UNUSED OutputTime::DiscreteSpace type) override
Definition: field_coords.hh:82
Armor::Array::size
unsigned int size() const
Definition: armor.hh:728
Input::Type
Definition: balance.hh:41
ElementCacheMap::region_chunk_begin
unsigned int region_chunk_begin(unsigned int region_patch_idx) const
Return begin position of region chunk in FieldValueCache.
Definition: field_value_cache.hh:267
Mesh
Definition: mesh.h:362
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
MeshBase
Base class for Mesh and BCMesh.
Definition: mesh.h:96
FieldCoords::field_result
FieldResult field_result(FMT_UNUSED RegionSet region_set) const override
Definition: field_coords.hh:86
field_value_cache.hh
MappingP1
Affine mapping between reference and actual cell.
Definition: mapping_p1.hh:58
FieldCoords::value
const arma::vec3 & value(const Point &p, FMT_UNUSED const ElementAccessor< 3 > &elm) const
Returns one value of coordinates in one given point .
Definition: field_coords.hh:165
FieldCoords::get_input_type
IT::Instance get_input_type() override
Definition: field_coords.hh:51
Armor::Array
Definition: armor.hh:597
FieldCoords::get_multifield_input_type
IT::Array get_multifield_input_type() override
Definition: field_coords.hh:59
OutputTime::DiscreteSpace
DiscreteSpace
Definition: output_time.hh:108
mapping_p1.hh
Class MappingP1 implements the affine transformation of the unit cell onto the actual cell.
std::list
Definition: doxy_dummy_defs.hh:9
FieldCoords::is_constant
bool is_constant(FMT_UNUSED Region reg) override
Definition: field_coords.hh:70
FieldCommon::time
double time() const
Definition: field_common.hh:300
field_common.hh
FMT_UNUSED
#define FMT_UNUSED
Definition: posix.h:75
FieldCoords::set_time
bool set_time(FMT_UNUSED const TimeStep &time, FMT_UNUSED LimitSide limit_side) override
Definition: field_coords.hh:74