gpt4 book ai didi

python - 属性错误: module 'meep' has no attribute 'Vector3'

转载 作者:太空宇宙 更新时间:2023-11-03 21:40:50 26 4
gpt4 key购买 nike

我已经安装了pymeep使用anaconda环境。不幸的是,当我使用 Spyder 尝试运行使用 meep 中的 Vector3 类时,我收到错误:

属性错误:模块“meep”没有属性“Vector3”

有谁知道如何修复它吗?我已经尝试过使用推荐的环境:

conda create -n mp -c chogan -c defaults -c conda-forge pymeep

没用。

我使用的代码是 here: 中的第一个教程/示例

import meep as mp
cell = mp.Vector3(16, 8, 0)
geometry = [mp.Block(mp.Vector3(1e20, 1, 1e20),
center=mp.Vector3(0, 0),
material=mp.Medium(epsilon=12))]

sources = [mp.Source(mp.ContinuousSource(frequency=0.15),
component=mp.Ez,
center=mp.Vector3(-7,0))]

pml_layers = [mp.PML(1.0)]

resolution = 10

sim = mp.Simulation(cell_size=cell,
boundary_layers=pml_layers,
geometry=geometry,
sources=sources,
resolution=resolution)

sim.run(until=200)

最佳答案

我遇到了同样的问题,当我开始使用 python2 而不是 python3 时,一切正常。

关于python - 属性错误: module 'meep' has no attribute 'Vector3' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52871023/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com