#include <Epetra_FEVector.h>
Inheritance diagram for Epetra_FEVector:


Public Member Functions | |
| Epetra_FEVector (const Epetra_BlockMap &Map, int numVectors=1, bool ignoreNonLocalEntries=false) | |
| Epetra_FEVector (const Epetra_FEVector &source) | |
| virtual | ~Epetra_FEVector () |
| int | SumIntoGlobalValues (int numIDs, const int *GIDs, const double *values, int vectorIndex=0) |
| int | SumIntoGlobalValues (const Epetra_IntSerialDenseVector &GIDs, const Epetra_SerialDenseVector &values, int vectorIndex=0) |
| int | ReplaceGlobalValues (int numIDs, const int *GIDs, const double *values, int vectorIndex=0) |
| int | ReplaceGlobalValues (const Epetra_IntSerialDenseVector &GIDs, const Epetra_SerialDenseVector &values, int vectorIndex=0) |
| int | SumIntoGlobalValues (int numIDs, const int *GIDs, const int *numValuesPerID, const double *values, int vectorIndex=0) |
| int | ReplaceGlobalValues (int numIDs, const int *GIDs, const int *numValuesPerID, const double *values, int vectorIndex=0) |
| int | GlobalAssemble (Epetra_CombineMode mode=Add) |
| void | setIgnoreNonLocalEntries (bool flag) |
| Epetra_FEVector & | operator= (const Epetra_FEVector &source) |
The added functionality provided by Epetra_FEVector is the ability to perform finite-element style vector assembly. It accepts sub-vector contributions, such as those that would come from element-load vectors, etc., and these sub-vectors need not be owned by the local processor. In other words, the user can assemble overlapping data (e.g., corresponding to shared finite-element nodes). When the user is finished assembling their vector data, they then call the method Epetra_FEVector::GlobalAssemble() which gathers the overlapping data (all non-local data that was input on each processor) into the data-distribution specified by the map that the Epetra_FEVector is constructed with.
| Epetra_FEVector::Epetra_FEVector | ( | const Epetra_BlockMap & | Map, | |
| int | numVectors = 1, |
|||
| bool | ignoreNonLocalEntries = false | |||
| ) |
Constructor that requires a map specifying a non-overlapping data layout.
| Map | Map describing a non-overlapping distribution for the underlying Epetra_MultiVector that this Epetra_FEVector will be funnelling data into. | |
| numVectors | Optional argument, default value is 1. (See the documentation for Epetra_MultiVector for the meaning of this argument. | |
| ignoreNonLocalEntries | Optional argument, default value is false. Under certain special circumstances it is desirable to have non-local contributions ignored rather than saving them for the GlobalAssemble step. |
| Epetra_FEVector::Epetra_FEVector | ( | const Epetra_FEVector & | source | ) |
Copy constructor.
| virtual Epetra_FEVector::~Epetra_FEVector | ( | ) | [virtual] |
Destructor
| int Epetra_FEVector::GlobalAssemble | ( | Epetra_CombineMode | mode = Add |
) |
Gather any overlapping/shared data into the non-overlapping partitioning defined by the Map that was passed to this vector at construction time. Data imported from other processors is stored on the owning processor with a "sumInto" or accumulate operation. This is a collective method -- every processor must enter it before any will complete it.
| int Epetra_FEVector::ReplaceGlobalValues | ( | const Epetra_IntSerialDenseVector & | GIDs, | |
| const Epetra_SerialDenseVector & | values, | |||
| int | vectorIndex = 0 | |||
| ) |
Copy values into the vector, replacing any values that already exist for the specified GIDs.
| GIDs | List of global ids. Must be the same length as the accompanying list of values. | |
| values | List of coefficient values. Must be the same length as the accompanying list of GIDs. |
| int Epetra_FEVector::ReplaceGlobalValues | ( | int | numIDs, | |
| const int * | GIDs, | |||
| const double * | values, | |||
| int | vectorIndex = 0 | |||
| ) |
Copy values into the vector overwriting any values that already exist for the specified indices.
| void Epetra_FEVector::setIgnoreNonLocalEntries | ( | bool | flag | ) | [inline] |
Set whether or not non-local data values should be ignored.
| int Epetra_FEVector::SumIntoGlobalValues | ( | const Epetra_IntSerialDenseVector & | GIDs, | |
| const Epetra_SerialDenseVector & | values, | |||
| int | vectorIndex = 0 | |||
| ) |
Accumulate values into the vector, adding them to any values that already exist for the specified GIDs.
| GIDs | List of global ids. Must be the same length as the accompanying list of values. | |
| values | List of coefficient values. Must be the same length as the accompanying list of GIDs. |
| int Epetra_FEVector::SumIntoGlobalValues | ( | int | numIDs, | |
| const int * | GIDs, | |||
| const double * | values, | |||
| int | vectorIndex = 0 | |||
| ) |
Accumulate values into the vector, adding them to any values that already exist for the specified indices.
1.4.7