Reply To: Extract Velocity Components
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › Extract Velocity Components › Reply To: Extract Velocity Components
July 1, 2022 at 9:50 am
#6683
Adrian
Keymaster
FunctorPtr
is only a helper to accept the various ways of referencing functors in a single method overload. You should never need to construct it manually.
What should work is:
olb::SuperF3D<T,T> f(velocity);
SuperExtractComponentF3D<T, T> velocityx(f, 0);