Reply To: Adding an arbitrary shaped particle.
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › Adding an arbitrary shaped particle. › Reply To: Adding an arbitrary shaped particle.
August 16, 2024 at 12:20 am
#9097
avrachan1
Participant
auto particle_indicator = std::make_shared<STLreader<T>> ( "ArbParticle.stl", L);
Vector<T,3> position;
creators::addResolvedArbitraryShape3D(particleSystem,position,dx,particle_indicator,pfwidth,1e16);
Gives me the error,
olb-1.6r0/src/particles/functions/particleCreatorFunctions3D.h:334:6: note: candidate template ignored: could not match 'IndicatorF3D' against 'STLreader'
What is the correct way to pass STLreader, as suggested in the thread https://www.openlb.net/forum/topic/particle-flow/
- This reply was modified 1 month ago by avrachan1.