-
Book Overview & Buying
-
Table Of Contents
Getting Started with Taipy
By :
In this chapter, we assume the role of logistics analysts for EuroDuctPipe, a fictitious European pipe manufacturer. We’ll develop an app to help strategic departments find optimal warehouse locations based on cost and carbon emissions. Optimization is widely used in industries such as finance (tax-efficient investments), energy (grid balancing), and agriculture (crop yield maximization). It also includes subcategories such as route optimization and scheduling problems.
We use linear programming techniques and specialized software known as solvers to solve optimization problems. Understanding the algorithms isn’t essential; what matters is correctly formulating the problem. PuLP, a Python library, works for small to medium problems, while larger ones require commercial solvers such as CPLEX or Gurobi. PuLP uses declarative syntax to define and solve problems.
The Taipy app can use any solver, whether it...