2010-03-11 23:47:40 +08: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 19:04:19 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-03-01 05:48:03 +08:00
|
|
|
#include <iostream>
|
2010-03-02 02:35:28 +08:00
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
2010-03-01 21:56:27 +08:00
|
|
|
|
2011-02-08 21:08:58 +08:00
|
|
|
#ifdef MPI_SUPPORT
|
|
|
|
#include "mpi.h"
|
2011-02-11 20:52:48 +08:00
|
|
|
#include "FDTD/openems_fdtd_mpi.h"
|
|
|
|
#else
|
|
|
|
#include "openems.h"
|
2011-02-08 21:08:58 +08:00
|
|
|
#endif
|
|
|
|
|
2010-05-28 21:13:14 +08:00
|
|
|
#include "tools/global.h"
|
2010-03-01 05:48:03 +08:00
|
|
|
|
2010-05-04 15:31:10 +08:00
|
|
|
#ifndef GIT_VERSION
|
|
|
|
#define GIT_VERSION "unknown:compiled@" __DATE__
|
|
|
|
#endif
|
|
|
|
|
2010-03-07 19:49:38 +08:00
|
|
|
using namespace std;
|
2010-03-01 06:42:10 +08:00
|
|
|
|
2010-03-01 05:48:03 +08:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2011-03-08 19:06:47 +08:00
|
|
|
//read global command line arguments first
|
|
|
|
for (int n=2; n<argc; ++n)
|
|
|
|
{
|
|
|
|
if (g_settings.parseCommandLineArgument(argv[n]))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-02-08 21:08:58 +08:00
|
|
|
#ifdef MPI_SUPPORT
|
|
|
|
//init MPI
|
|
|
|
MPI::Init(argc,argv);
|
2011-02-11 20:52:48 +08:00
|
|
|
openEMS_FDTD_MPI FDTD;
|
|
|
|
#else
|
2010-03-11 22:48:55 +08:00
|
|
|
openEMS FDTD;
|
2011-02-11 20:52:48 +08:00
|
|
|
#endif
|
2010-03-11 22:48:55 +08:00
|
|
|
|
2010-09-17 21:32:11 +08:00
|
|
|
#ifdef _LP64
|
|
|
|
string bits = "64bit";
|
|
|
|
#else
|
|
|
|
string bits = "32bit";
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 23:59:29 +08:00
|
|
|
cout << " -------------------------------------------------------------------- " << endl;
|
2010-09-17 21:32:11 +08:00
|
|
|
cout << " | openEMS " << bits << " -- version " GIT_VERSION << endl;
|
2010-05-11 23:59:29 +08:00
|
|
|
cout << " | (C) 2010 Thorsten Liebig <thorsten.liebig@gmx.de> GPL license" << endl;
|
2010-08-25 14:17:45 +08:00
|
|
|
cout << " -------------------------------------------------------------------- " << endl;
|
2011-03-08 21:43:48 +08:00
|
|
|
#ifdef MPI_SUPPORT
|
|
|
|
cout << openEMS_FDTD_MPI::GetExtLibsInfo() << endl;
|
|
|
|
#else
|
2010-08-25 14:17:45 +08:00
|
|
|
cout << openEMS::GetExtLibsInfo() << endl;
|
2011-03-08 21:43:48 +08:00
|
|
|
#endif
|
2010-05-11 23:59:29 +08:00
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
if (argc<=1)
|
|
|
|
{
|
2010-05-21 14:16:24 +08: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;
|
2011-03-16 22:59:20 +08:00
|
|
|
cout << "\t--debug-PEC\tDump metal distribution to a vtk file for debugging" << endl;
|
2010-05-21 14:16:24 +08:00
|
|
|
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 17:28:11 +08:00
|
|
|
cout << "\t--debug-CSX\t\tWrite CSX geometry file to debugCSX.xml" << endl;
|
2010-05-21 14:16:24 +08:00
|
|
|
cout << "\t--engine=<type>\t\tChoose engine type" << endl;
|
2011-03-08 21:43:48 +08:00
|
|
|
cout << "\t\t--engine=fastest\t\tfastest available engine (default)" << endl;
|
2010-05-21 14:16:24 +08:00
|
|
|
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;
|
2011-02-08 21:08:58 +08:00
|
|
|
#ifdef MPI_SUPPORT
|
2011-03-08 21:43:48 +08:00
|
|
|
cout << "\t\t--engine=MPI\t\t\tengine using compressed operator + sse vector extensions + MPI parallel processing" << endl;
|
|
|
|
cout << "\t\t--engine=multithreaded\t\tengine using compressed operator + sse vector extensions + MPI + multithreading" << endl;
|
|
|
|
#else
|
|
|
|
cout << "\t\t--engine=multithreaded\t\tengine using compressed operator + sse vector extensions + multithreading" << endl;
|
2011-02-08 21:08:58 +08:00
|
|
|
#endif
|
2010-05-21 14:16:24 +08:00
|
|
|
cout << "\t--numThreads=<n>\tForce use n threads for multithreaded engine (needs: --engine=multithreaded)" << endl;
|
2010-08-17 05:17:19 +08:00
|
|
|
cout << "\t--no-simulation\tonly run preprocessing; do not simulate" << endl;
|
2010-09-17 20:48:32 +08:00
|
|
|
cout << "\n\t Additional global arguments " << endl;
|
|
|
|
g_settings.ShowArguments(cout,"\t");
|
2010-05-21 14:16:24 +08:00
|
|
|
cout << endl;
|
2010-03-11 17:56:19 +08:00
|
|
|
exit(-1);
|
|
|
|
}
|
2010-03-01 05:48:03 +08:00
|
|
|
|
2010-03-11 22:48:55 +08:00
|
|
|
if (argc>=3)
|
|
|
|
{
|
2010-12-06 20:04:37 +08:00
|
|
|
for (int n=2; n<argc; ++n)
|
2010-03-11 22:48:55 +08:00
|
|
|
{
|
2010-03-26 18:57:53 +08:00
|
|
|
if (!FDTD.parseCommandLineArgument(argv[n]))
|
2010-03-13 03:39:04 +08:00
|
|
|
cout << "openEMS - unknown argument: " << argv[n] << endl;
|
2010-03-11 22:48:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-05 19:04:19 +08:00
|
|
|
int EC = FDTD.SetupFDTD(argv[1]);
|
2010-03-11 17:56:19 +08:00
|
|
|
if (EC) return EC;
|
|
|
|
FDTD.RunFDTD();
|
2010-03-10 19:15:14 +08:00
|
|
|
|
2011-02-08 21:08:58 +08:00
|
|
|
#ifdef MPI_SUPPORT
|
2011-02-16 22:17:51 +08:00
|
|
|
FDTD.Reset(); //make sure everything is cleaned-up before calling MPI::Finalize()
|
2011-02-08 21:08:58 +08:00
|
|
|
MPI::Finalize();
|
|
|
|
#endif
|
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
return 0;
|
2010-03-01 05:48:03 +08:00
|
|
|
}
|