![]() |
Chaste Commit::675f9facbe008c5eacb9006feaeb6423206579ea
|
#include <cassert>#include <vector>#include <nvector/nvector_serial.h>
Include dependency graph for VectorHelperFunctions.hpp:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Functions | |
| template<typename VECTOR > | |
| double | GetVectorComponent (const VECTOR &rVec, unsigned index) |
| template<typename VECTOR > | |
| void | SetVectorComponent (VECTOR &rVec, unsigned index, double value) |
| template<typename VECTOR > | |
| unsigned | GetVectorSize (const VECTOR &rVec) |
| template<typename VECTOR > | |
| void | InitialiseEmptyVector (VECTOR &rVec) |
| template<typename VECTOR > | |
| void | CreateVectorIfEmpty (VECTOR &rVec, unsigned size) |
| template<typename VECTOR > | |
| VECTOR | CreateEmptyVector () |
| template<typename VECTOR > | |
| bool | IsEmptyVector (VECTOR &rVec) |
| template<typename VECTOR > | |
| void | DeleteVector (VECTOR &rVec) |
| template<typename VECTOR > | |
| VECTOR | CopyVector (VECTOR &rVec) |
| template<typename VECTOR > | |
| void | CopyToStdVector (const VECTOR &rSrc, std::vector< double > &rDest) |
| template<typename VECTOR > | |
| void | CopyFromStdVector (const std::vector< double > &rSrc, VECTOR &rDest) |
| template<> | |
| double | GetVectorComponent (const std::vector< double > &rVec, unsigned index) |
| template<> | |
| void | SetVectorComponent (std::vector< double > &rVec, unsigned index, double value) |
| template<> | |
| unsigned | GetVectorSize (const std::vector< double > &rVec) |
| template<> | |
| void | InitialiseEmptyVector (std::vector< double > &rVec) |
| template<> | |
| void | CreateVectorIfEmpty (std::vector< double > &rVec, unsigned size) |
| template<> | |
| std::vector< double > | CreateEmptyVector () |
| template<> | |
| bool | IsEmptyVector (std::vector< double > &rVec) |
| template<> | |
| void | DeleteVector (std::vector< double > &rVec) |
| template<> | |
| std::vector< double > | CopyVector (std::vector< double > &rVec) |
| template<> | |
| void | CopyToStdVector (const std::vector< double > &rSrc, std::vector< double > &rDest) |
| template<> | |
| void | CopyFromStdVector (const std::vector< double > &rSrc, std::vector< double > &rDest) |
| template<> | |
| double | GetVectorComponent (const N_Vector &rVec, unsigned index) |
| template<> | |
| void | SetVectorComponent (N_Vector &rVec, unsigned index, double value) |
| template<> | |
| unsigned | GetVectorSize (const N_Vector &rVec) |
| template<> | |
| void | InitialiseEmptyVector (N_Vector &rVec) |
| template<> | |
| void | CreateVectorIfEmpty (N_Vector &rVec, unsigned size) |
| template<> | |
| N_Vector | CreateEmptyVector () |
| template<> | |
| bool | IsEmptyVector (N_Vector &rVec) |
| template<> | |
| void | DeleteVector (N_Vector &rVec) |
| template<> | |
| N_Vector | CopyVector (N_Vector &rVec) |
| template<> | |
| void | CopyToStdVector (const N_Vector &rSrc, std::vector< double > &rDest) |
| template<> | |
| void | CopyFromStdVector (const std::vector< double > &rSrc, N_Vector &rDest) |
| std::vector< double > | MakeStdVec (N_Vector v) |
| N_Vector | MakeNVector (const std::vector< double > &rSrc) |
A selection of helper functions to be able to access std::vector<double> and CVODE's N_Vector types using the same interface. These are used by AbstractParameterisedSystem and some tests.
Definition in file VectorHelperFunctions.hpp.
A helper function to copy a std::vector<double> into an N_Vector.
| rSrc | source vector |
| rDest | destination vector; must exist and be the correct size |
Definition at line 471 of file VectorHelperFunctions.hpp.
|
inline |
Specialisation for std::vector<double>.
| rSrc | |
| rDest |
Definition at line 310 of file VectorHelperFunctions.hpp.
|
inline |
A helper function to copy a std::vector<double> into a VECTOR.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rSrc | source vector |
| rDest | destination vector; must exist and be the correct size |
Referenced by AbstractCvodeSystem::load(), MakeNVector(), and OdeSolution::rGetDerivedQuantities().
A helper function to copy an N_Vector into a std::vector<double>.
| rSrc | source vector |
| rDest | destination vector; will be resized and filled |
Definition at line 448 of file VectorHelperFunctions.hpp.
|
inline |
Specialisation for std::vector<double>.
| rSrc | |
| rDest |
Definition at line 299 of file VectorHelperFunctions.hpp.
|
inline |
A helper function to copy a VECTOR into a std::vector<double>.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rSrc | source vector |
| rDest | destination vector; will be resized and filled |
Referenced by AbstractCvodeCell::GetStdVecStateVariables(), MakeStdVec(), OdeSolution::rGetDerivedQuantities(), SteadyStateRunner::RunToSteadyStateImplementation(), and AbstractParameterisedSystem< VECTOR >::SetDefaultInitialConditions().
Specialisation for CVODE's N_Vector type.
| rVec |
Definition at line 426 of file VectorHelperFunctions.hpp.
Specialisation for std::vector<double>.
| rVec |
Definition at line 288 of file VectorHelperFunctions.hpp.
|
inline |
Helper function to create a fresh copy of a vector.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the vector to copy |
Referenced by AbstractParameterisedSystem< VECTOR >::GetStateVariables().
|
inline |
Helper function to create a new empty/unset vector, useful for defining a default parameter value.
|
inline |
Specialisation for std::vector<double>.
Definition at line 257 of file VectorHelperFunctions.hpp.
|
inline |
Specialisation for CVODE's N_Vector type.
Definition at line 390 of file VectorHelperFunctions.hpp.
Specialisation for CVODE's N_Vector type.
| rVec | |
| size |
Definition at line 373 of file VectorHelperFunctions.hpp.
Specialisation for std::vector<double>.
| rVec | |
| size |
Definition at line 244 of file VectorHelperFunctions.hpp.
|
inline |
If the given vector is empty, set it to have a particular size, allocating memory if necessary. It is a no-op if the vector is non-empty.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the empty vector |
| size | the size to create it as |
Referenced by AbstractParameterisedSystem< VECTOR >::CheckParametersOnLoad(), MakeNVector(), AbstractCvodeSystem::RecordStoppingPoint(), and CvodeAdaptor::RecordStoppingPoint().
|
inline |
Specialisation for CVODE's N_Vector type.
| rVec |
Definition at line 411 of file VectorHelperFunctions.hpp.
|
inline |
Specialisation for std::vector<double>.
| rVec |
Definition at line 278 of file VectorHelperFunctions.hpp.
|
inline |
Helper function to delete a vector.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the vector |
Referenced by AbstractCvodeSystem::~AbstractCvodeSystem(), CvodeAdaptor::~CvodeAdaptor(), AbstractCvodeSystem::Init(), AbstractCvodeSystem::ResetSolver(), CvodeAdaptor::ResetSolver(), OdeSolution::rGetDerivedQuantities(), AbstractCvodeCell::SetStateVariables(), CvodeAdaptor::SetupCvode(), CvodeAdaptor::Solve(), and CvodeAdaptor::Solve().
Specialisation for CVODE's N_Vector type.
| rVec | |
| index |
Definition at line 326 of file VectorHelperFunctions.hpp.
Specialisation for std::vector<double>.
| rVec | |
| index |
Definition at line 199 of file VectorHelperFunctions.hpp.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the vector to access |
| index | the index of the component to get |
Referenced by AbstractParameterisedSystem< VECTOR >::GetAnyVariable(), AbstractCvodeSystem::RecordStoppingPoint(), CvodeAdaptor::RecordStoppingPoint(), CvodeAdaptor::SetupCvode(), and AbstractCvodeSystem::SetupCvode().
Specialisation for CVODE's N_Vector type.
| rVec |
Definition at line 351 of file VectorHelperFunctions.hpp.
Specialisation for std::vector<double>.
| rVec |
Definition at line 224 of file VectorHelperFunctions.hpp.
|
inline |
Helper function to determine a vector's size.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the vector |
Referenced by AbstractParameterisedSystem< VECTOR >::CheckParametersOnLoad(), AbstractParameterisedSystem< VECTOR >::GetAnyVariable(), AbstractParameterisedSystem< N_Vector >::GetParameter(), AbstractParameterisedSystem< VECTOR >::GetParameter(), AbstractParameterisedSystem< VECTOR >::GetStateMessage(), CvodeAdaptor::RecordStoppingPoint(), AbstractParameterisedSystem< VECTOR >::SetAnyVariable(), AbstractParameterisedSystem< VECTOR >::SetDefaultInitialConditions(), AbstractParameterisedSystem< VECTOR >::SetStateVariables(), and CvodeAdaptor::SetupCvode().
|
inline |
Specialisation for CVODE's N_Vector type.
| rVec |
Definition at line 362 of file VectorHelperFunctions.hpp.
|
inline |
Specialisation for std::vector<double>.
| rVec |
Definition at line 234 of file VectorHelperFunctions.hpp.
|
inline |
Helper function to initialise a vector to be empty/unset.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the vector |
Referenced by AbstractParameterisedSystem< VECTOR >::AbstractParameterisedSystem().
Specialisation for CVODE's N_Vector type.
| rVec |
Definition at line 401 of file VectorHelperFunctions.hpp.
Specialisation for std::vector<double>.
| rVec |
Definition at line 268 of file VectorHelperFunctions.hpp.
|
inline |
Helper function to test whether a vector is empty/unset.
| rVec | the vector |
Make an N_Vector from a standard vector
| rSrc | a std::vector to copy the entries from |
Definition at line 507 of file VectorHelperFunctions.hpp.
References CopyFromStdVector(), and CreateVectorIfEmpty().
Referenced by AbstractCvodeCell::SetStateVariables().
Make a standard vector from an N_Vector
| v | A CVODE N_Vector to copy the entries from |
Definition at line 494 of file VectorHelperFunctions.hpp.
References CopyToStdVector().
Referenced by AbstractCvodeSystem::CvodeError(), AbstractCvodeSystem::save(), and AbstractCvodeSystem::Solve().
Specialisation for CVODE's N_Vector type.
| rVec | |
| index | |
| value |
Definition at line 339 of file VectorHelperFunctions.hpp.
|
inline |
Specialisation for std::vector<double>.
| rVec | |
| index | |
| value |
Definition at line 212 of file VectorHelperFunctions.hpp.
|
inline |
Helper function to set a vector component.
This isn't a member so that we can specialise it without having to specialise the whole class.
| rVec | the vector to modify |
| index | the index of the component to set |
| value | the new value |
Referenced by AbstractParameterisedSystem< N_Vector >::CheckParametersOnLoad(), AbstractParameterisedSystem< N_Vector >::GetParameter(), AbstractCvodeSystem::RecordStoppingPoint(), CvodeAdaptor::RecordStoppingPoint(), AbstractParameterisedSystem< VECTOR >::SetAnyVariable(), and AbstractParameterisedSystem< VECTOR >::SetParameter().