forked from trilinos/Trilinos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Panzer: Updating Integrator_BasisTimesScalar...
and Integrator_GradBasisDotVector such that they can now evaluate a field (the old way of doing things) or contribute to a field instead (the new way). The main constructors now ensure compile-time argument checking, though there are ParameterList constructors for backwards compatibility. New code should not use the ParameterList constructors, as they will be going away eventually.
- Loading branch information
Showing
5 changed files
with
1,001 additions
and
379 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
packages/panzer/disc-fe/src/evaluators/Panzer_EvaluatorStyle.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// @HEADER | ||
// *********************************************************************** | ||
// | ||
// Panzer: A partial differential equation assembly | ||
// engine for strongly coupled complex multiphysics systems | ||
// Copyright (2011) Sandia Corporation | ||
// | ||
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, | ||
// the U.S. Government retains certain rights in this software. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are | ||
// met: | ||
// | ||
// 1. Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// | ||
// 2. Redistributions in binary form must reproduce the above copyright | ||
// notice, this list of conditions and the following disclaimer in the | ||
// documentation and/or other materials provided with the distribution. | ||
// | ||
// 3. Neither the name of the Corporation nor the names of the | ||
// contributors may be used to endorse or promote products derived from | ||
// this software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY | ||
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE | ||
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
// | ||
// Questions? Contact Roger P. Pawlowski ([email protected]) and | ||
// Eric C. Cyr ([email protected]) | ||
// *********************************************************************** | ||
// @HEADER | ||
|
||
#ifndef __Panzer_EvaluatorStyle_hpp__ | ||
#define __Panzer_EvaluatorStyle_hpp__ | ||
|
||
namespace panzer | ||
{ | ||
/** | ||
* \brief An indication of how an `Evaluator` will behave. | ||
* | ||
* An `Evaluator` will compute the result of its evaluation and then | ||
* behave according to the table below. | ||
*/ | ||
enum class EvaluatorStyle | ||
{ | ||
CONTRIBUTES, /*!< Contribute the result to a specified residual, not saving | ||
anything. */ | ||
EVALUATES, /*!< Save the result under a specified name for future use. */ | ||
}; // end of enum class EnumeratorStyle | ||
|
||
} // end of namespace panzer | ||
|
||
#endif // __Panzer_EvaluatorStyle_hpp__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.