API¶
Optimization problems define the basic wind farm problem setup and the variables that will be modified by the optimizer. Objectives and constraints are then subsequently added to the problem. Finally, any optimizer from iwopy can be used to find optimal values of the optimization variables (or Pareto fronts).
Please consult the `iwopy documentation<https://fraunhoferiwes.github.io/iwopy.docs/index.html>`_ for details of the optimizers, and see the Examples section for applications.
Package
Description
Abstract base classes and core functionality.
Wind farm optimization problems.
Objectives for wind farm optimization problems.
Constraints for wind farm optimization problems.
foxes_opt.core¶
Contains core functionality and abstract base classes.
- class foxes_opt.core.FarmOptProblem(iwopy.core.problem.Problem)[source]
Abstract base class of wind farm optimization problems.
- class foxes_opt.core.FarmVarsProblem(foxes_opt.core.FarmOptProblem)[source]
Abstract base class for models that optimize farm variables.
- class foxes_opt.core.FarmObjective(iwopy.core.objective.Objective)[source]
Abstract base class for foxes wind farm objective functions.
- class foxes_opt.core.FarmConstraint(iwopy.core.constraint.Constraint)[source]
Abstract base class for foxes wind farm optimization constraints.
foxes_opt.problems¶
Wind farm optimization problems.
foxes_opt.objectives¶
Objectives for wind farm optimization problems.
foxes_opt.constraints¶
Constraints for wind farm optimization problems.