www.mooseframework.org
PorousFlowFluxLimitedTVDAdvection.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
11 #include "SystemBase.h"
12 #include "Assembly.h"
13 
15 
16 template <>
17 InputParameters
19 {
20  InputParameters params = validParams<Kernel>();
21  params.addClassDescription("Advective flux of fluid species or heat using "
22  "the Flux Limited TVD scheme invented by Kuzmin and Turek");
23  params.addRequiredParam<UserObjectName>(
24  "PorousFlowDictator", "The UserObject that holds the list of PorousFlow variable names");
25  params.addRequiredParam<UserObjectName>(
26  "advective_flux_calculator",
27  "PorousFlowAdvectiveFluxCalculator UserObject. This determines whether the advection "
28  "describes a movement of a fluid component in a fluid phase, or movement of heat energy in a "
29  "fluid phase");
30  return params;
31 }
32 
34  const InputParameters & parameters)
35  : Kernel(parameters),
36  _dictator(getUserObject<PorousFlowDictator>("PorousFlowDictator")),
37  _fluo(getUserObject<PorousFlowAdvectiveFluxCalculatorBase>("advective_flux_calculator"))
38 {
39 }
40 
41 Real
43 {
44  mooseError("PorousFlowFluxLimitedTVDAdvection::computeQpResidual() called\n");
45  return 0.0;
46 }
47 
48 void
50 {
51  prepareVectorTag(_assembly, _var.number());
52  precalculateResidual();
53 
54  // get the residual contributions from _fluo
55  for (unsigned i = 0; i < _current_elem->n_nodes(); ++i)
56  {
57  const dof_id_type node_id_i = _current_elem->node_id(i);
58  _local_re(i) = _fluo.getFluxOut(node_id_i) / _fluo.getValence(node_id_i);
59  }
60 
61  accumulateTaggedLocalResidual();
62 
63  if (_has_save_in)
64  {
65  Threads::spin_mutex::scoped_lock lock(Threads::spin_mtx);
66  for (unsigned int i = 0; i < _save_in.size(); i++)
67  _save_in[i]->sys().solution().add_vector(_local_re, _save_in[i]->dofIndices());
68  }
69 }
70 
71 void
73 {
74  prepareMatrixTag(_assembly, _var.number(), _var.number());
75  precalculateJacobian();
76 
77  // Run through the nodes of this element using "i", getting the Jacobian contributions
78  // d(residual_i)/du(node_j) for all nodes j that can have a nonzero Jacobian contribution. Some
79  // of these node_j will live in this element, but some will live in other elements connected with
80  // node "i", and some will live in the next layer of nodes (eg, in 1D residual_3 could have
81  // contributions from node1, node2, node3, node4 and node5).
82  for (unsigned i = 0; i < _current_elem->n_nodes(); ++i)
83  {
84  // global id of node "i"
85  const dof_id_type node_id_i = _current_elem->node_id(i);
86  // dof number of _var on node "i"
87  std::vector<dof_id_type> idof_indices(
88  1, _current_elem->node_ref(i).dof_number(_sys.number(), _var.number(), 0));
89  // number of times node "i" is encountered in a sweep over elements
90  const unsigned valence = _fluo.getValence(node_id_i);
91 
92  // retrieve the derivative information from _fluo
93  const std::map<dof_id_type, std::vector<Real>> derivs = _fluo.getdFluxOut_dvars(node_id_i);
94 
95  // now build up the dof numbers of all the "j" nodes and the derivative matrix
96  // d(residual_i)/d(var_j)
97  for (unsigned pvar = 0; pvar < _dictator.numVariables(); ++pvar)
98  {
99  const unsigned varnum = _dictator.mooseVariableNum(pvar);
100  std::vector<dof_id_type> jdof_indices(derivs.size());
101  DenseMatrix<Number> deriv_matrix(1, derivs.size());
102  unsigned j = 0;
103  for (const auto & node_j_deriv : derivs)
104  {
105  // global id of j:
106  const dof_id_type node_id_j = node_j_deriv.first;
107  // dof of pvar at node j:
108  jdof_indices[j] = _mesh.getMesh().node_ref(node_id_j).dof_number(_sys.number(), varnum, 0);
109  // derivative must be divided by valence, otherwise the loop over elements will
110  // multiple-count
111  deriv_matrix(0, j) = node_j_deriv.second[pvar] / valence;
112  j++;
113  }
114  // Add the result to the system's Jacobian matrix
115  _assembly.cacheJacobianBlock(deriv_matrix, idof_indices, jdof_indices, _var.scalingFactor());
116  }
117  }
118 }
PorousFlowDictator::mooseVariableNum
unsigned int mooseVariableNum(unsigned int porous_flow_var_num) const
The Moose variable number.
Definition: PorousFlowDictator.C:145
PorousFlowFluxLimitedTVDAdvection
Advection of a quantity with velocity set in the PorousFlowAdvectiveFluxCalculator Depending on the P...
Definition: PorousFlowFluxLimitedTVDAdvection.h:33
PorousFlowFluxLimitedTVDAdvection::_fluo
const PorousFlowAdvectiveFluxCalculatorBase & _fluo
The user object that computes Kuzmin and Turek's K_ij, R+ and R-, etc quantities.
Definition: PorousFlowFluxLimitedTVDAdvection.h:47
AdvectiveFluxCalculatorBase::getValence
unsigned getValence(dof_id_type node_i) const
Returns the valence of the global node i Valence is the number of times the node is encountered in a ...
Definition: AdvectiveFluxCalculatorBase.C:749
PorousFlowFluxLimitedTVDAdvection::computeResidual
virtual void computeResidual() override
Definition: PorousFlowFluxLimitedTVDAdvection.C:49
PorousFlowFluxLimitedTVDAdvection::PorousFlowFluxLimitedTVDAdvection
PorousFlowFluxLimitedTVDAdvection(const InputParameters &parameters)
Definition: PorousFlowFluxLimitedTVDAdvection.C:33
PorousFlowDictator
This holds maps between the nonlinear variables used in a PorousFlow simulation and the variable numb...
Definition: PorousFlowDictator.h:71
PorousFlowFluxLimitedTVDAdvection::_dictator
const PorousFlowDictator & _dictator
PorousFlowDictator UserObject.
Definition: PorousFlowFluxLimitedTVDAdvection.h:44
PorousFlowDictator::numVariables
unsigned int numVariables() const
The number of PorousFlow variables.
Definition: PorousFlowDictator.C:99
PorousFlowAdvectiveFluxCalculatorBase::getdFluxOut_dvars
const std::map< dof_id_type, std::vector< Real > > & getdFluxOut_dvars(unsigned node_id) const
Returns d(flux_out)/d(porous_flow_variables.
Definition: PorousFlowAdvectiveFluxCalculatorBase.C:247
PorousFlowFluxLimitedTVDAdvection::computeQpResidual
virtual Real computeQpResidual() override
Definition: PorousFlowFluxLimitedTVDAdvection.C:42
AdvectiveFluxCalculatorBase::getFluxOut
Real getFluxOut(dof_id_type node_i) const
Returns the flux out of lobal node id.
Definition: AdvectiveFluxCalculatorBase.C:743
registerMooseObject
registerMooseObject("PorousFlowApp", PorousFlowFluxLimitedTVDAdvection)
PorousFlowAdvectiveFluxCalculatorBase
Base class to compute the advective flux of fluid in PorousFlow situations using the Kuzmin-Turek FEM...
Definition: PorousFlowAdvectiveFluxCalculatorBase.h:32
PorousFlowFluxLimitedTVDAdvection::computeJacobian
virtual void computeJacobian() override
Definition: PorousFlowFluxLimitedTVDAdvection.C:72
validParams< PorousFlowFluxLimitedTVDAdvection >
InputParameters validParams< PorousFlowFluxLimitedTVDAdvection >()
Definition: PorousFlowFluxLimitedTVDAdvection.C:18
PorousFlowFluxLimitedTVDAdvection.h