forked from samgdotson/bakery-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.py
30 lines (25 loc) · 1.04 KB
/
store.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
25
26
27
28
29
30
"""
These "technologies" operate as a "store" to buy and sell ingredients
"""
from pygenesys.technology.technology import Technology
IMP_H2 = Technology(tech_name='IMP_H2',
units='pound sugar',
tech_sector='store',
tech_label='p',
description='store bought sugar',
category='grocery',
capacity_to_activity=1.00)
IMP_ELC = Technology(tech_name='IMP_ELC',
units='stick butter',
tech_sector='store',
tech_label='p',
description='store bought butter',
category='grocery',
capacity_to_activity=1.00)
STORE = Technology(tech_name='STORE',
units='number of storefronts',
tech_sector='bakery',
tech_label='p',
description='where cookies get sold',
category='fancy kitchen',
capacity_to_activity=1.00)