The table below gives the list of arithmetic operators proposed by the Model Exchange Format. Their XML representation is given in the following block of XML text.
Numerical Operations, their number of arguments, and their semantics
Operator | #arguments | Semantics |
---|---|---|
neg | 1 | unary minus |
add | >1 | addition |
sub | >1 | subtraction |
mul | >1 | multiplication |
div | >1 | division |
pi | 0 | 3.1415926535… |
abs | 1 | absolute value |
acos | 1 | arc cosine of the argument in radians |
asin | 1 | arc sine of the argument in radians |
atan | 1 | arc tangent of the argument in radians |
cos | 1 | cosine |
cosh | 1 | hyperbolic cosine |
exp | 1 | exponential |
log | 1 | (Napierian) logarithm |
log10 | 1 | decimal logarithm |
mod | 2 | modulo |
pow | 2 | power |
sin | 1 | sine |
sinh | 1 | hyperbolic sine |
tan | 1 | tangent |
tanh | 1 | hyperbolic tangent |
sqrt | 1 | square root |
ceil | 1 | first integer not less than the argument |
floor | 1 | first integer not greater than the argument |
min | >1 | minimum |
max | >1 | maximum |
mean | >1 | mean |
numerical-operation =
element neg { expression }
| element add { expression+ }
| element sub { expression+ }
| element mul { expression+ }
| element div { expression+ }
| element pi { empty }
| element abs { expression }
| element acos { expression }
| element asin { expression }
| element atan { expression }
| element cos { expression }
| element cosh { expression }
| element exp { expression }
| element log { expression }
| element log10 { expression }
| element mod { expression, expression }
| element pow { expression, expression }
| element sin { expression }
| element sinh { expression }
| element tan { expression }
| element tanh { expression }
| element sqrt { expression }
| element ceil { expression }
| element floor { expression }
| element min { expression+ }
| element max { expression+ }
| element mean { expression+ }
Assume, for instance, we want to associate a negative exponential distribution with a failure rate \lambda = {1.23 \times 10{-4}}h to the basic event “pump-failure”. Using primitives defined above, we can encode explicitly such probability distribution as follows.
<define-basic-event name="pump-failure">
<sub>
<float value="1.0"/>
<exp>
<mul>
<neg>
<parameter name="lambda"/>
</neg>
<system-mission-time/>
</mul>
</exp>
</sub>
</define-basic-event>
<define-parameter name="lambda">
<float value="1.23e-4"/>
</define-parameter>
The following table gives the list of Boolean operators proposed by the Model Exchange Format. Their XML representation is given in the following XML block.
Boolean operators, their number of arguments, and their semantics
Operator | #arguments | Semantics |
---|---|---|
and | >1 | \land |
or | >1 | \lor |
not | 1 | \lnot |
eq | 2 | = |
df | 2 | \neq |
lt | 2 | < |
gt | 2 | > |
leq | 2 | \leq |
geq | 2 | \geq |
Boolean-operation =
element not { expression }
| element and { expression+ }
| element or { expression+ }
| element eq { expression, expression }
| element df { expression, expression }
| element lt { expression, expression }
| element gt { expression, expression }
| element leq { expression, expression }
| element geq { expression, expression }
The Model Exchange Format proposes two conditional operations: an “if-then-else” operation and a “switch/case” operation. The latter is a list of pairs of expressions introduced by the tag “case”. The first expression of the pair should be a Boolean condition. If this condition is realized, then the second expression is evaluated, and its value returned. Otherwise, the next pair is considered.
The list ends with an expression in order to be sure that the switch has always a possible value. The XML representation for conditional operation is given below.
conditional-operation = if-then-else-operation | switch-operation
if-then-else-operation =
element ite { expression, expression, expression }
switch-operation = element switch { case-operation*, expression }
case-operation = element case { expression, expression }
Assume, for instance, we want to give different values to the failure rate “lambda” depending on a global parameter “stress-level”:
"lambda"=1.0e-4/h if "stress-level"=1,
"lambda"=2.5e-4/h if "stress-level"=2, and finally
"lambda"=1.0e-3/h if "stress-level"=3.
The value of “stress-level” will be modified while walking along the sequences of event trees or depending on the initiating event. Using primitives defined so far, we can encode the definition of “lambda” as follows.
<define-parameter name="lambda">
<switch>
<case>
<eq>
<parameter name="stress-level"/>
<int value="1"/>
</eq>
<float value="1.0e-4"/>
</case>
<case>
<eq>
<parameter name="stress-level"/>
<int value="2"/>
</eq>
<float value="2.5e-4"/>
</case>
<float value="1.0e-3"/>
</switch>
</define-parameter>
Built-ins can be seen as macro arithmetic expressions. They are mainly used to simplify the writing of probability distributions. A special built-in “extern-function” makes it possible to define externally calculated built-ins. As for arithmetic operators, more built-ins can be added on demand to the Model Exchange Format. Here follows a preliminary list of built-ins. :numref:table_built_ins
summarizes this preliminary list.
Exponential with two parameters
This built-in implements the negative exponential distribution. The two parameters are the hourly failure rate, usually called \lambda, and the time t.
P(t;\lambda) = 1 - e ^ {- \lambda t}
Exponential with four parameters (Generalized Life Model or GLM)
This built-in generalizes the previous one. It makes it possible to take into account repairable components (through the hourly repairing rate mark style \mu) and failures on demand (through the probability \gamma of such an event). It takes four parameters, \gamma, the hourly failure rate \lambda, \mu, and the time t (in this order).
P(t;\gamma,\lambda,\mu) =
\frac{\lambda}{\lambda + \mu} -
\frac{\lambda - \gamma(\lambda + \mu)}{\lambda + \mu} \times e^{-(\lambda + \mu) t}
Weibull
This built-in implements the Weibull distribution. It takes four parameters: a scale parameter \alpha, a shape parameter \beta, a time shift t_0, and the time t (in this order).
P(t;\alpha,\beta,t_0) = 1 - \exp \left[ -\left(\dfrac{t - t_0}{\alpha}\right) ^ \beta \right]
Periodic Test
In several applications, it is of interest to introduce some specific distributions to describe periodically tested components. A further investigation is certainly necessary on this topic. We tentatively give here a candidate definition (that is extracted from one of the tools we considered).
The “periodic-test” built-in would take the following parameters (in order).
\lambda | failure rate when the component is working. |
\lambda* | failure rate when the component is tested. |
\mu | repair rate (once the test showed that the component is failed). |
\tau | delay between two consecutive tests. |
\theta | delay before the first test. |
\gamma | probability of failure due to the (beginning of the) test. |
\pi | duration of the test. |
\x | indicator of the component availability during the test (1 available, 0 unavailable). |
\sigma | test covering: probability that the test detects the failure, if any. |
\omega | probability that the component is badly restarted after a test or a repair. |
\t | the mission time. |
:numref:fig_periodic_test
illustrates the meaning of the parameters \tau, \theta, and \pi.
Meaning of parameters \tau, \theta, and \pi of the “periodic-test” built-in
There are three phases in the behavior of the component. The first phase corresponds to the time from 0 to the date of the first test, i.e. \theta. The second phase is the test phase. It spreads from times \theta + n\tau to \theta + n\tau + \pi, with n any positive integer. The third phase is the functioning phase. It spreads from times \theta + n\tau + \pi to \theta + (n + 1)\tau.
In the first phase, the distribution is a simple exponential law of parameter \lambda.
The component may enter in the second phase in three states, either working, failed or in repair. In the latter case, the test is not performed. The Markov graphs for each of these cases are pictured in :numref:fig_multi_phase_markov_graph
.
Multi-phase Markov graph for the “periodic-test” built-in
Ai’s, Fi’s, Ri’s states correspond respectively to states where the component is available, failed, and in repair. Dashed lines correspond to immediate transitions. Initial states are respectively A1, F1, and R1.
The situation is simpler in the third phase. If the component enters available this phase, the distribution follows an exponential law of parameter *\lambda. If the component enters failed in this phase, it remains phase up to the next test. Finally, the Markov graph for the case where the component is in repair is the same as in the second phase.
The Model Exchange Format could also provide two simplified forms for the periodic test distribution.
Periodic-test with 5 arguments
The first one takes five parameters: \lambda, \mu, \tau, \theta, and t. In that case, the test is assumed to be instantaneous. Therefore, parameters \lambda* (the failure rate during the test) and x (indicator of the component availability during the test) are meaningless. There other parameters are set as follows.
Periodic-test with 4 arguments
The second one takes only four parameters: \lambda, \tau, \theta, and t. The repair is assumed to be instantaneous (or equivalently the repair rate \mu = {+\infty}).
Extern functions
The Model Exchange Format should provide a mean to call extern functions. This makes it extensible and allows linking the PSA assessment tools with complex tools to calculate physical behavior (like fire propagation or gas dispersion). This call may take any number of arguments and return a single value at once (some interfacing glue can be used to handle the case where several values have to be returned). It has been also suggested that extern function calls take XML terms as input and output. This is probably the best way to handle communication between tools, but it would be far too complex to embed XML into stochastic expressions.
.. tabularcolumns:: |l|l|L|
Built-ins, their number of arguments, and their semantics
Built-in | #arguments | Semantics |
---|---|---|
exponential | 2 | negative exponential distribution with hourly failure rate and time |
GLM | 4 | negative exponential distribution with probability of failure on demand, hourly failure rate, hourly repair rate and time |
Weibull | 4 | Weibull distribution with scale and shape parameters, a time shift and the time |
periodic-test | 11, 5 or 4 | Distributions to describe periodically tested components |
extern-function | any | call to an extern routine |
The RNC schema for the XML representation of built-ins is given in :numref:schema_built_ins
.
exponential = element exponential { expression, expression }
GLM = element GLM { expression, expression, expression, expression }
Weibull = element Weibull { expression, expression, expression, expression }
periodic-test = element periodic-test { expression+ }
extern-function = element extern-function { name, expression* }
Positional versus Named Arguments
We adopted a positional definition of arguments. For instance, in the negative exponential distribution, we assumed that the failure rate is always the first argument, and the mission time is always the second. An alternative way would be to name arguments, i.e., to enclose them into tags explicating their role. For instance, the failure rate would be enclosed in a tag “failure-rate”, the mission time in a tag “time”, and so on. The problem with this second approach is that many additional tags must be defined, and it is not sure that it helps a lot the understanding of the built-ins. Nevertheless, we may switch to this approach if the experience shows that the first one proves to be confusing.
The negative exponential distribution can be encoded as follows.
<define-basic-event name="pump-failure">
<exponential>
<parameter name="lambda"/>
<system-mission-time/>
</exponential>
</define-basic-event>
Primitives to generate random deviates are the real stochastic part of stochastic equations. They can be used in two ways: in a regular context they return a default value (typically their mean value). When used to perform Monte-Carlo simulations, they return a number drawn at pseudo-random according to their type. The Model Exchange Format includes two types of random deviates: built-in deviates like uniform, normal or lognormal, and histograms that are user defined discrete distributions. A preliminary list of distributions is summarized in :numref:table_random_deviates
. As for arithmetic operators and built-ins, this list can be extended on demand.
.. tabularcolumns:: |l|l|L|
Primitive to generate random deviates, their number of arguments, and their semantics
Distribution | #arguments | Semantics |
---|---|---|
uniform-deviate | 2 | uniform distribution between a lower and an upper bounds |
normal-deviate | 2 | normal (Gaussian) distribution defined by its mean and its standard deviation |
lognormal-deviate | 3 or 2 | lognormal distribution defined by its mean, its error factor, and the confidence level of this error factor |
gamma-deviate | 2 | gamma distributions defined by a shape and a scale factors |
beta-deviate | 2 | beta distributions defined by two shape parameters \alpha and \beta |
histograms | any | discrete distributions defined by means of a list of pairs |
Uniform Deviates
These primitives describe uniform distributions in a given range defined by its lower- and upper-bounds. The default value of a uniform deviate is the mean of the range, i.e., (lower-bound + upper-bound)/2.
Normal Deviates
These primitives describe normal distributions defined by their mean and their standard deviation (refer to a text book for a more detailed explanation). By default, the value of a normal distribution is its mean.
Lognormal distribution
These primitives describe lognormal distributions defined by their mean E(x) and their error factor EF. A random variable is distributed according to a lognormal distribution if its logarithm is distributed according to a normal distribution. If \mu and \sigma are respectively the mean and the standard deviation of the associated normal distribution (the variable’s natural logarithm), the probability density of the random variable is as follows.
f(x;\mu,\sigma) = \frac{1}{\sigma x \sqrt{2\pi}} \times
\left[-\frac{1}{2}\left(\frac{\log x - \mu}{\sigma} \right)^2\right]
Its mean, E(x), is defined as follows.
E(x) = \exp\left[\mu + \frac{\sigma^2}{2}\right]
The error factor EF for confidence level \alpha is defined as follows:
EF_\alpha& = \sqrt{\frac{X_\alpha}{X_{1-\alpha}}} = \exp[z_\alpha\cdot\sigma]\\
Where X_\alpha is a left-tailed, upper bound corresponding to the \alpha percentile, and z_\alpha is the left-tailed z-score of the standard normal distribution for the \alpha confidence level. Note that one-sided limits do not form confidence intervals.
z_\alpha& = \sqrt{2} \cdot erf^{-1}(2\alpha - 1)\\
X_\alpha& = \exp[\mu + z_\alpha\cdot\sigma]\\
X_{0.50}& = e^\mu
For example, the error factor for a confidence level of 0.95:
z_{0.95}& = -z_{0.05} = 1.645\\
X_{0.05}& = \exp[\mu - 1.645\sigma]\\
X_{0.95}& = \exp[\mu + 1.645\sigma]\\
EF_{0.95}& = \sqrt{\frac{X_{0.95}}{X_{0.05}}} = \exp[1.645\sigma]
Once the mean and error factor are known for a certain confidence level, it is then possible to determine the distribution parameters of the lognormal law.
\sigma& = \frac{\log EF_\alpha}{z_\alpha}\
\mu& = \log E(x) - \frac{\sigma^2}{2}
Alternatively, these parameters (\mu, \sigma) of the underlying normal distribution can be supplied directly instead of the log-normal mean, error factor, and confidence level. These two parametrization schemes are distinguished by the number of parameters, i.e., 2 instead of 3.
Gamma Deviates
These primitives describe Gamma distributions defined by their shape parameter k and their scale parameter \theta. If k is an integer, then the distribution represents the sum of k exponentially distributed random variables, each of which has mean \theta.
The probability density of the gamma distribution can be expressed in terms of the gamma function:
f(x) = x^{k-1} \frac{e^{-x/\theta}}{\theta^k \Gamma(k)}
The default value of the gamma distribution is its mean, i.e., k\theta.
Beta Deviates
These primitives describe Beta distributions defined by two shape parameters \alpha and \beta.
The probability density of the beta distribution can be expressed in terms of the B function:
f(x;\alpha,\beta)& = \frac{1}{B(\alpha,\beta)}x^{\alpha-1} (1 - x)^{\beta-1}\\
B(x, y)& = \int_{0}^{1} t^{x-1} (1 - t^{y-1}) dt
The default value of the beta distribution is its mean, i.e., \alpha/(\alpha + \beta).
Histograms
Histograms are lists of pairs (x_1, E_1), \ldots, (x_n, E_n), where the x_i’s are numbers such that x_i < x_{i+1} \text{ for } i=1, \ldots, n-1 and the E_i’s are expressions.
The x_i’s represent upper bounds of successive intervals. The lower bound of the first interval x_0 is given apart.
The drawing of a value according to a histogram is a two-step process. First, a value z is drawn uniformly in the range [x_0, x_n]. Then, a value is drawn at random by means of the expression E_i, where i is the index of the interval such that x_{i-1} < z \leq x_i.
\mathbf{E}(X) = \frac{1}{x_n - x_0} \times \sum_{i=1}^{n}(x_i - x_{i-1})\mathbf{E}(E_i)
By default, the value of a histogram is its mean, i.e.,
Both Cumulative Distribution Functions and Density Probability Distributions can be translated into histograms.
A Cumulative Distribution Function is a list of pairs (p_1, v_1), \ldots, (p_n, v_n), where the p_i’s are such that p_i < p_{i+1} \text{ for } i=1, \ldots, n \text{ and } p_n=1. It differs from histograms in two ways. First, X axis values are normalized (to spread between 0 and 1); second, they are presented in a cumulative way. The histogram that corresponds to a Cumulative Distribution Function (p_1, v_1), \ldots, (p_n, v_n) is the list of pairs (x_1, v_1), \ldots, (x_n, v_n), with the initial value x_0 = 0, x_1 = p_1, \text{ and } x_i = p_i - p_{i-1} \text{ for all } i>1.
A Discrete Probability Distribution is a list of pairs (d_1, m_1), \ldots, (d_n, m_n). The d_i’s are probability densities. However, they could be any kind of values. The m_i’s are midpoints of intervals and are such that m_1 < m_2 < \ldots < m_n < 1. The histogram that corresponds to a Discrete Probability Distribution (d_1, m_1), \ldots, (d_n, m_n) is the list of pairs (x_1, d_1), \ldots, (x_n, d_n), with the initial value x_0 = 0, x_1 = 2m_1, \text{ and } x_i = x_{i-1} + 2(m_i - x_{i-1}).
The RNC schema for the XML representation of random deviates is given
uniform-deviate = element uniform-deviate { expression, expression }
normal-deviate = element normal-deviate { expression, expression }
lognormal-deviate =
element lognormal-deviate { expression, expression, expression? }
gamma-deviate = element gamma-deviate { expression, expression }
beta-deviate = element beta-deviate { expression, expression }
histogram = element histogram { expression, bin+ }
bin = element bin { expression, expression }
Assume that the parameter “lambda” of a negative exponential distribution is distributed according to a lognormal distribution of mean 0.001 and error factor 3 for a confidence level of 95%. The parameter “lambda” is then defined as follows.
<define-parameter name="lambda">
<lognormal-deviate>
<float value="0.001"/>
<float value="3"/>
<float value="0.95"/>
</lognormal-deviate>
</define-parameter>
Assume that the parameter “lambda” has been sampled outside of the model and is distributed according to the following histogram.
The XML encoding for “lambda” is as follows.
<define-parameter name="lambda">
<histogram>
<float value="100"/>
<bin> <float value="170"/> <float value="0.70e-4"/> </bin>
<bin> <float value="200"/> <float value="1.10e-4"/> </bin>
<bin> <float value="210"/> <float value="1.30e-4"/> </bin>
<bin> <float value="230"/> <float value="1.00e-4"/> </bin>
<bin> <float value="280"/> <float value="0.50e-4"/> </bin>
</histogram>
</define-parameter>
The Model Exchange Format provides two special directives to test whether a given initiating event occurred and whether a given functional event is in a given state. The meaning of these directives will be further explained in :numref:instructions
.
The table below presents these directives and their arguments.
Directives to test the status of initiating and functional events
Built-in | #arguments | Semantics |
---|---|---|
test-initiating-event | 1 | returns true if the initiating event of the given name occurred. |
test-functional-event | 2 | returns true if the functional event of the given name is in the given state. |
The XML representation for directives to test the status of initiating and functional events is given in :numref:schema_test_event
.
test-initiating-event = element test-initiating-event { name }
test-functional-event =
element test-functional-event {
name,
attribute state { Identifier }
}