openEMS/main.cpp

280 lines
7.9 KiB
C++
Raw Normal View History

2010-02-28 21:48:03 +00:00
#include <iostream>
#include <fstream>
#include <sstream>
2010-02-28 21:48:03 +00:00
#include <time.h>
#include "tools/array_ops.h"
2010-02-28 21:48:03 +00:00
#include "FDTD/cartoperator.h"
#include "FDTD/engine.h"
#include "FDTD/processvoltage.h"
#include "FDTD/processcurrent.h"
#include "FDTD/processfields_td.h"
2010-02-28 21:48:03 +00:00
#include "ContinuousStructure.h"
using namespace std;
2010-02-28 22:42:10 +00:00
void BuildMSL(ContinuousStructure &CSX);
2010-03-01 19:50:42 +00:00
void BuildDipol(ContinuousStructure &CSX);
2010-03-02 18:01:03 +00:00
void BuildPlaneWave(ContinuousStructure &CSX);
2010-02-28 22:42:10 +00:00
2010-02-28 21:48:03 +00:00
int main(int argc, char *argv[])
{
time_t startTime=time(NULL);
//*************** setup/read geometry ************//
cerr << "Create Geometry..." << endl;
ContinuousStructure CSX;
2010-03-02 21:55:50 +00:00
//BuildPlaneWave(CSX);
BuildMSL(CSX);
2010-02-28 21:48:03 +00:00
//*************** setup operator ************//
cerr << "Create Operator..." << endl;
2010-02-28 21:48:03 +00:00
CartOperator cop;
cop.SetGeometryCSX(&CSX);
cop.CalcECOperator();
double fmax=1e9;
cop.CalcGaussianPulsExcitation(fmax/2,fmax/2);
2010-02-28 21:48:03 +00:00
time_t OpDoneTime=time(NULL);
cop.ShowSize();
bool bnd[] = {1,1,0,1,0,1};
2010-03-02 18:01:03 +00:00
cop.ApplyMagneticBC(bnd);
cerr << "Nyquist number of timesteps: " << cop.GetNyquistNum(fmax) << endl;
2010-03-01 19:50:42 +00:00
unsigned int NrIter = cop.GetNyquistNum(fmax)/3;
2010-02-28 21:48:03 +00:00
cerr << "Time for operator: " << difftime(OpDoneTime,startTime) << endl;
//create FDTD engine
Engine eng(&cop);
time_t currTime = time(NULL);
//*************** setup processing ************//
ProcessVoltage PV(&cop,&eng);
PV.OpenFile("tmp/u1");
double start[]={0,50,0};
double stop[]={0,0,0};
PV.DefineStartStopCoord(start,stop);
ProcessCurrent PCurr(&cop,&eng);
PCurr.OpenFile("tmp/i1");
start[0]=-50;start[1]=40;start[2]=-0;
stop[0]=50;stop[1]=60;stop[2]=-0;
PCurr.DefineStartStopCoord(start,stop);
unsigned int maxIter = 1800;
ProcessFieldsTD PETD(&cop,&eng);
start[0]=-500;start[1]=25;start[2]=-800;
stop[0] = 500;stop[1] =24;stop[2] = 800;
// start[0]=-300;start[1]=0;start[2]=-4000;
// stop[0]=300;stop[1]=300;stop[2]=-4000;
2010-03-02 14:37:00 +00:00
PETD.SetDumpType(0);
PETD.SetFilePattern("tmp/Et_");
PETD.DefineStartStopCoord(start,stop);
2010-03-02 14:37:00 +00:00
ProcessFieldsTD PHTD(&cop,&eng);
start[0]=-1000;start[2]=0;start[1]=-1000;
stop[0]=1000;stop[2]=0;stop[1]=1000;
PHTD.SetDumpType(1);
PHTD.SetFilePattern("tmp/Ht_");
PHTD.DefineStartStopCoord(start,stop);
2010-03-02 21:55:50 +00:00
PETD.SetEnable(true);
2010-03-02 18:01:03 +00:00
PHTD.SetEnable(false);
2010-03-01 19:50:42 +00:00
PV.Process();
PCurr.Process();
PETD.Process();
2010-03-02 18:01:03 +00:00
PHTD.Process();
//*************** simulate ************//
for (unsigned int i=0;i<maxIter;i+=NrIter)
{
eng.IterateTS(NrIter);
PV.Process();
PCurr.Process();
PETD.Process();
2010-03-02 14:37:00 +00:00
PHTD.Process();
}
//*************** postproc ************//
time_t prevTime = currTime;
currTime = time(NULL);
double t_diff = difftime(currTime,prevTime);
cerr << "Time for " << eng.GetNumberOfTimesteps() << " iterations with " << cop.GetNumberCells() << " cells : " << t_diff << " sec" << endl;
cerr << "Speed: " << (double)cop.GetNumberCells()*(double)eng.GetNumberOfTimesteps()/t_diff/1e6 << " MCells/s " << endl;
2010-02-28 21:48:03 +00:00
return 0;
}
2010-02-28 22:42:10 +00:00
2010-03-01 19:50:42 +00:00
void BuildDipol(ContinuousStructure &CSX)
{
CSPropMaterial* mat = new CSPropMaterial(CSX.GetParameterSet());
mat->SetKappa(0.001);
CSX.AddProperty(mat);
CSPrimBox* matbox = new CSPrimBox(CSX.GetParameterSet(),mat);
matbox->SetCoord(0,-1000.0);matbox->SetCoord(1,1000.0);
matbox->SetCoord(2,-1000.0);matbox->SetCoord(3,1000.0);
matbox->SetCoord(4,-1000.0);matbox->SetCoord(5,1000.0);
CSX.AddPrimitive(matbox);
CSPropElectrode* elec = new CSPropElectrode(CSX.GetParameterSet());
elec->SetExcitation(1,1);
elec->SetExcitType(1);
elec->SetActiveDir(0,0);//disable x
elec->SetActiveDir(0,2);//disable z
2010-03-01 19:50:42 +00:00
// elec->SetDelay(2.0e-9);
CSX.AddProperty(elec);
CSPrimBox* box = new CSPrimBox(CSX.GetParameterSet(),elec);
2010-03-02 14:37:00 +00:00
box->SetCoord(0,-10.0);box->SetCoord(1,10.0);
2010-03-01 19:50:42 +00:00
box->SetCoord(2,-75.0);box->SetCoord(3,75.0);
2010-03-02 14:37:00 +00:00
box->SetCoord(4,-10.0);box->SetCoord(5,10.0);
2010-03-01 19:50:42 +00:00
CSX.AddPrimitive(box);
CSRectGrid* grid = CSX.GetGrid();
2010-03-02 14:37:00 +00:00
for (int n=-990;n<=990;n+=20)
2010-03-01 19:50:42 +00:00
grid->AddDiscLine(2,(double)n);
2010-03-02 14:37:00 +00:00
for (int n=-990;n<=990;n+=20)
2010-03-01 19:50:42 +00:00
grid->AddDiscLine(0,(double)n);
2010-03-02 14:37:00 +00:00
for (int n=-990;n<=990;n+=20)
2010-03-01 19:50:42 +00:00
grid->AddDiscLine(1,(double)n);
grid->SetDeltaUnit(1e-3);
CSX.Write2XML("tmp/Dipol.xml");
}
2010-03-02 18:01:03 +00:00
void BuildPlaneWave(ContinuousStructure &CSX)
{
// CSPropMaterial* mat = new CSPropMaterial(CSX.GetParameterSet());
//// mat->SetKappa(0.001);
// CSX.AddProperty(mat);
//
// CSPrimBox* matbox = new CSPrimBox(CSX.GetParameterSet(),mat);
// matbox->SetCoord(0,-1000.0);matbox->SetCoord(1,1000.0);
// matbox->SetCoord(2,-1000.0);matbox->SetCoord(3,1000.0);
2010-03-02 21:55:50 +00:00
// matbox->SetCoord(4,-4000.0);matbox->SetCoord(5,4000.0);
2010-03-02 18:01:03 +00:00
// CSX.AddPrimitive(matbox);
CSPropElectrode* elec = new CSPropElectrode(CSX.GetParameterSet());
elec->SetExcitation(1,1);
elec->SetExcitType(0);
elec->SetActiveDir(0,0);//disable x
elec->SetActiveDir(0,2);//disable z
// elec->SetDelay(2.0e-9);
CSX.AddProperty(elec);
CSPrimBox* box = new CSPrimBox(CSX.GetParameterSet(),elec);
2010-03-02 21:55:50 +00:00
box->SetCoord(0,-500.0);box->SetCoord(1,500.0);
box->SetCoord(2,-500.0);box->SetCoord(3,500.0);
box->SetCoord(4,-4000.0);box->SetCoord(5,-4000.0);
2010-03-02 18:01:03 +00:00
CSX.AddPrimitive(box);
2010-03-02 21:55:50 +00:00
CSPropMetal* metal = new CSPropMetal(CSX.GetParameterSet());
CSX.AddProperty(metal);
CSPrimCylinder* cyl = new CSPrimCylinder(CSX.GetParameterSet(),metal);
cyl->SetRadius(100);
cyl->SetCoord(0,0.0);cyl->SetCoord(1,0.0);
cyl->SetCoord(2,-250.0);cyl->SetCoord(3,250.0);
cyl->SetCoord(4,-0000.0);cyl->SetCoord(5,-0000.0);
CSX.AddPrimitive(cyl);
2010-03-02 18:01:03 +00:00
CSRectGrid* grid = CSX.GetGrid();
2010-03-02 21:55:50 +00:00
for (int n=-500;n<=500;n+=20)
2010-03-02 18:01:03 +00:00
grid->AddDiscLine(0,(double)n);
2010-03-02 21:55:50 +00:00
for (int n=-500;n<=500;n+=20)
2010-03-02 18:01:03 +00:00
grid->AddDiscLine(1,(double)n);
2010-03-02 21:55:50 +00:00
for (int n=-4000;n<=4000;n+=20)
2010-03-02 18:01:03 +00:00
grid->AddDiscLine(2,(double)n);
grid->SetDeltaUnit(1e-3);
CSX.Write2XML("tmp/PlaneWave.xml");
}
2010-02-28 22:42:10 +00:00
void BuildMSL(ContinuousStructure &CSX)
{
double width = 1000;
double hight = 500;
double length = 2000;
double abs_l = 200;
//substrate....
CSPropMaterial* mat = new CSPropMaterial(CSX.GetParameterSet());
// mat->SetEpsilon(3.6);
double finalKappa = 3/pow(abs_l,4);
mat->SetKappa(finalKappa);
std::ostringstream fct;
fct << "pow(abs(z)-" << length/2.0-abs_l << ",4)";
mat->SetKappaWeightFunction(fct.str(),0);
mat->SetKappaWeightFunction(fct.str(),1);
mat->SetKappaWeightFunction(fct.str(),2);
mat->SetSigma(finalKappa*__MUE0__/__EPS0__);
mat->SetSigmaWeightFunction(fct.str(),0);
mat->SetSigmaWeightFunction(fct.str(),1);
mat->SetSigmaWeightFunction(fct.str(),2);
CSX.AddProperty(mat);
CSPrimBox* box = new CSPrimBox(CSX.GetParameterSet(),mat);
box->SetCoord(0,width/-2.0);box->SetCoord(1,width/2.0);
box->SetCoord(2,0.0);box->SetCoord(3,hight);
box->SetCoord(4,length/2.0-abs_l); box->SetCoord(5,length/2.0);
CSX.AddPrimitive(box);
box = new CSPrimBox(CSX.GetParameterSet(),mat);
box->SetCoord(0,width/-2.0);box->SetCoord(1,width/2.0);
box->SetCoord(2,0.0);box->SetCoord(3,hight);
box->SetCoord(4,length/-2.0+abs_l); box->SetCoord(5,length/-2.0);
CSX.AddPrimitive(box);
// double coords[]={0,0,length/2};
// cerr << fct.str() << endl;
// cerr << finalKappa*pow(abs_l,4) << endl;
// cerr << mat->GetKappaWeighted(0,coords) << endl;
// exit(0);
//MSL
CSPropMetal* MSL = new CSPropMetal(CSX.GetParameterSet());
// MSL->SetKappa(56e6);
CSX.AddProperty(MSL);
box = new CSPrimBox(CSX.GetParameterSet(),MSL);
box->SetCoord(0,-40.0);box->SetCoord(1,40.0);
box->SetCoord(2,50.0);box->SetCoord(3,50.0);
box->SetCoord(4,length/-2);box->SetCoord(5,length/2.0);
CSX.AddPrimitive(box);
2010-02-28 22:42:10 +00:00
//MSL excite...
2010-02-28 22:42:10 +00:00
CSPropElectrode* elec = new CSPropElectrode(CSX.GetParameterSet());
elec->SetExcitation(-1,1);
elec->SetExcitType(1);
// elec->SetDelay(2.0e-9);
2010-02-28 22:42:10 +00:00
CSX.AddProperty(elec);
box = new CSPrimBox(CSX.GetParameterSet(),elec);
box->SetCoord(0,-40.0);box->SetCoord(1,40.0);
2010-02-28 22:42:10 +00:00
box->SetCoord(2,0.0);box->SetCoord(3,50.0);
box->SetCoord(4,length/-2.0);box->SetCoord(5,length/-2.0);
2010-02-28 22:42:10 +00:00
CSX.AddPrimitive(box);
CSRectGrid* grid = CSX.GetGrid();
for (double n=width/-2.0;n<=width/2;n+=20)
grid->AddDiscLine(0,n);
for (double n=0;n<=500;n+=10)
grid->AddDiscLine(1,n);
for (double n=length/-2.0;n<=length/2.0;n+=20)
grid->AddDiscLine(2,n);
2010-02-28 22:42:10 +00:00
grid->SetDeltaUnit(1e-3);
2010-03-01 19:50:42 +00:00
CSX.Write2XML("tmp/MSL.xml");
2010-02-28 22:42:10 +00:00
}