Gurobi / gurobi-optimods

Data-driven APIs for common optimization tasks
https://gurobi-optimods.readthedocs.io
Apache License 2.0
148 stars 31 forks source link

Facility location optimod #120

Open sjk1209 opened 1 year ago

sjk1209 commented 1 year ago

Why this Mod?

The facility location problem is important in various industries and sectors. It involves determining the optimal locations for facilities such as warehouses, distribution centres, and manufacturing plants. By strategically placing facilities, companies can minimize transportation costs, reduce inventory holding costs, and optimize supply chain operations.

What will the API be?

The input data will be

The API will look something like open_facilities, service_schedule, objective = solve_facility_loc(facilities, customers, opening_cost, capacity, demand, service_cost)

simonbowly commented 1 year ago

Sounds great! Would be good to also discuss with @stevedwards: while the network design model in #36 is quite a different problem, it would be good to make sure the terminology used in documentation is consistent between the two if there is overlap there.

stevedwards commented 1 year ago

I think the network design model is too abstract and having mods be more concrete like this facility location mod could actually be more user-friendly.

rluce commented 1 year ago

Robert Freund (MIT) walked me through an MBA-level class exercise touching facility location. In the example the locations were potential new landfills, connecting homes of the region to them. Two twists we could have generalized in this mod are:

Moreover we should have examples where different metrics give raise to the cost connecting sites and nodes (e.g., l2 norm on larger geographic distances, l1 norm in urban US areas)