question

Arun Kr avatar image
0 Likes"
Arun Kr asked Jason Lightfoot edited

Roller and Mass Flow Conveyor With Same Config Showing Different Results

Hi,

I have created a roller and mass flow conveyor with the same parameters. The mass flow conveyor is having a width rule with the number of lanes 1.

The conveyors are having the same speed, length, and flow item size. Initially, for some period of time, the throughput remains the same. And after some time there is a difference in the throughput. I believe it should be the same since the mass flow is using a width rule here.

Attaching the model for reference.

MassFlowConveyor.fsm

Regards,

Arun KR




FlexSim 23.2.0
massflowconveyor
· 3
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jordan Johnson avatar image
1 Like"
Jordan Johnson answered Jason Lightfoot edited

As far as I can tell, this is the designed behavior. See this answer for an in-depth explanation:

https://answers.flexsim.com/questions/141949/accuracy-of-conveyor-speed.html

5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jason Lightfoot avatar image
1 Like"
Jason Lightfoot answered Jason Lightfoot edited

Yes - it looks like the regular conveyor has extra gaps between the items.

Change your decimal displayed precision to 6 digits and run this script with items on the conveyors:

  1. applicationcommand("outputconsole");
  2. Conveyor conv=Model.find("StraightConveyor1");
  3. Array convItems=conv.itemData.toArray();
  4. double lastpos=0;
  5. double pos;
  6. for (int n=convItems.length;n>0;n--){
  7. pos=convItems[n].as(Conveyor.Item).position.x;
  8. print(n, " Pitch is: ", pos-lastpos);
  9. lastpos=pos;
  10. }

You'll see the items on the regular conveyor are sometimes 0.2mm apart where there should be no gap. You can even see the gap visually compared to the mass flow conveyor.

conveyoritemgap.gif

I'll send it into the developers for them to consider.


conveyoritemgap.gif (23.1 MiB)
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.