我正在尝试使用 Mesa 库在 python 中编写一个多代理系统,虽然该库对于像我这样的初学者来说非常棒(不像 Spade 之类的东西,我发现它太复杂了),但我不知道该怎么做使用库定义子代理。
这是一个非常基本的代理系统的基本代码
from mesa import Agent
from mesa import Model
import random
class Device(Agent):
def __init__(self, unique_id, model, energy, threshold, status):
super().__init__(unique_id, model)
self.energy = energy
self.threshold = threshold
self.status = 0
def _cost(self, price):
self.elec_cost = price*self.energy
def run(self, price):
print('price:', price)
self._cost(price)
if self.elec_cost > self.threshold:
self.status = 0
elif self.elec_cost <= self.threshold:
self.status = 1
def getStatus(self):
if self.status == 1:
return 'on'
elif self.status == 0:
return 'off'
class Fan(Device):
def __init__(self, unique_id, model, energy=0.06, threshold=0.55, status=0):
super().__init__(unique_id, model, energy, threshold, status)
class Light(Device):
def __init__(self, unique_id, model, energy=0.06, threshold=0.55, status=0):
super().__init__(unique_id, model, energy, threshold, status)
class HVAC(Device):
def __init__(self, unique_id, model, energy=3, threshold=31, status=0):
super().__init__(unique_id, model, energy, threshold, status)
class HomeModel(Model):
def __init__(self):
self.fan1 = Fan(1, self)
self.fan2 = Fan(2, self)
self.light1 = Light(3, self)
self.light2 = Light(4, self)
def run(self):
self.price = get_Price()
self._run(self.fan1)
self._run(self.fan2)
self._run(self.light1)
self._run(self.light2)
def _run(self, x):
x.run(self.price)
print(x.unique_id, 'is: ', x.getStatus())
def get_Price():
priceSet = [8, 9, 7, 9, 7, 7, 6, 8, 9, 7, 7, 10, 13, 4, 7, 9, 7, 9, 10, 11, 14, 13]
return random.choice(priceSet)
model = HomeModel()
model.run()
我想测试的是,不是只有一所房子的模型,而是我想看看我是否可以将它扩展到一个社区,所以我希望将每所房子定义为一个代理,而不是一个完整的模型电器作为那所房子的子代理。我曾想过让每个房屋都成为代理并将设备定义为子代理,但是代理的每个实例都将其所属模型的实例作为参数,所以我对如何在房屋代理中定义设备代理感到有些困惑。
我知道可能还有其他方法可以做到这一点,但我对 python 比较陌生(使用它才 3 个月)所以我无法弄清楚其他方法可能是什么。如果有人可以在这里指导我,我将不胜感激。