GRINS-0.6.0
heat_transfer.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // GRINS - General Reacting Incompressible Navier-Stokes
5 //
6 // Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner
7 // Copyright (C) 2010-2013 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 
26 #ifndef GRINS_HEAT_TRANSFER_H
27 #define GRINS_HEAT_TRANSFER_H
28 
29 //GRINS
31 
32 namespace GRINS
33 {
34 
36  /*
37  This physics class implements the classical Heat Transfer (neglecting viscous dissipation)
38  */
39  template<class Conductivity>
40  class HeatTransfer : public HeatTransferBase<Conductivity>
41  {
42  public:
43 
44  HeatTransfer( const std::string& physics_name, const GetPot& input );
45 
46  ~HeatTransfer();
47 
49  virtual void read_input_options( const GetPot& input );
50 
52  virtual void register_postprocessing_vars( const GetPot& input,
54 
55  // residual and jacobian calculations
56  // element_*, side_* as *time_derivative, *constraint, *mass_residual
57 
58  // Time dependent part(s)
59  virtual void element_time_derivative( bool compute_jacobian,
60  AssemblyContext& context,
61  CachedValues& cache );
62 
63  virtual void side_time_derivative( bool compute_jacobian,
64  AssemblyContext& context,
65  CachedValues& cache );
66 
67  // Mass matrix part(s)
68  virtual void mass_residual( bool compute_jacobian,
69  AssemblyContext& context,
70  CachedValues& cache );
71 
73  virtual void compute_postprocessed_quantity( unsigned int quantity_index,
74  const AssemblyContext& context,
75  const libMesh::Point& point,
76  libMesh::Real& value );
77 
78  private:
79 
80  HeatTransfer();
81 
83  unsigned int _k_index;
84 
85  };
86 
87 } // end namespace block
88 
89 #endif // GRINS_HEAT_TRANSFER_H
virtual void element_time_derivative(bool compute_jacobian, AssemblyContext &context, CachedValues &cache)
Time dependent part(s) of physics for element interiors.
virtual void mass_residual(bool compute_jacobian, AssemblyContext &context, CachedValues &cache)
Mass matrix part(s) for element interiors. All boundary terms lie within the time_derivative part...
Physics class for Heat Transfer.
unsigned int _k_index
Index from registering this postprocessed quantity.
Definition: heat_transfer.h:83
virtual void read_input_options(const GetPot &input)
Read options from GetPot input file.
Definition: heat_transfer.C:72
GRINS namespace.
Physics class for Heat Transfer.
Definition: heat_transfer.h:40
virtual void compute_postprocessed_quantity(unsigned int quantity_index, const AssemblyContext &context, const libMesh::Point &point, libMesh::Real &value)
Compute value of postprocessed quantities at libMesh::Point.
virtual void side_time_derivative(bool compute_jacobian, AssemblyContext &context, CachedValues &cache)
Time dependent part(s) of physics for boundaries of elements on the domain boundary.
virtual void register_postprocessing_vars(const GetPot &input, PostProcessedQuantities< libMesh::Real > &postprocessing)
Register postprocessing variables for HeatTransfer.
Definition: heat_transfer.C:78

Generated on Mon Jun 22 2015 21:32:20 for GRINS-0.6.0 by  doxygen 1.8.9.1