Hi,
Is it correct that setting the property Speed on a MassFlowConveyor does not change the actual speed the MassFlowConveyor is using?
This does not work:
Object conveyor = Model.find("MFC2"); conveyor.setProperty( "Speed", 2 );
This does work:
Conveyor conveyor = Model.find("MFC3"); conveyor.targetSpeed = 2;
Attached is a simple example model. The first conveyor is at 1m/s and stays at 1 m/s, where the 2nd is changed by setting the property and the third is changed by setting the targetSpeed.
Thanks,
ChangeSpeedMassFlowConveyor.fsm