开云体育

How to make multiple trains chase each other #automation #dispatcher


 

What is the best way to do this automation? ?My goal is to have trains start from a yard, one after another, go the whole layout and the park back in the yard and rest about 10 minutes. ?I hope to keep about 10 trains running at any time, while another 10 are resting.
?
It’s a large layout. I’ve added block detection throughout the layout, and used the tools to create sections. We have seven layouts all permanently interconnected, so there are multiple routes to make a loop.
?
So, I have started by trying to dispatch a train after I had successfully started another train (automatically run) along a particular transit, but that transit isn’t in the list!
?
Am I going about this in the wrong way? Does this mean I need to create at least 10 transits that use the same sections in the same order?
?
Thanks for any suggestions or advice.


 

Hi
Each train has to start in a seperate section, so you should have 1 transit for each train.
So if you have 20 staged trains parked in sections S1-S20 you have 20 transists? S1->S1, S2->S2 ...... S20->S20.
Steve G.
?


 

开云体育

I have been trying to get 8 trains running in automation on 4 loops for at least 5 years or more and have not succeeded. ?The first issue is mechanical. Can you run the specific engine and cars over the route you want with a throttle ,stopping and starting, changing speeds, for at least 15 minutes without any car or engine coming off the track especially when going over switches. ?If you can then you can run that train over that route for 15 minutes before physical failure. ?

You must have a different transit for every train you run. Each of your 10 transits can have the same sections but each transit ?may require a different starting section. ?I dont know if the same list of sections with a different name will work. ?You have to experiment. But if you have 10 trains in a yard then you have 10 tracks and each track must be its own section and have its own detection. ?You create a section starting at that tracks section ,list the sections in the route you want and finish with the yards starting section. You can tell the transit to end or repeat although i dont know if you repeat wether you can insert a 10 minute delay.

The next issue is how many trains are running at the same time. The best i have done is 4 trains for 5 minutes before software/comuter/loconet failure.

I assume you’re using digitrax and loconet. If you are using something else then everything i say may not be accurate. ?The next problem is digitrax detection bxp88’s. ?I just had 5 of the go bad at a single instant of time and digitrax wants 3-6 months to repair them. One was brand new,recently bought to replace one that went bad. ?So my layout is down for 6 months because the rumor is digitrax got a large batch of bad chips.

The issue is that the jmri automation software can only keep track of the trains if the loconet command occur in the proper order. ?As you increase the no of trains in automation at the same time commands on the loconet can overlap or not get executed. The automation software will slow down a train when it’s 2 sections away from a train in front of it. ? This constant change of speeds of multiple trains can overload the loconet and cause issues in the automation. ?You can by controlling the default speeds keep them the same so the slow down speed is the same as the running speed. You should not use momentum unless the momentum does not cause the train to leave the section it was suppose to stop in. ?If it overruns your automation will fail.

Because of my difficulty in running trains in automation i bought a European program. ‘ITrains’. ? It’s not much better except it’s easier to restart an automated train should it fail. ?Also i was using an older apple mac computer and changed to a latest dell windows computer which seamed to give better results perhaps because its faster.
The issue is both the jmri and iTrains software was written to run one train along a route and not multiple trains in loops as apparantly i am the only one in the world trying to run 8 trains,2 per loop, on an 8x8 n scale layout.

If you succeed please let me know what you did to get 10 trains running at the same time.

Tony





On Mar 17, 2025, at 2:19?PM, Scott Nelson via groups.io <wa6blf@...> wrote:

?
What is the best way to do this automation? ?My goal is to have trains start from a yard, one after another, go the whole layout and the park back in the yard and rest about 10 minutes. ?I hope to keep about 10 trains running at any time, while another 10 are resting.
?
It’s a large layout. I’ve added block detection throughout the layout, and used the tools to create sections. We have seven layouts all permanently interconnected, so there are multiple routes to make a loop.
?
So, I have started by trying to dispatch a train after I had successfully started another train (automatically run) along a particular transit, but that transit isn’t in the list!
?
Am I going about this in the wrong way? Does this mean I need to create at least 10 transits that use the same sections in the same order?
?
Thanks for any suggestions or advice.


 

Scott,
?
? ? ?Make duplicate transits so each train has it's own transit.
?
? ? ?I usually have virtual signals or physical ones look at two blocks ahead so no moving into train ahead.
?
Roger


 

Assuming there are no issues with contiguous blocks, sections verified, and real/virtual signals (if used) working, then:
Each train should have its own transit, even if each follows the same route.
Two trains cannot use the same transit at the same time.
?
As a rule, I always use a traininfo file and transit pair to define a unique train run.
That keeps things from becoming confused.
?
Mostly I use each run as "to safe sections", especially when I have passing movements.
For reversing movements on the main, I sparingly use "as far as".
?
I can't stress enough that you treat each train movement as choreography.
Walk each movement through logically and in concert with every other train's interaction.
Automation is more of a dance routine than just pressing the "go" button and watch what happens.
--
Ken
NYNH&H, Old Colony Division, Cape Cod Branch (1949-1959)
Loconet * JMRI 5.11.1 * OSX,Win10,Ubuntu
Blog: ?
Youtube:


 

Scott,
Based on an example from I thought Dave Sand: transit_chaining.py , with thanks for that,? I wrote a modified script in Python.?
This resulted in two python scripts, controlling my trains.?
First script is Transits_SPV23.py, always running.?
In this script you create a separate transit list for each train. This contains the transit list, the train info file and the waiting time between the transits in seconds. From this file the trains are started by means of a sensor. (Start-train).
Then a separate Python script is started for each train. This script ensures that the trains run automatically under Dispatcher.?If desired you can modify the scripts. For example by replacing the start sensors with a time table.
Enclosed a screen image of layout panel in which train 515_m1 is running.
And also three python scripts as an example. Hope that this will help you.
?
Best regards? Willem
Almere, the Netherlands.?
?
?


 

Thank you, Willem, I’ll take a look at your scripts.


 

I've done this with Dispatcher and SignalMasts using the "Held" state. Each train would release the next train's SignalMast when it completed it's run.
--SteveT


 

Thanks everyone for your input, I now have a lot to ponder and experiment with.
?
Scott