$extrastylesheet
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 System & | system |
| const NumericVector< Number > & | old_vector |
| NumericVector< Number > & | new_vector |
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.
| 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)
{}
| void libMesh::ProjectVector::operator() | ( | const ConstElemRange & | range | ) | const |
Definition at line 758 of file system_projection.C.
{
libmesh_not_implemented();
}
NumericVector<Number>& libMesh::ProjectVector::new_vector [private] |
Definition at line 57 of file system_projection.C.
const NumericVector<Number>& libMesh::ProjectVector::old_vector [private] |
Definition at line 56 of file system_projection.C.
const System& libMesh::ProjectVector::system [private] |
Definition at line 55 of file system_projection.C.