OGS
SourceTermIntegrationPointData.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
10
11namespace ProcessLib
12{
13template <typename NodalRowVectorType>
15{
16 SourceTermIntegrationPointData(NodalRowVectorType N_,
17 double const& integration_weight_)
18 : N(std::move(N_)), integration_weight(integration_weight_)
19 {
20 }
21
22 NodalRowVectorType const N;
23 double const integration_weight;
24
26};
27
28} // namespace ProcessLib
SourceTermIntegrationPointData(NodalRowVectorType N_, double const &integration_weight_)