Markov Diagrams: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 74: Line 74:


=Continuous Markov Chain=
=Continuous Markov Chain=
A continuous Markov chain can be viewed as a Markov chain where the transitions between states are defined by (constant) transition rates, as opposed to transition probabilities at fixed steps. It is common to use continuous Markov chains when analyzing system reliability/availability problems.


Because we are no longer performing analysis using fixed probabilities and a fixed step, we are no longer able to simply multiply a state probability vector with a transition matrix in order to obtain new state probabilities after a given step.


* Non-repairable component with failure rate λ
Instead, our problem can be written as a system of ordinary differential equations, where each differential equation represents the change in the probability of being in a particular state:
** P0(t) = P ( at time t component works)
** P1(t) = P ( at time t component is broken)


P0 (t+ ∆ t) = (1- λ ∆ t) P0 (t) +0 P1 (t) Does not fail during ∆ t times
(dP_j)/dt=∑_(l=1)^n▒〖λ_lj P_l 〗-∑_(l=1)^n▒〖λ_jl P_j 〗


P1(t+ ∆ t) = λ ∆ t P0 (t) + 1 P1 (t) since P (Fails in ∆ Time) =1- e<sup>- &lambda;∆t</sup> ≈ 1- (1- <math>\tfrac{\lambda\Delta t}{1!}+\tfrac{(\lambda^2(\Delta t)^2)}{2!}</math>  - …) ≈ &lambda;∆t if ∆t is small
where:


==Method==
*n is the total number of states
The method employed to solve a continuous Markov Chain problem is a modified RK45 Runga-Kutta-Fehlberg, which is an adaptive step size Runga-Kutta method.
*P_j is the probability of being in state j
*P_l is the probability of being in state l
*λ_lj transition rate from state l to state j
*λ_jl transition rate from state j to state l


==User Inputs==
Our initial conditions to solve the differential equations are our initial probabilities for each state.
The user must provide an initial probability for each state and a transition probability between each state. The initial probabilites of all states must add up to exactly 1.0. If a transition probability between states is not given, it is assumed to be zero.


===Symbol Definitions===
As a quick example, let us take a system that can be in one of two states, either working or under repair, and is initially in the working state. The transition rate from working to repair is 0.0001/hour (MTTF of 10,000 hours) and the transition rate from repair to working is 0.01/hour (MTTR of 100 hours). In this case, the two differential equations would look like this:
* α<sub>j,0</sub> is the initial probability of being in state j (given by the user).
* ε is the user defined tolerance (accuracy). Default should be 1e<sup>-5</sup> and can only get smaller.
* λ<sub>l,j</sub> is the transitional failure rate into state w<sub>j</sub> from state w<sub>l</sub>
* w<sub>l</sub> is the probability of being in the state associated with the λ<sub>l,j’s</sub>
* λ<sub>j,k</sub> is the transitional failure rate leaving state w<sub>j</sub> to state w<sub>k</sub>
* f<sub>j</sub> is the change in state probability function (for a given state w<sub>j</sub>):
::[[File:ChgInStateProbFunt.Jpg]]
f<sub>j</sub> is not a function of time, as only constant failure rates are used. This means that the various k values calculated during the RK45 method are only functions of all the w values and the constant failure rates, λ.


The formula for the Runge-Kutta-Fehlberg method (RK45) is given next.
(dP_working)/dt=0.01∙P_repair-0.0001∙P_working


w<sub>0</sub> = α
(dP_repair)/dt=0.0001∙P_working-0.01∙P_repair


k<sub>1</sub> = hf(t<sub>i</sub>, w<sub>i</sub>)
with initial bounds of:


k<sub>2</sub> = hf(t<sub>i</sub>+<math>\tfrac{h}{4}</math>, w<sub>i</sub>+<math>\tfrac{k_1}{4}</math>)
P_working (0)=1


k<sub>3</sub> = hf(t<sub>i</sub>+<math>\tfrac{3h}{8}</math>, w<sub>i</sub>+<math>\tfrac{3}{32}</math>k<sub>1</sub>+<math>\tfrac{9}{32}</math>k<sub>2</sub>)
P_repair (0)=0


k<sub>4</sub> = hf(t<sub>i</sub>+<math>\tfrac{12h}{13}</math>, w<sub>i</sub>+<math>\tfrac{1932}{2197}</math>k<sub>1</sub>-<math>\tfrac{7200}{2197}</math>k<sub>2</sub>+<math>\tfrac{7296}{2197}</math>k<sub>3</sub>)
Solving this system of equations yields the following results:


k<sub>5</sub> = hf(t<sub>i</sub>+h w<sub>i</sub>+<math>\tfrac{439}{216}</math>k<sub>1</sub>-8k<sub>2</sub>+<math>\tfrac{3680}{513}</math>k<sub>3</sub>-<math>\tfrac{845}{4104}</math>k<sub>4</sub>)
P_working=0.01/0.0101+0.0001/0.0101 e^(-(0.0101)t)


k<sub>6</sub> = hf(t<sub>i</sub>+<math>\tfrac{h}{2}</math> w<sub>i</sub>+<math>\tfrac{8}{27}</math>k<sub>1</sub>-2k<sub>2</sub>+<math>\tfrac{3544}{2565}</math>k<sub>3</sub>-<math>\tfrac{1859}{4104}</math>k<sub>4</sub>-<math>\tfrac{11}{40}</math>k<sub>5</sub>)
P_repair=0.0001/0.0101-0.0001/0.0101 e^(-(0.0101)t)


w<sub>i</sub>+1 = w<sub>i</sub>+<math>\tfrac{25}{216}</math>k<sub>1</sub>+<math>\tfrac{1408}{2565}</math>k<sub>3</sub>-<math>\tfrac{2197}{4104}</math>k<sub>4</sub>-<math>\tfrac{1}{5}</math>k<sub>5</sub>)
For more complex analyses, numerical methodologies are preferred. There are many methods, both analytical and numerical, to solve systems of ordinary differential equations. One of these is the Runge-Kutta-Fehlberg method, also known as the RKF45 method, which is a numerical algorithm. This algorithm is practical because one extra calculation allows for the error to be estimated and controlled with the use of an automatic adaptive step size methodology.


w'<sub>i</sub>+1 = w<sub>i</sub>+<math>\tfrac{16}{135}</math>k<sub>1</sub>+<math>\tfrac{6656}{12825}</math>k<sub>1</sub>+<math>\tfrac{28561}{56430}</math>k<sub>4</sub>-<math>\tfrac{9}{50}</math>k<sub>5</sub>-<math>\tfrac{2}{55}</math>k<sub>6</sub>)
The methodology uses a 4th order Runge-Kutta and a 5th order Runge-Kutta, where the former is used for the calculation and the latter is used for the error estimation. The formulas for the method are as follows:


R = <math>\tfrac{1}{h}|</math>w'<sub>i+1</sub>-w<sub>i+1</sub>|
f_j=(dP_j)/dt=∑_(l=1)^n▒〖λ_lj P_l 〗-∑_(l=1)^n▒〖λ_jl P_j 〗


&delta; = 0.84 * <math>\tfrac{\varepsilon}{R}^\tfrac{1}{4}</math>
k_1=hf(t_i,P_(l,i) )


If R≤&epsilon; then keep w as the current step solution and move to the next step with step size &delta;h
k_2=hf(t_i+h/4,P_(l,i)+k_1/4)


If R>&epsilon; then recalculate the current step with step size &delta;h. The above method is for each individual state, and not for the system as a whole. The w is the equivalent of the probability of being in a particular state, where the subscript i represents the time based variation. This still has to be done for all the states in the system, which later on is represented by the subscript j (for each state).
k_3=hf(t_i+3h/8,P_(l,i)+3/32 k_1+9/32 k_2 )


==Detailed Methodology==
k_4=hf(t_i+12h/13,P_(l,i)+1932/2197 k_1-7200/2197 k_2+7296/2197 k_3 )
#Generate an initial step size h from the available failure rates (1% of the smallest MTTF).
#Use the RK45 method on all states simultaneously using the given h. (This means that all states must have their k1 values calculated/used together, then k2, then k3, etc).
#If all calculations are within tolerance, keep results (RK4, so the w without the hat) and increase h to the smallest of the increases generated by the method. If some of the calculations are not within tolerance, decrease the step size to the smallest of the decreases generated by the method and recalculate with the new h. h should not be increased to more than double, so s should have a stipulation on it that forbids from that occurring. Be aware that s may become infinite if the difference between the RK4 and the RK5 is zero. This should be addressed as well with a catch of some sort to make s = 2 in that case. (So basically if s is calculated to be greater than 2 for any state, make it equal to 2 for that state).
#Repeat steps 2 & 3 as necessary.


If there are multiple phases, then steps 1-4 need to be performed for each phase where the initial probability of being in a state is equal to the final value from the previous phase.
k_5=hf(t_i+h,P_(l,i)+439/216 k_1-8k_2+3680/513 k_3-845/4104 k_4 )


This methodology provides the ability to give availability and unavailability metrics for the system, as well as point probabilities of being in a certain state.
k_6=hf(t_i+h/2,P_(l,i)-8/27 k_1+2k_2-3544/2565 k_3+1859/4104 k_4-11/40 k_5 )
For the reliability metrics, the methodology differs in that each unavailable state is considered a "sink." In other words, all transitions from unavailable to available states are ignored. This could be calculated simultaneously with the availability using the same step sizes as generated there.


The two results that need to be stored are the time and the corresponding probability of being in the state for each state.
P_(j,i+1)=P_(j,i)+25/216 k_1+1408/2565 k_3+2197/4104 k_4-1/5 k_5
 
P ̃_(j,i+1)=P_(j,i)+16/135 k_1+6656/12825 k_3+28561/56430 k_4-9/50 k_5+2/55 k_6
 
R=1/h |P ̃_(j,i+1)-P_(j,i+1) |
 
δ=0.84(ϵ/R)^(1/4)
 
if R≤ϵ keep P_(i+1) as the current solution, and move to next step with step size δh
 
if R>ϵ recalculate the current step with step size δh
 
where:
 
*P_j is the probability of being in state j
*P_(l,i) is the probability of being in state l at time i
*λ_lj transition rate from state l to state j
*λ_jl transition rate from state j to state l
*f_j is the change in the probability of being in state P_j (Note that f_j is not a function of time for constant transition rate Markov chains)
*h is the time step size
*t_i is the time at i
*ε is the chosen acceptable error
 
This methodology can then be used for each state at each time step, where a time step is accepted only if the time step size is acceptable for each state in the system.
 
Since continuous Markov chains are often used for system availability/reliability analyses, the continuous Markov chain diagram in BlockSim allows the user the ability to designate one or more states as unavailable states. This allows for the calculation of both availability and reliability of the system.
 
Availability is calculated as the mean probability that the system is in a state that is not an unavailable state.
 
Reliability is calculated in the same manner as availability, with the additional restriction that all transitions leaving any unavailable state are considered to have a transition rate of zero.
 
==Example==
Assume you have a system composed of two generators. The system can be in one of three states:
 
*Both generators are operational
*One generator is operational and the other is under repair
*Both generators are under repair. This is an unavailable state.
 
The system starts in the state in which both generators are operational.
 
We know that the failure rate of a generator is 1 per 2,000 hours, and the repair rate is 1 per 200 hours.
 
Therefore:
 
*The transition rate from the state in which both generators are operational to the state where only one is operational is 1 per 1000 hours.
*The transition rate from the state in which one generator is operational to the state where both generators are operational is 1 per 200 hours.
*The transition rate from the state in which one generator is operational to the state where both generators are under repair is 1 per 2000 hours.
*The transition rate from the state in which both generators are under repair to the state where one generator is operational is 1 per 100 hours.
 
We would like to know the mean availability of our system after 20,000 hours for all three states so that we can estimate our output based on time spent at full, half and zero generator capacity.
 
Solving this system by hand using the RKF45 method would be very time consuming, so we will turn to BlockSim to help us solve this problem using a continuous Markov diagram. After creating the diagram, adding the states and the transition rates, the final diagram looks like this:
 
xxx
Once the diagram is complete, the analysis is set for 20,000 hours. The comparison between the mean probabilities of the states can be done using a bar graph, or by looking at the diagram result summary.
 
xxx
 
xxx
 
From the Mean Probability column, we can see that the system is expected to be fully operational 82.8% of the time, half operational 16.4% of the time, and non-operational 0.8% of the time.
 
From the Point Probability (Av) column, we can get the point probability of being in a state when all transitions are considered. From the Point Probability (Rel) column, we can get the point probability of being in a state if we assume that there is no return from unavailable states, or in other words we are assuming no repair once the system has entered an unavailable (failed) state. Using the “non-repair” assumption, there is only an 18.0% chance that the system would still be fully operational, a 3.3% chance that it would be half operational and a 78.7% chance that it would be non-operational.

Revision as of 18:52, 5 February 2016

Template:InProgress

New format available! This reference is now available in a new format that offers faster page load, improved display for calculations and images, more targeted search and the latest content available as a PDF. As of September 2023, this Reliawiki page will not continue to be updated. Please update all links and bookmarks to the latest reference at help.reliasoft.com/reference/system_analysis

Chapter 11: Markov Diagrams


BlockSimbox.png

Chapter 11  
Markov Diagrams  

Synthesis-icon.png

Available Software:
BlockSim

Examples icon.png

More Resources:
BlockSim examples

The term "Markov Chain," invented by Russian mathematician Andrey Markov, is used across many applications to represent a stochastic process made up of a sequence of random variables representing the evolution of a system. Events are "chained" or "linked" serially together though memoryless transitions from one state to another. The term "memoryless" is used because past events are forgotten, as they are irrelevant; an event or state is dependent only on the state or event that immediately preceded it.

Concept and Methodology

The concept behind the Markov chain method is that given a system of states with transitions between them, the analysis will give the probability of being in a particular state at a particular time. If some of the states are considered to be unavailable states for the system, then availability/reliability analysis can be performed for the system as a whole.

Depending on the transitions between the states, the Markov chain can be considered to be a discrete Markov chain, which has a constant probability of transition per unit step, or a continuous Markov chain, which has a constant rate of transition per unit time.

Discrete Markov Chains

A discrete Markov chain can be viewed as a Markov chain where at the end of a step, the system will transition to another state (or remain in the current state), based on fixed probabilities. It is common to use discrete Markov chains when analyzing problems involving general probabilities, genetics, physics, etc. To represent all the states that the system can occupy, we can use a vector ▁X:

▁X(0)=(■(X_1&X_2&⋯&X_i ))

where the term X_i represents the probability of the system being in state i and with:

∑_(i=1)^n▒X_i =1

The transitions between the states can be represented by a matrix ▁P:

▁P=(■(P_11&P_12&⋯&P_1i@P_21&P_22&⋯&P_2i@⋮&⋮&⋱&⋮@P_i1&P_i2&⋯&P_ii ))

where, for example, the term P_12 is the transition probability from state 1 to state 2, and for any row m with i states:

∑_(j=1)^i▒P_mj =1

To determine the probability of the system being in a particular state after the first step, we have to multiply the initial state probability vector ▁X(0) with the transition matrix ▁P:

▁X (1)=▁X(0)∙▁P

This will give us the state probability vector after the first step, ▁X(1).

If one wants to determine the probabilities of the system being in a particular state after n steps, the Chapman-Kolmogorov equation can be used. This equation states that the probabilities of being in a state after n steps can be calculated by taking the initial state vector and multiplying by the transition matrix to the nth power, or:

▁X (n)=▁X (0)∙▁P^n

Example

Take a system that can be in any one of three states-- operational, standby or offline-- at a given time, and starts in the standby state.

After each step:

  • If the system is in the operational state, there is a 20% chance that it moves to the standby state, and a 5% chance that it goes offline.
  • If it is in the standby state, there is a 40% chance that it becomes operational, and a 1% chance that it goes offline.
  • If it is in the offline state, there is a 15% chance that it becomes operational, and a 50% chance that it moves to the standby state.

We want to know the probability that it is offline after 10 steps.

First, we must create the state probability vector at time equal to zero, which in this case is:

▁X(0)=(■(0&1&0))

Then, we can create the transition matrix to represent all the various transition probabilities between states:

▁P=(■(0.75&0.20&[email protected]&0.59&[email protected]&0.50&0.35))

Lastly, we can calculate the state probabilities after 10 steps using the Chapman-Kolmogorov equation:

▁X (10)=▁X (0)∙▁P^10

or:

▁X (10)=(■(0&1&0))∙(■(0.75&0.20&[email protected]&0.59&[email protected]&0.50&0.35))^10

resulting in :

▁X (10)=(■(0.596&0.353&0.051))

We can also plot the point probabilities of each state at each step if we calculate the state probabilities after each step:

Discrete markov state point probability plot.png

From the plot, we can also determine that the probabilities of being in a state reach steady-state after about 6 steps.

Continuous Markov Chain

A continuous Markov chain can be viewed as a Markov chain where the transitions between states are defined by (constant) transition rates, as opposed to transition probabilities at fixed steps. It is common to use continuous Markov chains when analyzing system reliability/availability problems.

Because we are no longer performing analysis using fixed probabilities and a fixed step, we are no longer able to simply multiply a state probability vector with a transition matrix in order to obtain new state probabilities after a given step.

Instead, our problem can be written as a system of ordinary differential equations, where each differential equation represents the change in the probability of being in a particular state:

(dP_j)/dt=∑_(l=1)^n▒〖λ_lj P_l 〗-∑_(l=1)^n▒〖λ_jl P_j 〗

where:

  • n is the total number of states
  • P_j is the probability of being in state j
  • P_l is the probability of being in state l
  • λ_lj transition rate from state l to state j
  • λ_jl transition rate from state j to state l

Our initial conditions to solve the differential equations are our initial probabilities for each state.

As a quick example, let us take a system that can be in one of two states, either working or under repair, and is initially in the working state. The transition rate from working to repair is 0.0001/hour (MTTF of 10,000 hours) and the transition rate from repair to working is 0.01/hour (MTTR of 100 hours). In this case, the two differential equations would look like this:

(dP_working)/dt=0.01∙P_repair-0.0001∙P_working

(dP_repair)/dt=0.0001∙P_working-0.01∙P_repair

with initial bounds of:

P_working (0)=1

P_repair (0)=0

Solving this system of equations yields the following results:

P_working=0.01/0.0101+0.0001/0.0101 e^(-(0.0101)t)

P_repair=0.0001/0.0101-0.0001/0.0101 e^(-(0.0101)t)

For more complex analyses, numerical methodologies are preferred. There are many methods, both analytical and numerical, to solve systems of ordinary differential equations. One of these is the Runge-Kutta-Fehlberg method, also known as the RKF45 method, which is a numerical algorithm. This algorithm is practical because one extra calculation allows for the error to be estimated and controlled with the use of an automatic adaptive step size methodology.

The methodology uses a 4th order Runge-Kutta and a 5th order Runge-Kutta, where the former is used for the calculation and the latter is used for the error estimation. The formulas for the method are as follows:

f_j=(dP_j)/dt=∑_(l=1)^n▒〖λ_lj P_l 〗-∑_(l=1)^n▒〖λ_jl P_j 〗

k_1=hf(t_i,P_(l,i) )

k_2=hf(t_i+h/4,P_(l,i)+k_1/4)

k_3=hf(t_i+3h/8,P_(l,i)+3/32 k_1+9/32 k_2 )

k_4=hf(t_i+12h/13,P_(l,i)+1932/2197 k_1-7200/2197 k_2+7296/2197 k_3 )

k_5=hf(t_i+h,P_(l,i)+439/216 k_1-8k_2+3680/513 k_3-845/4104 k_4 )

k_6=hf(t_i+h/2,P_(l,i)-8/27 k_1+2k_2-3544/2565 k_3+1859/4104 k_4-11/40 k_5 )

P_(j,i+1)=P_(j,i)+25/216 k_1+1408/2565 k_3+2197/4104 k_4-1/5 k_5

P ̃_(j,i+1)=P_(j,i)+16/135 k_1+6656/12825 k_3+28561/56430 k_4-9/50 k_5+2/55 k_6

R=1/h |P ̃_(j,i+1)-P_(j,i+1) |

δ=0.84(ϵ/R)^(1/4)

if R≤ϵ keep P_(i+1) as the current solution, and move to next step with step size δh

if R>ϵ recalculate the current step with step size δh

where:

  • P_j is the probability of being in state j
  • P_(l,i) is the probability of being in state l at time i
  • λ_lj transition rate from state l to state j
  • λ_jl transition rate from state j to state l
  • f_j is the change in the probability of being in state P_j (Note that f_j is not a function of time for constant transition rate Markov chains)
  • h is the time step size
  • t_i is the time at i
  • ε is the chosen acceptable error

This methodology can then be used for each state at each time step, where a time step is accepted only if the time step size is acceptable for each state in the system.

Since continuous Markov chains are often used for system availability/reliability analyses, the continuous Markov chain diagram in BlockSim allows the user the ability to designate one or more states as unavailable states. This allows for the calculation of both availability and reliability of the system.

Availability is calculated as the mean probability that the system is in a state that is not an unavailable state.

Reliability is calculated in the same manner as availability, with the additional restriction that all transitions leaving any unavailable state are considered to have a transition rate of zero.

Example

Assume you have a system composed of two generators. The system can be in one of three states:

  • Both generators are operational
  • One generator is operational and the other is under repair
  • Both generators are under repair. This is an unavailable state.

The system starts in the state in which both generators are operational.

We know that the failure rate of a generator is 1 per 2,000 hours, and the repair rate is 1 per 200 hours.

Therefore:

  • The transition rate from the state in which both generators are operational to the state where only one is operational is 1 per 1000 hours.
  • The transition rate from the state in which one generator is operational to the state where both generators are operational is 1 per 200 hours.
  • The transition rate from the state in which one generator is operational to the state where both generators are under repair is 1 per 2000 hours.
  • The transition rate from the state in which both generators are under repair to the state where one generator is operational is 1 per 100 hours.

We would like to know the mean availability of our system after 20,000 hours for all three states so that we can estimate our output based on time spent at full, half and zero generator capacity.

Solving this system by hand using the RKF45 method would be very time consuming, so we will turn to BlockSim to help us solve this problem using a continuous Markov diagram. After creating the diagram, adding the states and the transition rates, the final diagram looks like this:

xxx

Once the diagram is complete, the analysis is set for 20,000 hours. The comparison between the mean probabilities of the states can be done using a bar graph, or by looking at the diagram result summary.

xxx

xxx

From the Mean Probability column, we can see that the system is expected to be fully operational 82.8% of the time, half operational 16.4% of the time, and non-operational 0.8% of the time.

From the Point Probability (Av) column, we can get the point probability of being in a state when all transitions are considered. From the Point Probability (Rel) column, we can get the point probability of being in a state if we assume that there is no return from unavailable states, or in other words we are assuming no repair once the system has entered an unavailable (failed) state. Using the “non-repair” assumption, there is only an 18.0% chance that the system would still be fully operational, a 3.3% chance that it would be half operational and a 78.7% chance that it would be non-operational.