我试图通过其C ++ lib在ubuntu上运行MIT MEEP,但我已经广泛失败了。我正确安装了meep和g ++。我可以运行Scheme ctrl文件,但不能运行c ++库。
我正在尝试MEEP c ++教程中的简单代码。 meep.hpp位于我给出的位置。我是c ++的新手。
有人能给我一些可能出错的提示吗?
这是我得到的第一行错误:
Building target: test2
Invoking: GCC C++ Linker
g++ -o "test2" ./src/test2.o
./src/test2.o: In function `main':
/home/mad/clipse_workspace/test2/Debug/../src/test2.cpp:20: undefined reference to `meep::initialize::initialize(int&, char**&)'
/home/mad/clipse_workspace/test2/Debug/../src/test2.cpp:22: undefined reference to `meep::vol2d(double, double, double)'
这是我运行的代码:
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include </usr/include/meep/meep.hpp>
using namespace meep;
using namespace std;
double eps(const vec &p);
int main(int argc, char **argv) {
initialize mpi(argc, argv); // do this even for non-MPI Meep
double resolution = 10; // pixels per distance
grid_volume v = vol2d(5,10, resolution); // 5x10 2d cell
structure s(v, eps, pml(1.0));
fields f(&s);
f.output_hdf5(Dielectric, v.surroundings());
double freq = 0.3, fwidth = 0.1;
gaussian_src_time src(freq, fwidth);
f.add_point_source(Ey, src, vec(1.1, 2.3));
while (f.time() < f.last_source_time()) {
f.step();
}
f.output_hdf5(Hz, v.surroundings());
return 0;
}
double eps(const vec &p) {
if (p.x() < 2 && p.y() < 3)
return 12.0;
return 1.0;
}
答案 0 :(得分:2)
您必须链接MEEP库。我编译了你的应用程序:
g++ -o test2 test2.cpp -lmeep
MEEP开发文件可以像这样在Ubuntu上安装:
sudo apt-get install libmeep-dev
现在也修改这样的include语句:
#include <meep.hpp>
我在Ubuntu 15.10上进行了测试,你的应用程序运行正常。