/usr/include/trilinos/NOX_Multiphysics_Group.H is in libtrilinos-nox-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | //@HEADER
// ************************************************************************
//
// NOX: An Object-Oriented Nonlinear Solver Package
// Copyright (2002) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// 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 Pawlowski (rppawlo@sandia.gov) or
// Eric Phipps (etphipp@sandia.gov), Sandia National Laboratories.
// ************************************************************************
// CVS Information
// $Source$
// $Author$
// $Date$
// $Revision$
// ************************************************************************
//@HEADER
#ifndef NOX_MULTIPHYSICS_GROUP_H
#define NOX_MULTIPHYSICS_GROUP_H
#include "NOX_Abstract_Group.H" // Base class
#include "NOX_MultiVector.H"
#include "NOX_Common.H" // for std::string
#include "NOX.H" // for NOX::Solver::Manager
#include "Teuchos_RCP.hpp"
#include <vector>
namespace NOX {
namespace Parameter {
class List;
}
namespace Abstract {
class MultiVector;
}
}
namespace NOX {
namespace Multiphysics {
/*!
\brief %NOX pure abstract interface to a "group"; i.e., a
solution vector and the corresponding F-vector, Jacobian matrix,
gradient vector, and Newton vector.
This class is a member of the namespace NOX::Abstract.
The user should implement their own concrete implementation of this
class or use one of the implementations provided by us. Typically
the implementation is also tied to a particular
NOX::Abstract::Vector implementation.
\note The group may be implemented so that multiple groups can
share underlying memory space. This is particularly important when
it comes to the Jacobian, which is often to big to be replicated
for every group. Thus, we have included instructions on how
<em>shared data</em> should be treated for the operator=() and
clone() functions.
*/
class Group : public NOX::Abstract::Group {
public:
//! Constructor.
/*!
\note Constructors for any derived object should always define a default
x-value so that getX() is always defined.
*/
Group( const Teuchos::RCP<std::vector<Teuchos::RCP<NOX::Solver::Generic> > >& solvers,
const Teuchos::RCP<NOX::StatusTest::Generic>& t,
const Teuchos::RCP<Teuchos::ParameterList>& p);
//! Constructor.
Group( const Group & grp, NOX::CopyType typ );
//! Destructor.
virtual ~Group();
/*!
\brief Copies the source group into this group.
\note Any <em>shared data</em> owned by the source should have
its ownership transfered to this group. This may result in
a secret modification to the source object.
*/
virtual NOX::Abstract::Group & operator=(const NOX::Abstract::Group& source);
virtual NOX::Abstract::Group & operator=(const NOX::Multiphysics::Group& source);
//@{ \name "Compute" functions.
//! Set the solution vector x to y.
/*!
\note
This should invalidate the function value, Jacobian,
gradient, and Newton direction.
\note
Throw an error if the copy fails.
\return
Reference to this object
*/
virtual void setX(const NOX::Abstract::Vector& y);
//! Compute x = grp.x + step * d.
/*!
Let \f$x\f$ denote this group's solution vector.
Let \f$\hat x\f$ denote the result of grp.getX().
Then set
\f[
x = \hat x + \mbox{step} \; d.
\f]
\note
This should invalidate the function value, Jacobian,
gradient, and Newton direction.
\note
Throw an error if the copy fails.
\return
Reference to this object
*/
virtual void computeX(const NOX::Abstract::Group& grp,
const NOX::Abstract::Vector& d, double step);
//! Compute and store F(x).
/*!
\note
It's generally useful to also compute and store the 2-norm of F(x)
at this point for later access by the getNormF() function.
\return
<ul>
<li> NOX::Abstract::Group::Failed - If the computation fails in any way
<li> NOX::Abstract::Group::Ok - Otherwise
</ul>
*/
virtual NOX::Abstract::Group::ReturnType computeF();
/** @name "Is" functions.
Checks to see if various objects have been computed. Returns true
if the corresponding "compute" function has been called since the
last change to the solution vector.
*/
//@{
//! Return true if F is valid.
virtual bool isF() const;
/** @name "Get" functions.
Note that these function do not check whether or not the vectors
are valid. Must use the "Is" functions for that purpose.
*/
//@{
//! Return solution vector.
virtual const NOX::Abstract::Vector& getX() const;
//! Return F(x)
virtual const NOX::Abstract::Vector& getF() const;
//! Return 2-norm of F(x).
/*! In other words, \f[ \sqrt{\sum_{i=1}^n F_i^2} \f] */
virtual double getNormF() const;
//! Return gradient.
virtual const NOX::Abstract::Vector& getGradient() const;
//! Return Newton direction.
virtual const NOX::Abstract::Vector& getNewton() const;
virtual Teuchos::RCP< const NOX::Abstract::Vector > getXPtr() const;
virtual Teuchos::RCP< const NOX::Abstract::Vector > getFPtr() const;
virtual Teuchos::RCP< const NOX::Abstract::Vector > getGradientPtr() const;
virtual Teuchos::RCP< const NOX::Abstract::Vector > getNewtonPtr() const;
//@{ \name Creating new Groups.
/*!
\brief Create a new %Group of the same derived type as this one by
cloning this one, and return a ref count pointer to the new group.
If type is NOX::DeepCopy, then we need to create an exact replica
of "this". Otherwise, if type is NOX::ShapeCopy, we need only
replicate the shape of "this" (only the memory is allocated, the
values are not copied into the vectors and Jacobian). Returns NULL
if clone is not supported.
\note Any <em>shared data</em> should have its ownership transfered to this
group from the source for a NOX::DeepCopy.
*/
virtual Teuchos::RCP<NOX::Abstract::Group>
clone(NOX::CopyType type = NOX::DeepCopy) const;
//@}
protected:
//! resets the isValid flags to false
virtual void resetIsValid();
protected:
//! Pointer to the container of solvers for each problem to be coupled
Teuchos::RCP<std::vector<Teuchos::RCP<NOX::Solver::Generic> > > solversVecPtr;
/** @name IsValid flags
*
* True if the current solution is up-to-date with respect to the
* currect xVector. */
//@{
bool isValidRHS;
//! 2-Norm of RHS
double normRHS;
};
} // namespace Multiphysics
} // namespace NOX
#endif
|