|
| template<typename TYPE , typename CELL , typename J > |
| void | compute (CELL &cell, J &j) any_platform |
| |
| template<typename TYPE , typename CELL , typename U , typename V = typename CELL::value_t, typename DESCRIPTOR = typename CELL::descriptor_t> |
| void | computeU (CELL &cell, U &u) any_platform |
| |
| template<typename TYPE , typename CELL , typename U > |
| void | define (CELL &cell, const U &u) any_platform |
| |
| template<typename TYPE , typename CELL > |
| void | initialize (CELL &cell) any_platform |
| |
| template<typename TYPE , typename CELL , typename U > |
| void | inverseShift (CELL &cell, U &u) any_platform |
| |
template<int direction, int orientation>
struct olb::momenta::FreeEnergyInletOutletMomentum< direction, orientation >
Definition at line 892 of file elements.h.
template<int direction, int orientation>
template<typename TYPE , typename CELL , typename U , typename V = typename CELL::value_t, typename DESCRIPTOR = typename CELL::descriptor_t>
Definition at line 900 of file elements.h.
901 {
902 for (int iVel=0; iVel<DESCRIPTOR::d; ++iVel) {
903 u[iVel] = V(0);
904 }
905 u[direction] = cell.template getFieldPointer<descriptors::FORCE>()[1];
906 }