Go to the source code of this file.
|
| | cf3 |
| | Top-level namespace for coolfluid.
|
| |
| | cf3::mesh |
| | Basic Classes for Mesh applications used by COOLFluiD.
|
| |
|
| template<typename NodeValuesT , typename RowT > |
| void | fill (NodeValuesT &to_fill, const common::Table< Real > &data_array, const RowT &element_row, const Uint start=0) |
| | Fill STL-vector like per-node data storage. More...
|
| |
| template<typename RowT , int NbRows, int NbCols> |
| void | fill (Eigen::Matrix< Real, NbRows, NbCols > &to_fill, const common::Table< Real > &data_array, const RowT &element_row, const Uint start=0) |
| | Fill static sized matrices. More...
|
| |
| template<typename RowT > |
| void | fill (RealMatrix &to_fill, const common::Table< Real > &data_array, const RowT &element_row, const Uint start=0) |
| | Fill dynamic matrices. More...
|
| |
| template<typename RowT > |
| RealVector | to_vector (const RowT &row) |
| | Utility function to convert a vector-like type to a RealVector. More...
|
| |