forked from Exawind/nalu-wind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssembleNodalGradNonConformalAlgorithm.h
More file actions
52 lines (36 loc) · 1.16 KB
/
AssembleNodalGradNonConformalAlgorithm.h
File metadata and controls
52 lines (36 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC
// (NTESS), National Renewable Energy Laboratory, University of Texas Austin,
// Northwest Research Associates. Under the terms of Contract DE-NA0003525
// with NTESS, the U.S. Government retains certain rights in this software.
//
// This software is released under the BSD 3-clause license. See LICENSE file
// for more details.
//
#ifndef AssembleNodalGradNonConformalAlgorithm_h
#define AssembleNodalGradNonConformalAlgorithm_h
#include<Algorithm.h>
#include<FieldTypeDef.h>
// stk
#include <stk_mesh/base/Part.hpp>
namespace sierra{
namespace nalu{
class Realm;
class AssembleNodalGradNonConformalAlgorithm : public Algorithm
{
public:
AssembleNodalGradNonConformalAlgorithm(
Realm &realm,
stk::mesh::Part *part,
ScalarFieldType *scalarQ,
VectorFieldType *dqdx);
~AssembleNodalGradNonConformalAlgorithm();
void execute();
ScalarFieldType *scalarQ_;
VectorFieldType *dqdx_;
ScalarFieldType *dualNodalVolume_;
GenericFieldType *exposedAreaVec_;
std::vector< const stk::mesh::FieldBase *> ghostFieldVec_;
};
} // namespace nalu
} // namespace Sierra
#endif