来自本书的python代码生成的错误消息

时间:2017-10-14 20:40:25

标签: macos python

我正在学习python并且已经通过书中的一些例子进行了工作。我已经运行了很多代码并且运行正常,但我遇到了问题。我在带有High Sierra的iMac上使用python 3.6。我的简短代码在这里:

Set-Mailbox $UserPrincipleName -AuditEnabled $True -AuditLogAgeLimit 
"03.00:00:00" -AuditDelegate "SoftDelete", "HardDelete", "SendAs", "Create", 
"FolderBind" -ErrorAction Stop

生成的错误消息如下:

from vpython import *

dx=0.04; dx2=dx*dx; k0=5.5*pi; dt=dx2/20.0; xmax=6.0
xs = arange(-xmax,xmax+dx/2, dx)

g=graph(width=500,height=250,title="wave packet")
PlotObj=curve(x=xs, color=color.yellow, radius=0.1)
g.center = (0,2,0)

psr = exp(-0.5*(xs/0.5)**2) * cos(k0*xs)
psi = exp(-0.5*(xs/0.5)**2) * sin(k0*xs)
v = 15.0*xs**2

while True:
    rate(500)
    psr[1:-1]= psr[1:-1]-(dt/dx2)*(psi[2:]+psi[:-2]-2*psi[1:-1])+dt*v[1:-1]*psi[1:-1]
    psi[1:-1]= psi[1:-1]-(dt/dx2)*(psr[2:]+psr[:-2]-2*psr[1:-1])+dt*v[1:-1]*psr[1:-1]
    PlotObj.y = 4*(psr**2 + psi**2)

有谁知道错误是什么?

0 个答案:

没有答案