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
ComputeHeatTransferEdgeWallAlgorithm.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 ComputeHeatTransferEdgeWallAlgorithm_h
10 #define ComputeHeatTransferEdgeWallAlgorithm_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 
46 
47  double compute_coupling_parameter(const double & kappa,
48  const double & h,
49  const double & chi);
50 };
51 
52 } // namespace nalu
53 } // namespace Sierra
54 
55 #endif
ScalarFieldType * density_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:37
Definition: ABLForcingAlgorithm.C:26
ComputeHeatTransferEdgeWallAlgorithm(Realm &realm, stk::mesh::Part *part)
Definition: ComputeHeatTransferEdgeWallAlgorithm.C:39
VectorFieldType * dhdx_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:35
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
ScalarFieldType * thermalCond_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:38
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
ScalarFieldType * referenceTemperature_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:42
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
ScalarFieldType * assembledWallArea_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:41
ScalarFieldType * heatTransferCoefficient_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:43
ScalarFieldType * robinCouplingParameter_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:45
ScalarFieldType * normalHeatFlux_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:44
GenericFieldType * exposedAreaVec_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:40
Definition: Algorithm.h:28
double compute_coupling_parameter(const double &kappa, const double &h, const double &chi)
Definition: ComputeHeatTransferEdgeWallAlgorithm.C:214
ScalarFieldType * temperature_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:34
void execute()
Definition: ComputeHeatTransferEdgeWallAlgorithm.C:76
~ComputeHeatTransferEdgeWallAlgorithm()
Definition: ComputeHeatTransferEdgeWallAlgorithm.C:205
Definition: Realm.h:82
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:23
VectorFieldType * coordinates_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:36
ScalarFieldType * specificHeat_
Definition: ComputeHeatTransferEdgeWallAlgorithm.h:39