Skip to content

Commit

Permalink
Fixed the bounds of the batch_processing.py variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertLee125 committed Jun 27, 2024
1 parent 4961988 commit 5daabb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdplib/batch_processing/batch_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def get_volume_bounds(model, j):
model.STAGES, bounds=get_volume_bounds, doc='Logarithmic Volume of the Units'
)
model.batchSize_log = Var(
model.PRODUCTS, model.STAGES, bounds=(-10,10), doc='Logarithmic Batch Size of the Products'
model.PRODUCTS, model.STAGES, bounds=(0,10), doc='Logarithmic Batch Size of the Products'
)
model.cycleTime_log = Var(
model.PRODUCTS, doc='Logarithmic Cycle Time of the Products'
Expand Down

0 comments on commit 5daabb6

Please sign in to comment.