Panzer Version of the Day
Loading...
Searching...
No Matches
Panzer_LinearObjContainer.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Panzer: A partial differential equation assembly
4// engine for strongly coupled complex multiphysics systems
5//
6// Copyright 2011 NTESS and the Panzer contributors.
7// SPDX-License-Identifier: BSD-3-Clause
8// *****************************************************************************
9// @HEADER
10
11#ifndef __Panzer_LinearObjContainer_hpp__
12#define __Panzer_LinearObjContainer_hpp__
13
14#include "PanzerDiscFE_config.hpp"
15
17
18#include "Teuchos_RCP.hpp"
19#include "Teuchos_dyn_cast.hpp"
20
21namespace panzer {
22
23// **********************************************************************************************
24// *********************** LINEAR OBJ CONTAINER *************************************************
25// **********************************************************************************************
26
40public:
42
44 typedef enum { X=0x1, DxDt=0x2, F=0x4, Mat=0x8} Members;
45
47 virtual void initialize() = 0;
48};
49
50}
51
52#endif
Abstract, linear-algebra-library-agnostic container for the vectors and matrix used in a nonlinear/tr...
Members
Bitmask flags identifying which of the linear objects (solution, time derivative, residual,...
virtual void initialize()=0
Zeroes out all linear objects currently held by this container.