2010-02-28 21:48:03 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <time.h>
|
|
|
|
#include "FDTD/cartoperator.h"
|
|
|
|
#include "ContinuousStructure.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2010-02-28 22:42:10 +00:00
|
|
|
void BuildMSL(ContinuousStructure &CSX);
|
|
|
|
|
2010-02-28 21:48:03 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2010-02-28 22:42:10 +00:00
|
|
|
ContinuousStructure CSX;
|
2010-02-28 21:48:03 +00:00
|
|
|
|
|
|
|
time_t startTime=time(NULL);
|
|
|
|
|
2010-02-28 22:42:10 +00:00
|
|
|
// CSX.ReadFromXML("csx-files/MSL.xml");
|
|
|
|
BuildMSL(CSX);
|
2010-02-28 21:48:03 +00:00
|
|
|
|
|
|
|
CartOperator cop;
|
|
|
|
cop.SetGeometryCSX(&CSX);
|
|
|
|
|
|
|
|
cop.CalcECOperator();
|
|
|
|
|
|
|
|
time_t OpDoneTime=time(NULL);
|
|
|
|
|
|
|
|
cerr << "Time for operator: " << difftime(OpDoneTime,startTime) << endl;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-02-28 22:42:10 +00:00
|
|
|
|
|
|
|
void BuildMSL(ContinuousStructure &CSX)
|
|
|
|
{
|
|
|
|
CSPropMaterial* mat = new CSPropMaterial(CSX.GetParameterSet());
|
|
|
|
mat->SetEpsilon(3.6);
|
|
|
|
CSX.AddProperty(mat);
|
|
|
|
|
|
|
|
CSPrimBox* box = new CSPrimBox(CSX.GetParameterSet(),mat);
|
|
|
|
box->SetCoord(0,-200.0);box->SetCoord(1,200.0);
|
|
|
|
box->SetCoord(2,0.0);box->SetCoord(3,50.0);
|
|
|
|
box->SetCoord(4,-1000.0);box->SetCoord(5,1000.0);
|
|
|
|
CSX.AddPrimitive(box);
|
|
|
|
|
|
|
|
CSPropMaterial* MSL = new CSPropMaterial(CSX.GetParameterSet());
|
|
|
|
MSL->SetKappa(56e6);
|
|
|
|
CSX.AddProperty(MSL);
|
|
|
|
|
|
|
|
box = new CSPrimBox(CSX.GetParameterSet(),MSL);
|
|
|
|
box->SetCoord(0,-20.0);box->SetCoord(1,20.0);
|
|
|
|
box->SetCoord(2,0.0);box->SetCoord(3,50.0);
|
|
|
|
box->SetCoord(4,-1000.0);box->SetCoord(5,1000.0);
|
|
|
|
CSX.AddPrimitive(box);
|
|
|
|
|
|
|
|
CSPropElectrode* elec = new CSPropElectrode(CSX.GetParameterSet());
|
|
|
|
elec->SetExcitation(1,1);
|
|
|
|
elec->SetExcitType(0);
|
|
|
|
CSX.AddProperty(elec);
|
|
|
|
|
|
|
|
box = new CSPrimBox(CSX.GetParameterSet(),elec);
|
|
|
|
box->SetCoord(0,-20.0);box->SetCoord(1,20.0);
|
|
|
|
box->SetCoord(2,0.0);box->SetCoord(3,50.0);
|
|
|
|
box->SetCoord(4,0.0);box->SetCoord(5,0.0);
|
|
|
|
CSX.AddPrimitive(box);
|
|
|
|
|
|
|
|
CSRectGrid* grid = CSX.GetGrid();
|
|
|
|
|
|
|
|
for (int n=-1000;n<=1000;n+=20)
|
|
|
|
grid->AddDiscLine(2,(double)n);
|
|
|
|
for (int n=-200;n<=200;n+=10)
|
|
|
|
grid->AddDiscLine(0,(double)n);
|
|
|
|
for (int n=0;n<=300;n+=10)
|
|
|
|
grid->AddDiscLine(1,(double)n);
|
|
|
|
|
2010-03-01 07:43:31 +00:00
|
|
|
grid->SetDeltaUnit(1e-3);
|
|
|
|
|
2010-02-28 22:42:10 +00:00
|
|
|
CSX.Write2XML("csx-files/MSL.xml");
|
|
|
|
}
|