OGS
SourceTermIntegrationPointData.h
Go to the documentation of this file.
1
11#pragma once
12
17
18namespace ProcessLib
19{
20template <typename NodalRowVectorType>
22{
23 SourceTermIntegrationPointData(NodalRowVectorType N_,
24 double const& integration_weight_)
25 : N(std::move(N_)), integration_weight(integration_weight_)
26 {
27 }
28
29 NodalRowVectorType const N;
30 double const integration_weight;
31
33};
34
35} // namespace ProcessLib
SourceTermIntegrationPointData(NodalRowVectorType N_, double const &integration_weight_)