Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 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 : 10 : #pragma once 11 : 12 : #include "ComputeJacobianThread.h" 13 : 14 : // Forward declarations 15 : class FEProblemBase; 16 : class NonlinearSystemBase; 17 : class Kernel; 18 : 19 : class ComputeFullJacobianThread : public ComputeJacobianThread 20 : { 21 : public: 22 : ComputeFullJacobianThread(FEProblemBase & fe_problem, const std::set<TagID> & tags); 23 : 24 : // Splitting Constructor 25 : ComputeFullJacobianThread(ComputeFullJacobianThread & x, Threads::split split); 26 : 27 : virtual ~ComputeFullJacobianThread(); 28 : 29 6302 : void join(const ComputeJacobianThread & /*y*/) {} 30 : 31 : protected: 32 : virtual void computeOnElement() override; 33 : virtual void computeOnBoundary(BoundaryID bnd_id, const Elem * lower_d_elem) override; 34 : virtual void computeOnInternalFace(const Elem * neighbor) override; 35 : virtual void computeOnInternalFace() override; 36 : virtual void computeOnInterface(BoundaryID bnd_id) override; 37 : };