Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


warehouseTools (version 0.1.2)

copras_assignment: COPRAS Method for Selection of Locations in a Warehouse

Description

This function allows for selection of locations in a warehouse to be visited by the picker during order picking using the COPRAS (COmplex PRoportional ASsessment) method. The method applies weighted criteria such as storage time, distance from the I/O (depot) point, degree of demand satisfaction, degree of demand satisfaction in full packages, and the number of other items on the pick list in the neighborhood of analyzed location to determine the selection of locations that satisfies the given take-out strategy.

Usage

copras_assignment(goods_and_locations, weights = c(rep(0.2, 5)))

Value

A list of results for each product, where each result includes: - `normalized_and_weighted`: A data frame containing the normalized and weighted values for the criteria, along with the COPRAS scores (`q`) and rankings (`rank`) for each location. - `copras`: A data frame containing the selected locations for each product based on the COPRAS method, with columns `product`, `location`, `rank`, and `demand_ratio`.

Arguments

goods_and_locations

A data frame containing information about goods and their locations. It should include at least the following columns: ‘product‘, ‘location‘, ‘storage_time‘, ‘distance‘, ‘demand_ratio‘, ‘full_packages_demand_ratio‘, and ‘neighbors‘.

weights

A numeric vector of weights for the criteria used in the COPRAS method. The default is ‘c(rep(0.2, 5))‘, representing the weights for storage time, distance (distance from the I/O point), demand ratio (degree of demand satisfaction), full packages demand ratio (degree of demand satisfaction in full packages), and number of neighbors (number of other items on the pick list in the neighborhood of analyzed location), respectively.

Details

The function normalizes the criteria for each product and multiplies them by the provided weights. It then computes two scores, `si_plus` (positive criteria) and `si_minus` (negative criteria), which are used to calculate the COPRAS score (`q`). The function selects the best locations based on the highest COPRAS score while ensuring that the cumulative demand ratio for the selected locations meets or exceeds 1 (i.e., satisfies demand).

References

Gudehus, T., & Kotzab, H. (2012). *Comprehensive Logistics*. Springer Berlin Heidelberg. tools:::Rd_expr_doi("10.1007/978-3-642-24367-7")

Zavadskas, E. K., Kaklauskas, A., & Šarka, V. (1994). The new method of multicriteria complex proportional assessment projects. In E. K. Zavadskas & P. Linnert (Eds.), *Technological and economic development of economy. Volume 3. Business Management* (pp. 131–140). Vilnius: „Technika”.

Examples

Run this code
# Assuming `goods_and_locations` is a data frame with appropriate columns
scenario2 <- generate_sample_goods_and_locatons_scenario(warehouse_height = 10,
warehouse_width = 10,nr_goods = 5)
copras <- copras_assignment(scenario2)

Run the code above in your browser using DataLab