Nalu
Nalu: a generalized unstructured massively parallel low Mach flow code designed to support a variety of energy applications of interest (most notably Wind ECP) built on the Sierra Toolkit and Trilinos solver Tpetra/Epetra stack. The open source BSD, clause 3 license model has been chosen for the code base. See LICENSE for more information. http://NaluCFD.org
ComputeHeatTransferElemWallAlgorithm.h
Go to the documentation of this file.
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2014 Sandia Corporation. */
3 /* This software is released under the license detailed */
4 /* in the file, LICENSE, which is located in the top-level Nalu */
5 /* directory structure */
6 /*------------------------------------------------------------------------*/
7 
8 
9 #ifndef ComputeHeatTransferElemWallAlgorithm_h
10 #define ComputeHeatTransferElemWallAlgorithm_h
11 
12 #include<Algorithm.h>
13 #include<FieldTypeDef.h>
14 
15 // stk
16 #include <stk_mesh/base/Part.hpp>
17 
18 namespace sierra{
19 namespace nalu{
20 
21 class Realm;
22 
24 {
25 public:
26 
28  Realm &realm,
29  stk::mesh::Part *part);
31 
32  void execute();
33 
45 
46  double compute_coupling_parameter(const double & kappa,
47  const double & h,
48  const double & chi);
49 };
50 
51 } // namespace nalu
52 } // namespace Sierra
53 
54 #endif
Definition: ComputeHeatTransferElemWallAlgorithm.h:23
VectorFieldType * coordinates_
Definition: ComputeHeatTransferElemWallAlgorithm.h:35
Definition: ABLForcingAlgorithm.C:26
~ComputeHeatTransferElemWallAlgorithm()
Definition: ComputeHeatTransferElemWallAlgorithm.C:299
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
double compute_coupling_parameter(const double &kappa, const double &h, const double &chi)
Definition: ComputeHeatTransferElemWallAlgorithm.C:308
ScalarFieldType * robinCouplingParameter_
Definition: ComputeHeatTransferElemWallAlgorithm.h:44
ScalarFieldType * specificHeat_
Definition: ComputeHeatTransferElemWallAlgorithm.h:38
GenericFieldType * exposedAreaVec_
Definition: ComputeHeatTransferElemWallAlgorithm.h:39
ScalarFieldType * normalHeatFlux_
Definition: ComputeHeatTransferElemWallAlgorithm.h:43
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
ComputeHeatTransferElemWallAlgorithm(Realm &realm, stk::mesh::Part *part)
Definition: ComputeHeatTransferElemWallAlgorithm.C:39
ScalarFieldType * assembledWallArea_
Definition: ComputeHeatTransferElemWallAlgorithm.h:40
Definition: Algorithm.h:28
ScalarFieldType * temperature_
Definition: ComputeHeatTransferElemWallAlgorithm.h:34
ScalarFieldType * thermalCond_
Definition: ComputeHeatTransferElemWallAlgorithm.h:37
void execute()
Definition: ComputeHeatTransferElemWallAlgorithm.C:74
ScalarFieldType * density_
Definition: ComputeHeatTransferElemWallAlgorithm.h:36
ScalarFieldType * heatTransferCoefficient_
Definition: ComputeHeatTransferElemWallAlgorithm.h:42
Definition: Realm.h:82
ScalarFieldType * referenceTemperature_
Definition: ComputeHeatTransferElemWallAlgorithm.h:41