Flow123d  release_2.2.0-914-gf1a3a4f
field_add_potential.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_add_potential.hh
15  * @brief
16  */
17 
18 #ifndef FIELD_ADD_POTENTIAL_HH_
19 #define FIELD_ADD_POTENTIAL_HH_
20 
21 #include <armadillo>
22 #include <memory>
23 
24 #include "fields/field.hh"
25 
26 
27 /**
28  * This field is meant to be used to implement two possibilities for initialization of pressure fields in
29  * Darcy flows. You can either use pressure of piezo-metric head which are related by adding gravity potential.
30  * For various reasons we use pressure as the primary variable, so if the user enters piezo-head we need to add the potential to
31  * the field he/she has provided. This is done by this class. Unfortunately it introduce one more level of indirection,
32  * namely one more virtual call for getting the field value.
33  *
34  * - The field can not be initialized form the input.
35  * - We allow only Scalar Value with element_type double.
36  */
37 template <int spacedim, class Value>
38 class FieldAddPotential : public FieldAlgorithmBase<spacedim, Value> {
39 public:
41  typedef typename Space<spacedim>::Point Point;
42  /**
43  *
44  */
45  FieldAddPotential( const arma::vec::fixed<spacedim+1> &potential_grad, const Input::AbstractRecord &rec, unsigned int n_comp=0);
46 
47 
48  /**
49  * Factory class (descendant of @p Field<...>::FactoryBase) that is necessary
50  * for setting pressure values are piezometric head values.
51  */
52  class FieldFactory : public FactoryBaseType {
53  public:
54  /// Constructor.
55  FieldFactory(arma::vec::fixed<spacedim+1> potential, std::string field_name)
56  : potential_(potential),
57  field_name_(field_name)
58  {}
59 
61  Input::AbstractRecord field_a_rec;
62  if (rec.opt_val(field_name_, field_a_rec)) {
63  return std::make_shared< FieldAddPotential<3, FieldValue<3>::Scalar > >( potential_, field_a_rec);
64  } else {
65  return typename Field<spacedim,Value>::FieldBasePtr();
66  }
67  }
68 
69  bool is_active_field_descriptor(const Input::Record &in_rec, const std::string &input_name) override {
70  return in_rec.find<Input::AbstractRecord>(field_name_);
71  }
72 
73  arma::vec::fixed<spacedim+1> potential_;
74  std::string field_name_;
75  };
76 
77 
78  /**
79  * Returns one value in one given point. ResultType can be used to avoid some costly calculation if the result is trivial.
80  */
81  virtual typename Value::return_type const &value(const Point &p, const ElementAccessor<spacedim> &elm);
82 
83  /**
84  * Returns std::vector of scalar values in several points at once.
85  */
86  virtual void value_list (const std::vector< Point > &point_list, const ElementAccessor<spacedim> &elm,
88 
89 
90  /**
91  * Update time and possibly update data.
92  */
93  bool set_time(const TimeStep &time) override;
94 
95  /// Implements @p FieldAlgirithmBase::set_mesh.
96  void set_mesh(const Mesh *mesh, bool boundary_domain) override;
97 
98  virtual ~FieldAddPotential();
99 
100 private:
101  /// Field to which we add linear potential.
102  std::shared_ptr< FieldAlgorithmBase<spacedim, Value> > inner_field_;
103  /// Potential gradient.
104  arma::vec::fixed<spacedim> grad_;
105  /// Potential constant term.
106  double zero_level_;
107 };
108 
109 
110 #endif /* FIELD_ADD_POTENTIAL_HH_ */
Common abstract parent of all Field<...> classes.
Definition: field_common.hh:60
void set_mesh(const Mesh *mesh, bool boundary_domain) override
Implements FieldAlgirithmBase::set_mesh.
bool set_time(const TimeStep &time) override
arma::vec::fixed< spacedim > grad_
Potential gradient.
Definition: mesh.h:99
Iterator< Ret > find(const string &key) const
FieldAddPotential(const arma::vec::fixed< spacedim+1 > &potential_grad, const Input::AbstractRecord &rec, unsigned int n_comp=0)
bool opt_val(const string &key, Ret &value) const
virtual Field< spacedim, Value >::FieldBasePtr create_field(Input::Record rec, const FieldCommon &field)
FieldFactory(arma::vec::fixed< spacedim+1 > potential, std::string field_name)
Constructor.
arma::vec::fixed< spacedim > Point
Definition: point.hh:33
double zero_level_
Potential constant term.
Accessor to the data with type Type::Record.
Definition: accessors.hh:292
Accessor to the polymorphic input data of a type given by an AbstracRecord object.
Definition: accessors.hh:459
std::shared_ptr< FieldBaseType > FieldBasePtr
Definition: field.hh:66
Field< spacedim, Value >::FactoryBase FactoryBaseType
virtual void value_list(const std::vector< Point > &point_list, const ElementAccessor< spacedim > &elm, std::vector< typename Value::return_type > &value_list)
bool is_active_field_descriptor(const Input::Record &in_rec, const std::string &input_name) override
arma::vec::fixed< spacedim+1 > potential_
std::shared_ptr< FieldAlgorithmBase< spacedim, Value > > inner_field_
Field to which we add linear potential.
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm)
Representation of one time step..
Space< spacedim >::Point Point
unsigned int n_comp() const