Skip to content

Commit

Permalink
update 2
Browse files Browse the repository at this point in the history
  • Loading branch information
agoussia committed Oct 12, 2015
1 parent d60b9bd commit a072bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ func main() {
*/
```
***
#### Example 6. Bank. Sngle Run, FIFO Queue, Parallel Resources, StatCollection
#### Example 6. Bank. Sngle Run, FIFO Queue, Parallel Resources, StatCollector
###### Proces Description
A bank employs three tellers and the customers form a queue for all three tellers. The doors of the bank close after eight hours. The simulation is ended when the last customer has been served.
###### Task
Expand All @@ -665,7 +665,7 @@ service time.
* **Parallel Resources.** The application constructs Tellers object to model tellers as a set of resources.
The object 'provides' tellers to the customer located in the Queue head and "releases" the teller when customer is serviced.
Maximum 3 tellers can be provided simultaneously. The interlocking between catching request is performed using godes BooleanControl object.
* **Collection and processing of statistics.** While finishing a customer run the application creates data arrays for each measure. At the end of simulation, the application creates StatCollection object and performs descriptive statistical analysis. The following statistical parameters are calculated for each measure array:
* **Collection and processing of statistics.** While finishing a customer run the application creates data arrays for each measure. At the end of simulation, the application creates StatCollector object and performs descriptive statistical analysis. The following statistical parameters are calculated for each measure array:
Observ - number of observations, Average - average (mean) value, Std Dev- standard deviation, L-Bound-lower bound of the confidence interval with 95% probability, U-Bound-upper bound of the confidence interval with 95% probability,
Minimum value,Maximum value
```go
Expand Down

0 comments on commit a072bf9

Please sign in to comment.