Reply To: AnalyticalLinear2D Functor Syntax Query
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › AnalyticalLinear2D Functor Syntax Query › Reply To: AnalyticalLinear2D Functor Syntax Query
August 10, 2021 at 10:42 am
#5907
jjessberger
Participant
Hello Abhijeet,
The three arguments are the coefficients of the desired linear function. This (and their particular role) can be seen in the implementation of the AnalyticalLinear2D<T,S>::operator() method (src/functors/analytical/analyticalF.hh::395):
> output[0]=_a*x[0] + _b*x[1] + _c;
Yours,
Julius J.