Skip to content

Commit

Permalink
Removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
markvankoningsveld committed Feb 16, 2020
1 parent 679f554 commit a8ab4e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion opentisim/agribulk_system.py
Expand Up @@ -376,7 +376,6 @@ def crane_invest(self, year):

# - labour
labour = Labour(**agribulk_defaults.labour_data)
'''old formula --> crane.labour = crane.crew * self.operational_hours / labour.shift_length'''
crane.shift = ((crane.crew * self.operational_hours) / (
labour.shift_length * labour.annual_shifts))
crane.labour = crane.shift * labour.operational_salary
Expand Down
1 change: 0 additions & 1 deletion opentisim/container_system.py
Expand Up @@ -457,7 +457,6 @@ def crane_invest(self, year):

# labour
labour = Labour(**container_defaults.labour_data)
'''old formula --> crane.labour = crane.crew * self.operational_hours / labour.shift_length '''
crane.shift = crane.crew * labour.daily_shifts
crane.labour = crane.shift * labour.blue_collar_salary
# Todo: check if the number of shifts (crane.shift) is modelled correctly
Expand Down

0 comments on commit a8ab4e3

Please sign in to comment.