Loading [MathJax]/extensions/tex2jax.js
OGS
ProcessLib::RichardsComponentTransport Namespace Reference

Namespaces

 anonymous_namespace{CreateRichardsComponentTransportProcess.cpp}
 

Classes

struct  IntegrationPointData
 
class  RichardsComponentTransportLocalAssemblerInterface
 
class  LocalAssemblerData
 
class  RichardsComponentTransportProcess
 
struct  RichardsComponentTransportProcessData
 

Functions

std::unique_ptr< ProcesscreateRichardsComponentTransportProcess (std::string name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase >> const &parameters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium >> const &media)
 

Variables

const unsigned NUM_NODAL_DOF = 2
 

Function Documentation

◆ createRichardsComponentTransportProcess()

std::unique_ptr< Process > ProcessLib::RichardsComponentTransport::createRichardsComponentTransportProcess ( std::string  name,
MeshLib::Mesh mesh,
std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&  jacobian_assembler,
std::vector< ProcessVariable > const &  variables,
std::vector< std::unique_ptr< ParameterLib::ParameterBase >> const &  parameters,
unsigned const  integration_order,
BaseLib::ConfigTree const &  config,
std::map< int, std::shared_ptr< MaterialPropertyLib::Medium >> const &  media 
)
Input File Parameter:
prj__processes__process__type
Input File Parameter:
prj__processes__process__RichardsComponentTransport__coupling_scheme
Input File Parameter:
prj__processes__process__RichardsComponentTransport__process_variables
Input File Parameter:
prj__processes__process__RichardsComponentTransport__process_variables__concentration
Input File Parameter:
prj__processes__process__RichardsComponentTransport__process_variables__pressure
Input File Parameter:
prj__processes__process__RichardsComponentTransport__specific_body_force

Definition at line 79 of file CreateRichardsComponentTransportProcess.cpp.

88 {
90  config.checkConfigParameter("type", "RichardsComponentTransport");
91 
92  DBUG("Create RichardsComponentTransportProcess.");
93 
94  auto const coupling_scheme =
96  config.getConfigParameterOptional<std::string>("coupling_scheme");
97  const bool use_monolithic_scheme =
98  !(coupling_scheme && (*coupling_scheme == "staggered"));
99 
100  // Process variable.
101 
103  auto const pv_config = config.getConfigSubtree("process_variables");
104 
105  std::vector<std::vector<std::reference_wrapper<ProcessVariable>>>
106  process_variables;
107  if (use_monolithic_scheme) // monolithic scheme.
108  {
109  auto per_process_variables = findProcessVariables(
110  variables, pv_config,
111  {
112  "concentration",
114  "pressure"});
115  if (per_process_variables.size() > 2)
116  {
117  OGS_FATAL(
118  "By now RichardsComponentTransport process only supports "
119  "single component transport simulation.");
120  }
121  process_variables.push_back(std::move(per_process_variables));
122  }
123  else // staggered scheme.
124  {
125  OGS_FATAL("The staggered coupling scheme is not implemented.");
126  }
127 
128  // Specific body force parameter.
129  Eigen::VectorXd specific_body_force;
130  std::vector<double> const b =
132  config.getConfigParameter<std::vector<double>>("specific_body_force");
133  assert(!b.empty() && b.size() < 4);
134  if (b.size() < mesh.getDimension())
135  {
136  OGS_FATAL(
137  "specific body force (gravity vector) has {:d} components, mesh "
138  "dimension is {:d}",
139  b.size(), mesh.getDimension());
140  }
141  bool const has_gravity = MathLib::toVector(b).norm() > 0;
142  if (has_gravity)
143  {
144  specific_body_force.resize(b.size());
145  std::copy_n(b.data(), b.size(), specific_body_force.data());
146  }
147 
148  auto media_map =
150 
151  DBUG(
152  "Check the media properties of RichardsComponentTransport process ...");
153  checkMPLProperties(mesh, *media_map);
154  DBUG("Media properties verified.");
155 
156  RichardsComponentTransportProcessData process_data{
157  std::move(media_map), specific_body_force, has_gravity};
158 
159  SecondaryVariableCollection secondary_variables;
160 
161  ProcessLib::createSecondaryVariables(config, secondary_variables);
162 
163  return std::make_unique<RichardsComponentTransportProcess>(
164  std::move(name), mesh, std::move(jacobian_assembler), parameters,
165  integration_order, std::move(process_variables),
166  std::move(process_data), std::move(secondary_variables),
167  use_monolithic_scheme);
168 }
#define OGS_FATAL(...)
Definition: Error.h:26
void DBUG(char const *fmt, Args const &... args)
Definition: Logging.h:27
unsigned getDimension() const
Returns the dimension of the mesh (determined by the maximum dimension over all elements).
Definition: Mesh.h:71
std::unique_ptr< MaterialSpatialDistributionMap > createMaterialSpatialDistributionMap(std::map< int, std::shared_ptr< Medium >> const &media, MeshLib::Mesh const &mesh)
Eigen::Map< const Vector > toVector(std::vector< double > const &data, Eigen::VectorXd::Index size)
Creates an Eigen mapped vector from the given data vector.
void checkMPLProperties(MeshLib::Mesh const &mesh, MaterialPropertyLib::MaterialSpatialDistributionMap const &media_map)
std::vector< std::reference_wrapper< ProcessVariable > > findProcessVariables(std::vector< ProcessVariable > const &variables, BaseLib::ConfigTree const &pv_config, std::initializer_list< std::string > tags)
void createSecondaryVariables(BaseLib::ConfigTree const &config, SecondaryVariableCollection &secondary_variables)

References BaseLib::ConfigTree::checkConfigParameter(), ProcessLib::RichardsComponentTransport::anonymous_namespace{CreateRichardsComponentTransportProcess.cpp}::checkMPLProperties(), MaterialPropertyLib::createMaterialSpatialDistributionMap(), ProcessLib::createSecondaryVariables(), DBUG(), ProcessLib::findProcessVariables(), BaseLib::ConfigTree::getConfigParameter(), BaseLib::ConfigTree::getConfigParameterOptional(), BaseLib::ConfigTree::getConfigSubtree(), MeshLib::Mesh::getDimension(), MaterialPropertyLib::name, OGS_FATAL, and MathLib::toVector().

Referenced by ProjectData::parseProcesses().

Variable Documentation

◆ NUM_NODAL_DOF