Hello
I am trying to create meta particles with two different diameters with a custom factory and particle replacement API.
During this i have defined a custom property called particle type which will assign it a value of 1 when diameter 2 needs to be created. based on this custom property i go to the cRemoval.cpp file and change the particle cluster.
But as per the sequence of the runtime of EDEM particle factory is supposed to run first and then c removal but when i run the program goes directly to the CRemoval.cpp
so what i don't understand here is should i have same name for the custom property in CReplacementFactory and CRemoval.cpp?
this is a custom prop i have created in CReplacementFactory API

In the external force API, I am trying to get its value

and then change the cluster type

so i am not able to understand two things
1 why does the program directly go to Cremove API by skipping replacement API?
2 do i need to remain consistent with the names of custom properties in the custom factory API and body force API?
Please let me know