Skip to content
Snippets Groups Projects
Commit 9f6062ce authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL] Rename dof_table to dof_table_bulk.

parent 1c062753
No related branches found
No related tags found
No related merge requests found
...@@ -21,9 +21,9 @@ namespace ProcessLib ...@@ -21,9 +21,9 @@ namespace ProcessLib
{ {
std::unique_ptr<SourceTerm> createSourceTerm( std::unique_ptr<SourceTerm> createSourceTerm(
const SourceTermConfig& config, const SourceTermConfig& config,
const NumLib::LocalToGlobalIndexMap& dof_table, const MeshLib::Mesh& mesh, const NumLib::LocalToGlobalIndexMap& dof_table_bulk,
const int variable_id, const unsigned integration_order, const MeshLib::Mesh& mesh, const int variable_id,
const unsigned shapefunction_order, const unsigned integration_order, const unsigned shapefunction_order,
std::vector<std::unique_ptr<ProcessLib::ParameterBase>> const& parameters) std::vector<std::unique_ptr<ProcessLib::ParameterBase>> const& parameters)
{ {
//! \ogs_file_param{prj__process_variables__process_variable__source_terms__source_term__type} //! \ogs_file_param{prj__process_variables__process_variable__source_terms__source_term__type}
...@@ -32,14 +32,14 @@ std::unique_ptr<SourceTerm> createSourceTerm( ...@@ -32,14 +32,14 @@ std::unique_ptr<SourceTerm> createSourceTerm(
if (type == "Nodal") if (type == "Nodal")
{ {
return ProcessLib::createNodalSourceTerm( return ProcessLib::createNodalSourceTerm(
config.config, config.mesh, dof_table, mesh.getID(), variable_id, config.config, config.mesh, dof_table_bulk, mesh.getID(),
*config.component_id, parameters); variable_id, *config.component_id, parameters);
} }
if (type == "Volumetric") if (type == "Volumetric")
{ {
return ProcessLib::createVolumetricSourceTerm( return ProcessLib::createVolumetricSourceTerm(
config.config, config.mesh, dof_table, parameters, config.config, config.mesh, dof_table_bulk, parameters,
integration_order, shapefunction_order, variable_id, integration_order, shapefunction_order, variable_id,
*config.component_id); *config.component_id);
} }
...@@ -48,9 +48,9 @@ std::unique_ptr<SourceTerm> createSourceTerm( ...@@ -48,9 +48,9 @@ std::unique_ptr<SourceTerm> createSourceTerm(
{ {
#ifdef OGS_USE_PYTHON #ifdef OGS_USE_PYTHON
return ProcessLib::createPythonSourceTerm( return ProcessLib::createPythonSourceTerm(
config.config, config.mesh, dof_table, mesh.getID(), variable_id, config.config, config.mesh, dof_table_bulk, mesh.getID(),
*config.component_id, integration_order, shapefunction_order, variable_id, *config.component_id, integration_order,
mesh.getDimension()); shapefunction_order, mesh.getDimension());
#else #else
OGS_FATAL("OpenGeoSys has not been built with Python support."); OGS_FATAL("OpenGeoSys has not been built with Python support.");
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment