GRINS-0.8.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-2017 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 
47 
49  virtual void register_postprocessing_vars( const GetPot& input,
51 
52  // residual and jacobian calculations
53  // element_*, side_* as *time_derivative, *constraint, *mass_residual
54 
55  // Time dependent part(s)
56  virtual void element_time_derivative( bool compute_jacobian,
57  AssemblyContext& context );
58 
59  // Mass matrix part(s)
60  virtual void mass_residual( bool compute_jacobian,
61  AssemblyContext & context );
62 
64  virtual void compute_postprocessed_quantity( unsigned int quantity_index,
65  const AssemblyContext& context,
66  const libMesh::Point& point,
67  libMesh::Real& value );
68 
69  private:
70 
71  HeatTransfer();
72 
74  unsigned int _k_index;
75 
76  };
77 
78 } // end namespace block
79 
80 #endif // GRINS_HEAT_TRANSFER_H
Physics class for Heat Transfer.
unsigned int _k_index
Index from registering this postprocessed quantity.
Definition: heat_transfer.h:74
virtual void element_time_derivative(bool compute_jacobian, AssemblyContext &context)
Time dependent part(s) of physics for element interiors.
Definition: heat_transfer.C:85
GRINS namespace.
virtual void mass_residual(bool compute_jacobian, AssemblyContext &context)
Mass matrix part(s) for element interiors. All boundary terms lie within the time_derivative part...
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 register_postprocessing_vars(const GetPot &input, PostProcessedQuantities< libMesh::Real > &postprocessing)
Register postprocessing variables for HeatTransfer.
Definition: heat_transfer.C:53

Generated on Tue Dec 19 2017 12:47:27 for GRINS-0.8.0 by  doxygen 1.8.9.1