From 15afaae8f9f0bd5007ce86aba2c0e6babe384309 Mon Sep 17 00:00:00 2001 From: "Blair, Alexander" Date: Tue, 18 May 2021 10:49:01 +0100 Subject: [PATCH] Minor comment fix. --- src/auxkernels/AVCurrentDensity.C | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/auxkernels/AVCurrentDensity.C b/src/auxkernels/AVCurrentDensity.C index ef7913c9..8928d610 100644 --- a/src/auxkernels/AVCurrentDensity.C +++ b/src/auxkernels/AVCurrentDensity.C @@ -23,8 +23,6 @@ AVCurrentDensity::AVCurrentDensity(const InputParameters & parameters) RealVectorValue AVCurrentDensity::computeValue() { - // Access the gradient of the pressure at this quadrature point, then pull out the "component" of - // it requested (x, y or z). Note, that getting a particular component of a gradient is done using - // the parenthesis operator. + // Calculate the current density in the AV formulation return -_sigma[_qp]*(_a_dot[_qp] + _grad_v[_qp]); }