The general steps for implementing a Monte Carlo simulation using Simple
Random Sampling are as follows: - Identify the random variables. Assume appropriate distributions, and
define properties for each (mean, standard deviation, or coefficient
of variation).
- Specify the number of simulations to be executed (often 1,000; however,
10,000 or more simulations are necessary for accurate prediction of response
statistical properties).
- Generate uniformly distributed random numbers for each random variable.
- Convert each uniform random number to a random variable value corresponding
to the appropriate distribution.
- Simulate the design/process (execute system analysis) using the current
values for random variables and the design variables.
- Repeat Step 3 through Step 5 for the number of simulations specified
in Step 2.
- Perform postprocessing by analyzing statistics of responses (mean,
standard deviation, range, distribution shape), and evaluate/rank the
random variable effects.
|