Dear OpenLB developers,
If I add schillerNaumannDragForce like this, an error will be reported saying that the number of parameters is wrong, how can I correct it
SuperLatticeInterpPhysVelocity3D<T, DESCRIPTOR> getVel(sLattice, converter);
SuperLatticePhysViscosity3D<T, DESCRIPTOR> dynVisc(sLattice, converter);
SuperLatticeDensity3D<T, DESCRIPTOR> physDensity(sLattice);
auto schillerNaumannDragForce = std::make_shared<SchillerNaumannDragForce3D<T, PARTICLE, DESCRIPTOR>>(getVel, dynVisc, physDensity);
supParticleSystem.addForce(schillerNaumannDragForce);
Regards,
Rookie