0% found this document useful (0 votes)
14 views

Pyomo

Uploaded by

Srinu Naidu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views

Pyomo

Uploaded by

Srinu Naidu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Pyomo elements

You Problem Pyomo Solver

Pyomo 65
Pyomo elements
model = AbstractModel()
model = ConcreteModel()

Set

Variable

Model Parameter Solve Visualization

Constraint

Objective

Pyomo 66
Pyomo elements

model.i = RangeSet(1, model.N)


Set
model.i = Set()
Variable

Model Parameter

Constraint

Objective

Pyomo 67
Pyomo elements

Set

model.X = Var(model.i,model.kolor, domain=Binary)


Variable
model.x=Var(bounds=(0,model.R), initialize=model.R)
Model Parameter
Reals Binary Integers

Constraint Boolean
PositiveReals PositiveIntegers

Objective PercentFraction
NonPositiveInteger

NegativeReals
NegativeIntegers

UnitInterval
NonNegativeIntegers

Pyomo 68
NonNegativeReals
Pyomo elements

Set

Variable

Model Parameter model.L = Param(model.i,model.j, default=0,mutable=True)

Constraint

Objective

Pyomo 69
Pyomo elements

Set

Variable

Model Parameter

Constraint

Objective

Pyomo 70
Pyomo elements

Set

Variable

Model Parameter

Constraint

Objective

Pyomo 71
Pyomo elements

Set

Variable

Model Parameter Solve Visualization

Constraint

Objective

Pyomo 72
Pyomo elements

Set

Variable

Model Parameter Solve Visualization

Constraint

Objective

Pyomo 73

You might also like