|
NOX
Development
|
MultiVector class to hold solution vectors, Newton vectors, etc.for the Moore-Spence pitchfork formulation. More...
#include <LOCA_Pitchfork_MooreSpence_ExtendedMultiVector.H>


Public Member Functions | |
| ExtendedMultiVector (const Teuchos::RCP< LOCA::GlobalData > &global_data, const NOX::Abstract::Vector &cloneVec, int nColumns) | |
| Constructor. | |
| ExtendedMultiVector (const Teuchos::RCP< LOCA::GlobalData > &global_data, const NOX::Abstract::MultiVector &xVec, const NOX::Abstract::MultiVector &nullVec, const NOX::Abstract::MultiVector::DenseMatrix &slacks, const NOX::Abstract::MultiVector::DenseMatrix &bifParams) | |
| Constructor. | |
| ExtendedMultiVector (const ExtendedMultiVector &source, NOX::CopyType type=NOX::DeepCopy) | |
| Copy constructor. | |
| ExtendedMultiVector (const ExtendedMultiVector &source, int nColumns) | |
| Copy constructor that creates a new multivector with nColumns columns. | |
| ExtendedMultiVector (const ExtendedMultiVector &source, const std::vector< int > &index, bool view) | |
| Copy constructor that creates a sub copy or view of the given multivector. | |
| virtual | ~ExtendedMultiVector () |
| Destructor. | |
| virtual ExtendedMultiVector & | operator= (const ExtendedMultiVector &y) |
| Assignment operator. | |
|
virtual LOCA::Extended::MultiVector & | operator= (const LOCA::Extended::MultiVector &y) |
| Assignment operator. | |
|
virtual NOX::Abstract::MultiVector & | operator= (const NOX::Abstract::MultiVector &y) |
| Assignment operator. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector > | clone (NOX::CopyType type=NOX::DeepCopy) const |
| Create a new multi-vector of the same underlying type by cloning "this", and return a pointer to the new vector. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector > | clone (int numvecs) const |
Creates a new multi-vector with numvecs columns. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector > | subCopy (const std::vector< int > &index) const |
Creates a new multi-vector with index.size() columns whose columns are copies of the columns of *this given by index. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector > | subView (const std::vector< int > &index) const |
Creates a new multi-vector with index.size() columns that shares the columns of *this given by index. | |
|
virtual Teuchos::RCP< const NOX::Abstract::MultiVector > | getXMultiVec () const |
| Returns the solution vector component of extended multivector. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector > | getXMultiVec () |
| Returns the solution vector component of extended multivector. | |
|
virtual Teuchos::RCP< const NOX::Abstract::MultiVector > | getNullMultiVec () const |
| Returns the null vector component of extended multivector. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector > | getNullMultiVec () |
| Returns the null vector component of extended multivector. | |
|
virtual Teuchos::RCP< const NOX::Abstract::MultiVector::DenseMatrix > | getSlacks () const |
| Returns slack component of the extended multivector. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector::DenseMatrix > | getSlacks () |
| Returns slack component of the extended multivector. | |
|
virtual Teuchos::RCP< const NOX::Abstract::MultiVector::DenseMatrix > | getBifParams () const |
| Returns bifurcation parameter component of the extended multivector. | |
|
virtual Teuchos::RCP < NOX::Abstract::MultiVector::DenseMatrix > | getBifParams () |
| Returns bifurcation parameter component of the extended multivector. | |
|
virtual Teuchos::RCP < LOCA::Pitchfork::MooreSpence::ExtendedVector > | getColumn (int i) |
| Returns ith column as an extended vector. | |
|
virtual Teuchos::RCP< const LOCA::Pitchfork::MooreSpence::ExtendedVector > | getColumn (int i) const |
| Returns ith column as an extended vector. | |
Protected Member Functions | |
| ExtendedMultiVector (const Teuchos::RCP< LOCA::GlobalData > &global_data, int nColumns) | |
| Constructor. | |
| virtual Teuchos::RCP < LOCA::Extended::Vector > | generateVector (int nVecs, int nScalarRows) const |
| Generate a derived extended vector. | |
Friends | |
| class | ExtendedVector |
| Declare LOCA::Pitchfork::MooreSpece::ExtendedVector as a friend class so it can call protected methods. | |
MultiVector class to hold solution vectors, Newton vectors, etc.for the Moore-Spence pitchfork formulation.
This class uses the LOCA::Extended::MultiVector implementation to store the solution, null, parameter, and slack components of the pitchfork multivector and merely provides an interface for naming which components of the multivector these quantities correspond to.
| LOCA::Pitchfork::MooreSpence::ExtendedMultiVector::ExtendedMultiVector | ( | const Teuchos::RCP< LOCA::GlobalData > & | global_data, |
| const NOX::Abstract::Vector & | cloneVec, | ||
| int | nColumns | ||
| ) |
Constructor.
Generates a multivector with nColumns columns from cloneVec
References NOX::Abstract::Vector::createMultiVector(), LOCA::Extended::MultiVector::setMultiVectorPtr(), and NOX::ShapeCopy.
| LOCA::Pitchfork::MooreSpence::ExtendedMultiVector::ExtendedMultiVector | ( | const Teuchos::RCP< LOCA::GlobalData > & | global_data, |
| const NOX::Abstract::MultiVector & | xVec, | ||
| const NOX::Abstract::MultiVector & | nullVec, | ||
| const NOX::Abstract::MultiVector::DenseMatrix & | slacks, | ||
| const NOX::Abstract::MultiVector::DenseMatrix & | bifParams | ||
| ) |
Constructor.
Construct the multivector from xVec, nullVec, and bifParams
References Teuchos::SerialDenseMatrix< OrdinalType, ScalarType >::assign(), NOX::Abstract::MultiVector::clone(), NOX::DeepCopy, LOCA::Extended::MultiVector::getScalarRows(), and LOCA::Extended::MultiVector::setMultiVectorPtr().
| LOCA::Pitchfork::MooreSpence::ExtendedMultiVector::ExtendedMultiVector | ( | const Teuchos::RCP< LOCA::GlobalData > & | global_data, |
| int | nColumns | ||
| ) | [protected] |
Constructor.
Creates an empty multivector with nColumns columns
| Teuchos::RCP< LOCA::Extended::Vector > LOCA::Pitchfork::MooreSpence::ExtendedMultiVector::generateVector | ( | int | nVecs, |
| int | nScalarRows | ||
| ) | const [protected, virtual] |
Generate a derived extended vector.
Returns a vector of type LOCA::Pitchfork::MooreSpence::ExtendedVector
Reimplemented from LOCA::Extended::MultiVector.
References Teuchos::rcp().
1.7.6.1