Home » railML newsgroups » railml.rollingstock » Different ways to model tractive effort (How to enter discrete, hyperbolic or quadratic tractive effort curves?)
Different ways to model tractive effort [message #2155] Tue, 26 February 2019 09:40 Go to next message
Laura Isenhoefer is currently offline  Laura Isenhoefer
Messages: 1
Registered: February 2019
Junior Member
Hi,

Jernbanedirektoratet has the need to define the tractive effort of an engine in a more flexible way than it is possible right now. Our aim is to cater for all the needs that our different tools have and ideally allow for a lossless transfer from one railML-file to each of the tools.

In general, our tools seem to use 3 different approaches:

1) Discrete value table: same as railML-value table. Each pair of speed and tractive effort get one entry, values between the given value pairs need to be interpolated (linear). Accuracy is user-defined.

2) Hyperbolic curves: the curve of the tractive effort curve is defined by a hyperbola. All you need to know are the coordinates of the start and the end point of the hyperbola and with the the equasion F=P/v (+c) you will be able to interpolate every point on the hyperbola. Additionally to the given value pairs there's the need to specify if those points should be connected linear or hyperbolic, which can currently not be done in railML. (But could probably be done easily with a simple extension).

3) Quadratic curves: The tractive effort can also be given by the following equasion: Z=(b_0+b_1∗v+b_2∗v^2 )∗g. This equasion allows to precisely define the tractive effort for both the linear part as well as the curve, by giving b0, b1 and b2 (for different intervals). This could e.g. be implemented by using different z-values in the railML-value table to define the bi for the different speed-intervals.

As mentioned above, we would love to find a solution that allows all 3 possibilities, so that we are able to enter the tractive effort into all of our tools we use.
Mathml does not seem to be the solution here, since it does not seem to be able to unambiguosly define those equasions or tables.

One of our suggestions would be to have a table with 6 columns, so that each reading system can pick the values it needs:
(speed | tractive effort | linear/hyperbolic? | b0 | b1 | b2)

We're happy to hear other suggestions. The solution could first be a Norwegian extension and later be implemented into railML2.5.

Best regards,
Laura
Re: Different ways to model tractive effort [message #2156 is a reply to message #2155] Tue, 26 February 2019 10:53 Go to previous messageGo to next message
Joerg von Lingen is currently offline  Joerg von Lingen
Messages: 148
Registered: May 2011
Senior Member
Hi,

in our old tools we a mechanism to describe such curves per (speed) interval just marking the type and possible coefficents.

1) Polynom F=A+B*v+C*v²+D*v³ - by choosing the coefficents A, B, C and D one can describe a wide range of different
curves from just konstant to more complex ones

2) Hyperbolic F=A/v - hyperbolic curve is used for intervals with constant power (A) diveded by speed

3) Quadratic F=(A*v1)/v² - quadratic curve is used for intervals (start at v1) with field weakening from power (A)

This principles I had in mind when I presented in Nov. 2003 a possible representation in MathML - refer attachment.

Regards,
Jörg von Lingen, Rollingstock coordinator


Laura Isenhoefer wrote on 26.02.2019 09:40:
> Hi,
>
> Jernbanedirektoratet has the need to define the tractive
> effort of an engine in a more flexible way than it is
> possible right now. Our aim is to cater for all the needs
> that our different tools have and ideally allow for a
> lossless transfer from one railML-file to each of the tools.
>
>
> In general, our tools seem to use 3 different approaches:
>
> 1) Discrete value table: same as railML-value table. Each
> pair of speed and tractive effort get one entry, values
> between the given value pairs need to be interpolated
> (linear). Accuracy is user-defined.
>
> 2) Hyperbolic curves: the curve of the tractive effort curve
> is defined by a hyperbola. All you need to know are the
> coordinates of the start and the end point of the hyperbola
> and with the the equasion F=P/v (+c) you will be able to
> interpolate every point on the hyperbola. Additionally to
> the given value pairs there's the need to specify if those
> points should be connected linear or hyperbolic, which can
> currently not be done in railML. (But could probably be done
> easily with a simple extension).
>
> 3) Quadratic curves: The tractive effort can also be given
> by the following equasion: Z=(b_0+b_1∗v+b_2∗v^2 )∗g.
> This equasion allows to precisely define the tractive effort
> for both the linear part as well as the curve, by giving b0,
> b1 and b2 (for different intervals). This could e.g. be
> implemented by using different z-values in the railML-value
> table to define the bi for the different speed-intervals.
>
> As mentioned above, we would love to find a solution that
> allows all 3 possibilities, so that we are able to enter the
> tractive effort into all of our tools we use.
> Mathml does not seem to be the solution here, since it does
> not seem to be able to unambiguosly define those equasions
> or tables.
>
> One of our suggestions would be to have a table with 6
> columns, so that each reading system can pick the values it
> needs:
> (speed | tractive effort | linear/hyperbolic? | b0 | b1 |
> b2)
>
> We're happy to hear other suggestions. The solution could
> first be a Norwegian extension and later be implemented into
> railML2.5.
>
> Best regards,
> Laura
>
Re: Different ways to model tractive effort [message #2158 is a reply to message #2156] Tue, 05 March 2019 14:20 Go to previous messageGo to next message
Thomas Nygreen JBD is currently offline  Thomas Nygreen JBD
Messages: 68
Registered: February 2017
Member
Dear all,

The current railML2 valueTable could support any of the segmented functions listed by Laura and Jörg, if we for each row apply the formula
F = Sum ( y_z * v^z ) for all z

where each value for z is given by columnHeader@zValue.

If no column header is found and only one column is given, we would assume z = 0, meaning that F = y. This allows programs to keep listing the tractive effort for small speed steps.

This approach would support any polynomial function, such as constant (only z=0), linear (0 and 1), quadratic (0, 1, 2) and cubic (0, 1, 2, 3), the simple hyperbolic (-1, 0) and quadratic hyperbolic (-2) listed by Laura and Jörg, and other simple rational functions where there is no shift of the x variable.


Best regards,
Thomas Nygreen
Railway capacity engineer
Jernbanedirektoratet
Re: Different ways to model tractive effort [message #2477 is a reply to message #2158] Wed, 01 July 2020 08:32 Go to previous messageGo to next message
Joerg von Lingen is currently offline  Joerg von Lingen
Messages: 148
Registered: May 2011
Senior Member
Dear all,

I have transfered the issue into ticket #385 to be implemented in railML 2.5.

The suggestion is to add an alternative element "segmentTable" used instead of
"valueTable". Basically this table is similar build as the known valueTable with
some exceptions and a different way of interpretation.

The zValue (here "exponentValue") is of type integer and shall be taken as
exponent to the xValue (here "segmentStartValue"). The latter one marks the
start of an intervall or segment in the curve. The maximum xValue shall be
derived from the "speed" attribute of the vehicle. The yValue (here
"coefficentValue") is the value of each coefficent to be multiplied with xValue
to the power of zValue. The total of all calculated values of the line gives
real value need. Thus it follows the formula F = Sum ( y * x^z).

The sample of the original data, the schema definition and the representation in
railML are shown in the attached pictures.


Best regards,
Joerg v. Lingen - Rollingstock Coordinator
Re: Different ways to model tractive effort [message #2513 is a reply to message #2477] Wed, 19 August 2020 15:48 Go to previous messageGo to next message
Thomas Nygreen is currently offline  Thomas Nygreen
Messages: 66
Registered: March 2008
Member
Dear all,

I think Jörg's proposal is good.

Best regards,
Thomas Nygreen - Common schema coordinator, railML.org


Thomas Nygreen – Common Schema Coordinator
railML.org (Registry of Associations: VR 5750)
Altplauen 19h; 01187 Dresden; Germany www.railML.org
Re: Different ways to model tractive effort [message #2534 is a reply to message #2158] Mon, 14 September 2020 09:13 Go to previous message
Joerg von Lingen is currently offline  Joerg von Lingen
Messages: 148
Registered: May 2011
Senior Member
Dear all,

it has been implemented for railML2.5 and described in wiki http://wiki2.railml.org/wiki/RS:segmentTable_tractiveEffort

--
Regards,
Jörg von Lingen - Rollingstock Coordinator

Thomas Nygreen wrote on 05.03.2019 14:20:
> Dear all,
>
> The current railML2 valueTable could support any of the
> segmented functions listed by Laura and Jörg, if we for
> each row apply the formula
> F = Sum ( y_z * v^z ) for all z
> where each value for z is given by columnHeader@zValue.
>
> If no column header is found and only one column is given,
> we would assume z = 0, meaning that F = y. This allows
> programs to keep listing the tractive effort for small speed
> steps.
>
> This approach would support any polynomial function, such as
> constant (only z=0), linear (0 and 1), quadratic (0, 1, 2)
> and cubic (0, 1, 2, 3), the simple hyperbolic (-1, 0) and
> quadratic hyperbolic (-2) listed by Laura and Jörg, and
> other simple rational functions where there is no shift of
> the x variable.
>
Previous Topic: railML3: vehicle vs. vehiclePart - needed attributes
Next Topic: Infrastructure data for a train path finding tool
Goto Forum:
  


Current Time: Tue Apr 16 22:46:57 CEST 2024