forked from samgdotson/bakery-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appliances.py
24 lines (21 loc) · 869 Bytes
/
appliances.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
This file contains basic kitchen appliances!
"""
from pygenesys.technology.technology import Technology
'''
CONV_OVEN = Technology(tech_name='CONV_OVEN',
units='cookies per hour',
tech_sector='bakery',
tech_label='p',
description='Convection oven',
category='fancy kitchen',
capacity_to_activity=4*12*8760)
# capacity_to_activity is the number of cookies an oven can make per hour!
'''
MIXER_ELC = Technology(tech_name='MIXER_ELC',
units='lbs of dough per hour',
tech_sector='bakery',
tech_label='p',
description='Electric mixer',
category='fancy kitchen',
capacity_to_activity=6*8760)