2010-03-11 15:47:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Thorsten Liebig (Thorsten.Liebig@gmx.de)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-05-05 11:04:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-02-28 21:48:03 +00:00
|
|
|
#include <iostream>
|
2010-03-01 18:35:28 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
2010-03-01 13:56:27 +00:00
|
|
|
|
2010-03-11 09:56:19 +00:00
|
|
|
#include "openems.h"
|
2010-05-28 13:13:14 +00:00
|
|
|
#include "tools/global.h"
|
2010-02-28 21:48:03 +00:00
|
|
|
|
2010-05-04 07:31:10 +00:00
|
|
|
#ifndef GIT_VERSION
|
|
|
|
#define GIT_VERSION "unknown:compiled@" __DATE__
|
|
|
|
#endif
|
|
|
|
|
2010-03-07 11:49:38 +00:00
|
|
|
using namespace std;
|
2010-02-28 22:42:10 +00:00
|
|
|
|
2010-02-28 21:48:03 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2010-03-11 14:48:55 +00:00
|
|
|
openEMS FDTD;
|
|
|
|
|
2010-09-17 13:32:11 +00:00
|
|
|
#ifdef _LP64
|
|
|
|
string bits = "64bit";
|
|
|
|
#else
|
|
|
|
string bits = "32bit";
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 15:59:29 +00:00
|
|
|
cout << " -------------------------------------------------------------------- " << endl;
|
2010-09-17 13:32:11 +00:00
|
|
|
cout << " | openEMS " << bits << " -- version " GIT_VERSION << endl;
|
2010-05-11 15:59:29 +00:00
|
|
|
cout << " | (C) 2010 Thorsten Liebig <thorsten.liebig@gmx.de> GPL license" << endl;
|
2010-08-25 06:17:45 +00:00
|
|
|
cout << " -------------------------------------------------------------------- " << endl;
|
|
|
|
cout << openEMS::GetExtLibsInfo() << endl;
|
2010-05-11 15:59:29 +00:00
|
|
|
|
2010-03-11 09:56:19 +00:00
|
|
|
if (argc<=1)
|
|
|
|
{
|
2010-05-21 06:16:24 +00:00
|
|
|
cout << " Usage: openEMS <FDTD_XML_FILE> [<options>...]" << endl << endl;
|
|
|
|
cout << " <options>" << endl;
|
|
|
|
cout << "\t--disable-dumps\t\tDisable all field dumps for faster simulation" << endl;
|
|
|
|
cout << "\t--debug-material\tDump material distribution to a vtk file for debugging" << endl;
|
|
|
|
cout << "\t--debug-operator\tDump operator to vtk file for debugging" << endl;
|
|
|
|
cout << "\t--debug-boxes\t\tDump e.g. probe boxes to vtk file for debugging" << endl;
|
2010-07-08 09:28:11 +00:00
|
|
|
cout << "\t--debug-CSX\t\tWrite CSX geometry file to debugCSX.xml" << endl;
|
2010-05-21 06:16:24 +00:00
|
|
|
cout << "\t--engine=<type>\t\tChoose engine type" << endl;
|
|
|
|
cout << "\t\t--engine=fastest\t\tfastest available engine" << endl;
|
|
|
|
cout << "\t\t--engine=sse\t\t\tengine using sse vector extensions" << endl;
|
|
|
|
cout << "\t\t--engine=sse_compressed\t\tengine using compressed operator + sse vector extensions" << endl;
|
|
|
|
cout << "\t\t--engine=multithreaded\t\tengine using compressed operator + sse vector extensions + multithreading" << endl;
|
|
|
|
cout << "\t--numThreads=<n>\tForce use n threads for multithreaded engine (needs: --engine=multithreaded)" << endl;
|
2010-08-16 21:17:19 +00:00
|
|
|
cout << "\t--no-simulation\tonly run preprocessing; do not simulate" << endl;
|
2010-09-17 12:48:32 +00:00
|
|
|
cout << "\n\t Additional global arguments " << endl;
|
|
|
|
g_settings.ShowArguments(cout,"\t");
|
2010-05-21 06:16:24 +00:00
|
|
|
cout << endl;
|
2010-03-11 09:56:19 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
2010-02-28 21:48:03 +00:00
|
|
|
|
2010-03-11 14:48:55 +00:00
|
|
|
if (argc>=3)
|
|
|
|
{
|
|
|
|
for (int n=2;n<argc;++n)
|
|
|
|
{
|
2010-05-28 13:13:14 +00:00
|
|
|
if (g_settings.parseCommandLineArgument(argv[n]))
|
|
|
|
continue;
|
|
|
|
|
2010-03-26 10:57:53 +00:00
|
|
|
if (!FDTD.parseCommandLineArgument(argv[n]))
|
2010-03-12 19:39:04 +00:00
|
|
|
cout << "openEMS - unknown argument: " << argv[n] << endl;
|
2010-03-11 14:48:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-05 11:04:19 +00:00
|
|
|
int EC = FDTD.SetupFDTD(argv[1]);
|
2010-03-11 09:56:19 +00:00
|
|
|
if (EC) return EC;
|
|
|
|
FDTD.RunFDTD();
|
2010-03-10 11:15:14 +00:00
|
|
|
|
2010-03-11 09:56:19 +00:00
|
|
|
return 0;
|
2010-02-28 21:48:03 +00:00
|
|
|
}
|