Reply To: AnalyticalLinear2D Functor Syntax Query
Due to recent bot attacks we have changed the sign-up process. If you want to participate in our forum, first register on this website and then send a message via our contact form.
› Forums › 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.
