EOQ: EOQ model

Description Usage Arguments Details Value Assumptions Author(s) Examples

Description

This functions provides the results of the well-known deterministic EOQ (Economic Order Quantity model)

Usage

1
EOQ(l, k, I, C)

Arguments

l

Demand (per unit of time).

k

Preparation cost (per order).

I

Storage cost (per article).

C

Cost of goods (per item).

Details

This function implements the basic deterministic EOQ (Economic Order Quantity) model.

Value

A list containing:

Assumptions

Author(s)

José Carlos Soage González jsoage@uvigo.es

Examples

1
2
3
4
5
6
7
8
l <- 520  # Demand
k <- 10   # Preparation cost
I <- 0.2  # Storage cost per article
C <- 5    # Cost of goods per item

dat <- EOQ(l = l, k = k, I = I, C = C)
dat
plot(dat)

sidoruvigo/EOQdis documentation built on May 23, 2019, 4:05 a.m.