Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
Search
Signal Mast Logic
#sml
Hi All,
?
I have added the panel file ?exhib.xml to the David Smith folder in ProblemsBeingWorked?
There are some issues with some of the signal masts.
Could someone please advise what the problem may be ? ?
Buffer masts Mst_Buff_SdS4, Mst_Buff_SdS5, Mst_Buff_SdS6 are set to Unknown
?
Mst_SE3, Mst_SE2, Mst_SW3e, Mst_SW3f, Mst_W4 signal logic does not see other masts correctly
( I am aware that I could fix the issues by manually editing the signal logic but would prefer not to ) ?
Can I also please ask, if ?I add a mast that is not visible on the panel, is there a way to see or edit it afterwards ?
?
Also, can I ask why all of the signal heads appear in the Turnouts table ?
?
Thanks
Dave
|
On 3/19/2025 7:43 AM, David Smith via groups.io wrote:
Can I also please ask, if ?I add a mast that is not visible on the panel, is there a way to see or edit it afterwards ?Sure there is. "Tools"->"Tables"->"Signals"->"Signal Masts" . Or "Tools"->"Tables"->"Signals"->"Signal Mast Logic" . As appropriate. Also, can I ask why all of the signal heads appear in the Turnouts table ?It depends on how you have defined the signals. If you build a JMRI "Signal Head" or a JMRI "Signal Mast" using individual JMRI "Turnout"s, by definition JMRI _must_ define the turnouts before it can use those "Turnout"s. (This goes back to the original NMRA DCC specifications where where the only way to control anything of an "accessory" nature was via a DCC turnout. JMRI followed this assumption. And the majority of Signal hardware uses that same assumption. Where a hardware signaling device _does not_ use a DCC "Turnout" address, that device will generally not use a JMRI "Turnout".) |
If it helps when looking at the panel, the script below will initalise all the sensors and points to a known value.
?
import jmri
vSnsLst=['V_E1a', 'V_E1b','V_E2a','V_E2b','V_E2c','V_E3a','V_E3b','V_E3c','V_E4',\
? ? ? ? ?'V_NE1a','V_NE1b','V_NE1c','V_NE2a','V_NE2b','V_NE2c','V_NE2d',\ ? ? ? ? ?'V_NE3a','V_NE3b','V_NE3c','V_NE3d','V_NE4a','V_NE4b','V_NE4c','V_NE4d',\ ? ? ? ? ?'V_NW1a','V_NW1b','V_NW2','V_NW3','V_NW4a','V_NW4b',\ ? ? ? ? ?'V_SE1a','V_SE1b','V_SE2a','V_SE2b','V_SE3a','V_SE3b',\ ? ? ? ? ?'V_SE4a','V_SE4b','V_SE5a','V_SE5b','V_SE6a','V_SE6b',\ ? ? ? ? ?'V_SW1a','V_SW1b','V_SW1c','V_SW1d','V_SW1e','V_SW1f',\ ? ? ? ? ?'V_SW2a','V_SW2b','V_SW2c','V_SW2d','V_SW2e','V_SW2f',\ ? ? ? ? ?'V_SW3a','V_SW3b','V_SW3c','V_SW3d','V_SW3e','V_SW3f',\ ? ? ? ? ?'V_SW4a','V_SW4b','V_SW4c','V_SW4d','V_SW4e','V_SW4f',\ ? ? ? ? ?'V_SdE','V_SdN3a','V_SdN3b','V_SdN4a','V_SdN4b','V_SdN5a','V_SdN5b',\ ? ? ? ? ?'V_SdNE1a','V_SdNE1b','V_SdNE2a','V_SdNE2b',\ ? ? ? ? ?'V_SdNW1a','V_SdNW1b','V_SdNW2a','V_SdNW2b',\ ? ? ? ? ?'V_SdNxa','V_SdNxb','V_SdNxc','V_SdNxd','V_SdNxe',\ ? ? ? ? ?'V_SdS1a','V_SdS1b','V_SdS2a','V_SdS2b','V_SdS3a','V_SdS3b',\ ? ? ? ? ?'V_SdS4a','V_SdS4b','V_SdS5a','V_SdS5b','V_SdS6a','V_SdS6b',\ ? ? ? ? ?'V_W1a','V_W1b','V_W1c','V_W1d','V_W1e',\ ? ? ? ? ?'V_W2','V_W3','V_W4a','V_W4b'] for sns in vSnsLst:
?sensors.provideSensor(sns).setState(4) print '## All Sensors initialised to Inactive ##' ptLst=['Pt_E1_NE1','Pt_E1_SE1','Pt_E1_SdN','Pt_E2_SE3','Pt_E3_SE5',\
? ? ? ?'Pt_NE1_NE2','Pt_NE2_NE1','Pt_NE2_NE3','Pt_NE3_NE4','Pt_NE4_NE3','Pt_NE4_SdNa','Pt_NE4_SdNb','Pt_NE4_SdNc',\ ? ? ? ?'Pt_SE1_SdS1','Pt_SE1_SdS2','Pt_SE1_SdS3','Pt_SE6_SdS4','Pt_SE6_SdS5','Pt_SE6_SdS6',\ ? ? ? ?'Pt_SW1_SW2','Pt_SW2_SE3','Pt_SW2_SW1','Pt_SW2_SW3','Pt_SW3_SE5','Pt_SW3_SW4','Pt_SW4_SW3',\ ? ? ? ?'Pt_W1_SdNa','Pt_W1_SdNb','Pt_W4_SdNa','Pt_W4_SdNb','Pt_W4_SdNc'] class ds_init_pts(jmri.jmrit.automat.AbstractAutomaton):
? def handle(self): ? ? for pt in ptLst: ? ? ? turnouts.provideTurnout(pt).setState(2) ? ? ? self.waitMsec(200) ? ? print '## All Points initialised to Closed ##' ? ? return False a=ds_init_pts()
a.start() |
David, Step 1: ?Use the Layout Editor "Tools -> Check" menu items to clean up the non-contiguous blocks. Step 2: ?Run the GrandReset.py script. ?This will delete all of the transits, sections, SML and block paths. ?After doing a Store and re-start, use "Auto Generate Signaling Pairs" in the Signal Mast Logic table menu to create new SML. I have not looked at all of the signals yet, but it appears that the inner loop signals are all set for counter clockwise traffic. ?If so, that explains why the buffer signals have no SML. ?There is no source signal for clockwise traffic. Dave Sand ----- Original message ----- From: "David Smith via groups.io" <daversmth=[email protected]> Subject: [jmriusers] Signal Mast Logic Date: Wednesday, March 19, 2025 6:43 AM Hi All, ? I have added the panel file ?exhib.xml to the David Smith folder in ProblemsBeingWorked? There are some issues with some of the signal masts. Could someone please advise what the problem may be ? ? Buffer masts Mst_Buff_SdS4, Mst_Buff_SdS5, Mst_Buff_SdS6 are set to Unknown ? Mst_SE3, Mst_SE2, Mst_SW3e, Mst_SW3f, Mst_W4 signal logic does not see other masts correctly ( I am aware that I could fix the issues by manually editing the signal logic but would prefer not to ) ? Can I also please ask, if ?I add a mast that is not visible on the panel, is there a way to see or edit it afterwards ? ? Also, can I ask why all of the signal heads appear in the Turnouts table ? ? Thanks Dave |
Hi
?
Thank you so much for your help with this.
It is very much appreciated.
?
I have just uploaded the latest exhib1.xml file to the same location.
?
Most issues are now solved but there are still a few minor issues remaining.
?
1. Tools check non-contiguous blocks highlights 6 errors.
Removing and re-adding those blocks does not solve the issue.
It would be good to fix the errors but they do not seem to be causing a problem.
?
2. Three of the buffer stop masts show an unknown state.
?
3. Related to 2. above, i have tried to add a mast at the anchor point A21 between Tr_SE6a and Tr_SW4f (to control movement in the reverse direction into the sidings ) but the SML generated for that mast is totally wrong.
I could generate the SML manually if the buffer masts worked.
?
Note that I am not concerned about the Masts Mst_SdS[1-6]
I will control them by scripting rather than SML.
I have attached these masts to the points in order to place them ( for display purposes only) onto the panel.
Is that the correct way to add masts that are for display only and play no part in SML ?
?
? |
David, Fixing the block continuity errors is required. You have two choices.
This will eliminate the warnings and errors in the system console.
Your attempt to add a reverse move signal mast will not work due to the above issue. ?Also, I don't see a signal mast for the reverse move. Any signal mast attached to a block boundary is automatically included in the SML calculations. Dave Sand ----- Original message ----- From: "David Smith via groups.io" <daversmth=[email protected]> Subject: Re: [jmriusers] Signal Mast Logic #sml Date: Thursday, March 20, 2025 4:11 AM Hi ? Thank you so much for your help with this. It is very much appreciated. ? I have just uploaded the latest exhib1.xml file to the same location. ? Most issues are now solved but there are still a few minor issues remaining. ? 1. Tools check non-contiguous blocks highlights 6 errors. Removing and re-adding those blocks does not solve the issue. It would be good to fix the errors but they do not seem to be causing a problem. ? 2. Three of the buffer stop masts show an unknown state. ? 3. Related to 2. above, i have tried to add a mast at the anchor point A21 between Tr_SE6a and Tr_SW4f (to control movement in the reverse direction into the sidings ) but the SML generated for that mast is totally wrong. I could generate the SML manually if the buffer masts worked. ? Note that I am not concerned about the Masts Mst_SdS[1-6] I will control them by scripting rather than SML. I have attached these masts to the points in order to place them ( for display purposes only) onto the panel. Is that the correct way to add masts that are for display only and play no part in SML ? ? ? |
to navigate to use esc to dismiss