$extrastylesheet
libMesh::ProjectVector Class Reference

List of all members.

Public Member Functions

 ProjectVector (const System &system_in, const NumericVector< Number > &old_v_in, NumericVector< Number > &new_v_in)
void operator() (const ConstElemRange &range) const

Private Attributes

const Systemsystem
const NumericVector< Number > & old_vector
NumericVector< Number > & new_vector

Detailed Description

This class implements projecting a vector from an old mesh to the newly refined mesh. This may be executed in parallel on multiple threads.

Definition at line 52 of file system_projection.C.


Constructor & Destructor Documentation

libMesh::ProjectVector::ProjectVector ( const System system_in,
const NumericVector< Number > &  old_v_in,
NumericVector< Number > &  new_v_in 
) [inline]

Definition at line 60 of file system_projection.C.

                                                  :
    system(system_in),
    old_vector(old_v_in),
    new_vector(new_v_in)
  {}

Member Function Documentation

void libMesh::ProjectVector::operator() ( const ConstElemRange range) const

Definition at line 758 of file system_projection.C.

{
  libmesh_not_implemented();
}

Member Data Documentation

Definition at line 56 of file system_projection.C.

Definition at line 55 of file system_projection.C.


The documentation for this class was generated from the following file: