我正在尝试模拟在2D中移动的点,这些点在每一步都有可能死亡。我正在尝试学习SimPy,这是我的第一次编程经验。为什么我会收到此错误?以及如何解决它?谢谢
from SimPy.SimulationTrace import *
import random as RD
import scipy as SP
import math
import matplotlib.pyplot as plt
N=100
r1=0.02
r2=0.03
maxTime=100
class Point(Process):
def __init__(self,coord,rate1,rate2):
Process.__init__(self)
self.x=coord[0]
self.y=coord[1]
self.rate1=r1
self.rate2=r2
def Move(self):
RD.uniform(coord[0]-0.1,coord[0]+0.1)
RD.uniform(coord[1]-0.1,coord[1]+0.1)
yield hold,self,0.5
self.x=coord[0]
self.y=coord[1]
yield hold,self,0.5
# reactivate(self,now())
def die(self):
if RD.random() < self.rate2:
N-=1
m.observe(N)
yield cancel,self
initialize()
m=Monitor()
circular=[RD.uniform(0,100),RD.uniform(0,100)]
for object in xrange(N):
object=Point(circular,r1,r2)
activate(object,object.Move())
simulate(until=maxTime)
activate(object,object.die())
simulate(until=maxTime)
h=m.histogram(low=0.0,high=100,nbins=100)
g=m.yseries()
plt.plot(g)
plt.show()
错误
Traceback (most recent call last):
File "C:\Users\dell\Desktop\ask.py", line 46, in <module>
simulate(until=maxTime)
File "C:\Python27\lib\site-packages\SimPy\Globals.py", line 61, in simulate
return sim.simulate(until = until)
File "C:\Python27\lib\site-packages\SimPy\SimulationTrace.py", line 96, in simulate
return Simulation.simulate(self, until)
File "C:\Python27\lib\site-packages\SimPy\Simulation.py", line 581, in simulate
step()
File "C:\Python27\lib\site-packages\SimPy\Simulation.py", line 525, in step
resultTuple = proc._nextpoint.next()
File "C:\Users\dell\Desktop\ask.py", line 23, in Move
RD.uniform(coord[0]-0.3,coord[0]+0.3)
NameError: global name 'coord' is not defined
答案 0 :(得分:2)
我认为你需要更换
def Move(self):
使用:
def Move(self, coord):
调用此函数后,将新坐标作为参数传递,如:
obj.Move((10, 20))
示例(10, 20)
中的新对象坐标(我不确定这是您的代码的作用,但我想它应该是名为'Move'的函数的自然行为。)< / p>
来自official documentation:当根本找不到名称时,会引发NameError异常。
python中的名称(在Code Like a Pythonista: Idiomatic Python中更好地解释)是其他语言中的变量。所以:
NameError: global name 'coord' is not defined
基本上意味着编译器不知道'coord'是什么。
注意:你不应该调用你的变量'object'来遮蔽作为每个类的基类的内置[object
] [3]。
此外,我无法看到做出类似事情的重点:
for i in xrange(N): # Notice that I also used a different name here: i
obj = Point(circular,r1,r2)
beacuse与:
相同obj = Point(circular,r1,r2)
更新:也许你正在尝试做的事情:
# maybe you want to put this inside a function so every time you get
# different random numbers
def circular():
return RD.uniform(0,100), RD.uniform(0,100)
points = []
for i in xrange(N):
p = Point(circular(), r1, r2)
points.append(p)
activate(p, p.Move(circular())
simulate(until=maxTime)
for p in points:
activate(p, p.die())
simulate(until=maxTime)
我从未使用过SimPy,所以这只是我疯狂(和偏离主题)的猜测。
您的host
方法中似乎没有定义Move
,但可能会导入from SimPy.SimulationTrace import *
。使用from ... import *
是一种不好的做法,因为阻止其他人确切地知道你从该模块导入的内容(我认为这是在SimPy教程中完成的,因为你可以快速启动,但你应该只导入你需要的东西)
答案 1 :(得分:0)
Coord未在移动功能中定义 在我看来,你不要把它作为参数给出