ACS Coupling System

From TrainzOnline
(Difference between revisions)
Jump to: navigation, search
(Coupler Type)
 
m (1 revision)

Revision as of 23:58, 3 February 2010

Contents

Introduction

There are many and varied problems with the existing BlueStar standard - but the main ones are the inflexibility beyond the initial application (coupling mineral wagons and transition era locos), and the rather arcane numeric values put into the config.txt.

A more readable, more flexible, and preferrably easily extensible datastructure in the config.txt was needed, and some way of standardising the logic (at the very minimum, an include file, but preferrably a library). It needed to support many more different types of coupler, vehicles with different couplers on each end, and so on.

The ACS System is an extension of the BlueStar coupling standard for TRS models (effectively BlueStar V2) and provides for the effect of working couplings on rolling stock. From version 5 of the ACSLib ACS vehicles are compatible with older BlueStar/CoupleStar ones.

To add ACS couplings it is necessary to edit the asset config file, add attachment points to the mesh and to create a script or edit the existing one. Due to the fact that you need access to the source files of the asset and to be able to script it is an advanced technique that cannot easily be carried out by an end-user.

The Attachment Points

All of the coupler, hoses and cables are attached to two points, one on the face of the front buffer beam (a.couple0) and one on the face of the rear beam (a.couple1). a.limfront should be 0.46m forward of a.couple0 and a.limback 0.46m rearward of a.couple1. a.couple0 and a.couple1 must be at x=0 and z=0.

Create a.couple0 in top view and move it into position. Then clone and position it to create a.couple1 and rotate it 180°. The Y axis of the two coupler points should point towards 0,0,0.

File:Acs att points

The Config File

First off, here is an example config.txt fragment:

extensions {
  max_permitted_speed-60850 "125mph"
  active-coupling-standard-60850 {
    version-major "2"
    version-minor "0"
    brakes "air"
    front {
      coupler "drop-knuckle"
      gangway "gangway"
      airbrake "twin"
      vacbrake "none"
      multiple-working "none"
      heating-type "electric"
      rch "high"
    }
    back {
      coupler "drop-knuckle"
      gangway "gangway"
      airbrake "twin"
      vacbrake "none"
      multiple-working "none"
      heating-type "electric"
      rch "high"
    }
  }
}

So, what does all this do, and what are the options?

Extension Container

extensions {
  ...
}


This is for TRS2006 compatibility - it's all going in the extensions container. This does work in TRS2004 as well. Watch for the caveat at the end though...

Max Permitted Speed

      Max_Permitted_Speed-60850 "125mph"

Not strictly part of the coupling code, but may as well mention it. This is for the Max Permitted Speed rule to tell how fast this vehicle should be permitted to travel. It will tell both AI drivers and the human driver (via the Custom HUD rule) what the maximum permitted speed is for the train they are driving, based on information from each vehicle. (And in a future version of the rule, more stuff too...)

ACS Container

      active-coupling-standard-60850 {
        ...
      }

This is the container within which all the config information will be held.

ACS Version

        version-major "2"
        version-minor "0"

Version numbers. This is useful when later code needs to read earlier format config files. Should make extending the standard a lot easier.

Braking System

        brakes "air"

Defines what type of braking system is fitted to this vehicle. Options are:

  • "air"
  • "vac"
  • "dual"
  • "none"

This is independant of what hoses are available - unbraked but through piped stock is an entirely possible combination, and is representable.

Position

        front {
          ...
        }
        back {
          ...
        }

Containers for the front and back of the vehicle. 'Front' is defined as "the a.limfront end", and 'back' "the a.limback end". Available options for both are the same, so I'll describe them just once.

Coupler Type

          coupler "drop-knuckle"

What type of coupler do we have on this end of the vehicle? Options are:

  • "fixed-bar"
  • "hook"
  • "3link"
  • "instanter"
  • "screwlink"
  • "drop-knuckle"
  • "swing-knuckle"
  • "fixed-knuckle"
  • "tightlock" -- different to a fixed knuckle, as I'm using this to refer to the ones fitted to multiple units that include electrical connections
  • "wedgelock" -- London Underground specific
  • "bsi"
  • "dellner"
  • "scharfenberg"
  • "retractable-dellner"
  • "(other string identifier)"

Certain types are purely compatible with other identical couplers, others are inter-compatible if the coupler type is specified as "3link|hook" for example - i.e. any hook-and-chain based coupler can couple to anything with a hook, including dropknuckles (coaching stock), swingknuckles (e.g. GMs), and retractable dellners (Virgin 57).

I believe, looking at the diagrams, that Dellner and Scharfenberg couplings are the same design at the business end - just built by different manufacturers. Assuming this is the case, I will be expecting to make them couple, including lowering the retractable dellner...

If any types are missing that are inter-compatible, then give us a shout. (Other types that only connect within type can be added arbitrarily later on via the "other string identifier" method - this involves no code update.)

Gangways

          gangway "gangway"

Passenger gangway between vehicles. Options are:

  • "none"
  • "rubbing-plate"
  • "gangway"

This is really intended for coaching stock - it is assumed that all gangways are compatible. I've been considering a 'one piece' gangway option - to aid with the centre of multiple unit trains, where there is no separation point (it will help with deciding which vehicle should display the gangway) - but I'm not sure whether this is of sufficient benefit to include, as it involves a whole new set of logic here that most people won't use, and for the cases it is interesting, the same person has made both vehicles, and can therefore do it themselves... Comments please.

Pipes for Air Brakes

          airbrake "twin"

Brake pipes for air brakes. Options are:

  • "twin"
  • "single"
  • "none"

Twin is the UK standard two pipe air brake system (train pipe and brake pipe). Single is the US standard air brake system where reservoirs are charged from the brake pipe rather than the train pipe (this has appeared on some modern freightcars for reasons unknown, so is included).

Pipes for Vac Brakes

          vacbrake "none"

Brake pipes for Vacuum brakes. Options are:

  • "twin"
  • "single"
  • "high"
  • "none"

Single is the UK default for fitted stock, high connections seems to be the standard on UK steam locos. Twin pipes (operating at two different vacuum levels) has been tried in the UK - and while not much fitted stock has the twin pipe system, most air brake, through vac piped stock seems to have two vac pipes.

Multiple Working Cables

          multiple-working "none"

Multiple working connections. Options are:

  • "(colour)-(shape)" -- e.g. "blue-star" or "red-diamond", etc
  • "AAR" -- as used on GM locos
  • "SR27" -- bagpipes
  • "(other identifier string e.g. classname)"

Train Heating

          heating-type "electric"

Coach heating. Options are:

  • "none"
  • "steam"
  • "electric" -- standard ETH
  • "dual" -- both Steam and standard ETH*"southern-electric" -- The Southern, who pioneered electric train heating in the UK, fitted heating that was compatible with their DC powered EMUs, and thus ran from the same voltage as the DC power supply. When the rest of BR went ETH, different standards were adopted, resulting in the Southern having a different and incompatible ETH standard...

Lighting Control Cables

          rch "high"

Through wiring for lighting control, to the Railway Clearing House standard. Also used more recently for other things - e.g. remote control via various methods - including TDM. I believe it is also used for signals to control doorlocks on stock so fitted - though I could be wrong on this. Options are:

  • "high" -- positioned as is fairly standard on coaching stock
  • "low" -- positioned as is fairly standard on streamlined locos, e.g. the front of a DVT, or a cl90
  • "none"

Notes

For all of these where "none" is an option, entirely missing out that line is equivalent to stating "none". This should make stock which doesn't use most of the features much more palatable to produce. This will also help when extending the standard - as new features will automatically be assumed to be not present on stock built to older standards...

That's all very well and good, but how is this supposed to be backwards compatible with the old bluestar standard?

I'm making the code fall back to reading the old config entries if it can't find the new ones. The real problem is that new stock will also have to include config.txt entries for the old bluestar, so that old vehicles know what to do when they couple to this one. Yes, this means that the old tags will never actually go away, but at least TRS2006 doesn't whinge about them so hard as of SP1...

The Script

(under construction)

Personal tools