Sponsored Links

Selasa, 12 Desember 2017

Sponsored Links

Facility location problem - YouTube
src: i.ytimg.com

The study of facility location problems, also known as location analysis, is a branch of operations research and computational geometry concerned with the optimal placement of facilities to minimize transportation costs while considering factors like avoiding placing hazardous materials near housing, and competitors' facilities. The techniques also apply to cluster analysis.


Video Facility location problem



Minimum facility location

A simple facility location problem is the Weber problem, in which a single facility is to be placed, with the only optimization criterion being the minimization of the weighted sum of distances from a given set of point sites. More complex problems considered in this discipline include the placement of multiple facilities, constraints on the locations of facilities, and more complex optimization criteria.

In a basic formulation, the facility location problem consists of a set of potential facility sites L where a facility can be opened, and a set of demand points D that must be serviced. The goal is to pick a subset F of facilities to open, to minimize the sum of distances from each demand point to its nearest facility, plus the sum of opening costs of the facilities.

The facility location problem on general graphs is NP-hard to solve optimally, by reduction from (for example) the set cover problem. A number of approximation algorithms have been developed for the facility location problem and many of its variants.

Without assumptions on the set of distances between clients and sites (in particular, without assuming that the distances satisfy the triangle inequality), the problem is known as non-metric facility location and can be approximated to within a factor O(log n). This factor is tight, via an approximation-preserving reduction from the set cover problem.

If we assume distances between clients and sites are undirected and satisfy the triangle inequality, we are talking about a metric facility location (MFL) problem. The MFL is still NP-hard and hard to approximate within factor better than 1.463. The currently best known approximation algorithm achieves approximation ratio of 1.488.


Maps Facility location problem



Minimax facility location

The minimax facility location problem seeks a location which minimizes the maximum distance to the sites, where the distance from one point to the sites is the distance from the point to its nearest site. A formal definition is as follows: Given a point set P ? Rd, find a point set S ? Rd, |S| = k, so that maxp ? P(minq ? S(d(pq)) ) is minimized.

In the case of the Euclidean metric for k = 1, it is known as the smallest enclosing sphere problem or 1-center problem. Its study traced at least to the year of 1860. see smallest enclosing circle and bounding sphere for more details.

NP hardness

It has been proved that exact solution of k-center problem is NP hard. Approximation to the problem was found to be also NP hard when the error is small. The error level in the approximation algorithm is measured as an approximation factor, which is defined as the ratio between the approximation and the optimum. It's proved that the k-center problem approximation is NP hard when approximation factor is less than 1.822 (dimension = 2) or 2 (dimension > 2).

Algorithms

Exact solver

There exist algorithms to produce exact solutions to this problem. One exact solver runs in time n O ( k ) {\displaystyle n^{O({\sqrt {k}})}} .

1 + ? approximation

1 + ? approximation is to find a solution with approximation factor no greater than 1 + ?. This approximation is NP hard as ? is arbitrary. One approach based on the coreset concept is proposed with execution complexity of O ( 2 O ( k log k / ? 2 ) d n ) {\displaystyle O(2^{O(k\log k/\varepsilon ^{2})}dn)} . As an alternative, another algorithm also based on coresets is available. It runs in O ( k n ) {\displaystyle O(k^{n})} . The author claims that the running time is much less than the worst case and thus it's possible to solve some problems when k is small (say k < 5).

Farthest-point clustering

For the hardness of the problem, it's impractical to get an exact solution or precise approximation. Instead, an approximation with factor = 2 is widely used for large k cases. The approximation is referred to as the farthest-point clustering (FPC) algorithm, or farthest-first traversal. The algorithm is quite simple: pick any point from the set as one center; search for the farthest point from remaining set as another center; repeat the process until k centers are found.

It is easy to see that this algorithm runs in linear time. As approximation with factor less than 2 is proved to be NP hard, FPC was regarded as the best approximation one can find.

As per the performance of execution, the time complexity is later improved to O(n log k) with box decomposition technique.


PRIMAL-DUAL APPROXIMATION ALGORITHMS FOR METRIC FACILITY LOCATION ...
src: images.slideplayer.com


Maxmin facility location

The maxmin facility location or obnoxious facility location problem seeks a location which maximizes the minimum distance to the sites. In the case of the Euclidean metric, it is known as the largest empty sphere problem. The planar case (largest empty circle problem) may be solved in optimal time ?(n log n)


Urban Intermodal Container Terminals: Entropy Maximization ...
src: s3.amazonaws.com


Dynamic facility location problems

Dynamic facility location problems allow considering a time-dependent plan for the optimal placement of facilities to minimize transportation costs, while serving customers in some area or region. This class of problems emerges as appropriate when changes in demands or transportation costs are known. As an extension to their static counterparts, a general mathematical programming framework for dynamic facility location problems has been recently introduced by Laporte et al. . Efficient approaches for solving large instances of those problems have been recently proposed by Castro et al., based on a specialized application of the Benders decomposition.


Chapter # 10 Quantitative Facilities Planning Models - ppt video ...
src: slideplayer.com


Free software for solving facility location problems

http://www.opendoorlogistics.com/tutorials/tutorial-territory-design/step-3-automated-territory-design/


ShowMe - FACILITY LOCATION PROBLEM
src: showme0-9071.kxcdn.com


Healthcare facility location

Location problems have widely been used in placing healthcare facilities. The recent review paper surveys studies on this topic.


Facility Location Problem - YouTube
src: i.ytimg.com


See also

  • Graph center
  • Quadratic assignment problem
  • Location-allocation
  • Dijkstra's algorithm
  • List of spatial analysis software
  • Competitive facility location game



Chapter # 10 Quantitative Facilities Planning Models - ppt video ...
src: slideplayer.com


References


Selecting genomics assays William Stafford Noble Department of ...
src: images.slideplayer.com


External links

  • EWGLA EURO Working Group on Locational Analysis.
  • INFORMS section on location analysis, a professional society concerned with facility location.
  • Bibliography on facility location collected by Trevor Hale, containing over 3400 articles.
  • Library of location algorithms
  • Web-based facility location utility (single facility)
  • Facility Location Optimizer, a MATLAB-based tool for solving facility location problems.

Source of the article : Wikipedia

Comments
0 Comments