|
@@ -193,7 +193,7 @@ namespace Lemma {
|
193
|
193
|
logfile += to_string(isource) + std::string(".log");
|
194
|
194
|
ofstream logio(logfile.c_str());
|
195
|
195
|
|
196
|
|
- std::cout << "just logging" << std::endl;
|
|
196
|
+ std::cout << "just logging, TODO fix source" << std::endl;
|
197
|
197
|
// logio << *Source << std::endl;
|
198
|
198
|
logio << *Grid << std::endl;
|
199
|
199
|
logio << *LayModel << std::endl;
|
|
@@ -215,6 +215,7 @@ namespace Lemma {
|
215
|
215
|
|
216
|
216
|
/////////////////////////////////////////
|
217
|
217
|
// Solve for RHS
|
|
218
|
+ CSolver[iw].setMaxIterations(10000);
|
218
|
219
|
VectorXcr A = CSolver[iw].solve(Se);
|
219
|
220
|
|
220
|
221
|
// // Solve Real system instead
|
|
@@ -236,7 +237,7 @@ namespace Lemma {
|
236
|
237
|
// << " in " << iter_done << " iterations"
|
237
|
238
|
//<< " with error " << errorn << "\t"
|
238
|
239
|
<< "\tInital solution error "<< Error.norm() // Iteritive info
|
239
|
|
- << "\ttime " << timer.end() << std::endl;
|
|
240
|
+ << "\ttime " << timer.end() / 60. << " [m]" << std::endl;
|
240
|
241
|
|
241
|
242
|
//VectorXcr ADivMAC = ADiv.array() * MAC.array().cast<Complex>();
|
242
|
243
|
//logio << "|| Div(A) || on MAC grid " << ADivMAC.norm() << std::endl;
|
|
@@ -252,6 +253,7 @@ namespace Lemma {
|
252
|
253
|
//Phi.array() *= MAC.array().cast<Complex>(); // remove phi from air regions
|
253
|
254
|
|
254
|
255
|
/* Restart if necessary */
|
|
256
|
+/*
|
255
|
257
|
int nrestart(1);
|
256
|
258
|
// TODO send MAC to implicitbicgstab?
|
257
|
259
|
while (success == 2 && nrestart < 18 && iter_done > 1) {
|
|
@@ -259,10 +261,11 @@ namespace Lemma {
|
259
|
261
|
//Phi.array() *= MAC.array().cast<Complex>(); // remove phi from air regions
|
260
|
262
|
nrestart += 1;
|
261
|
263
|
}
|
|
264
|
+*/
|
262
|
265
|
|
263
|
266
|
logio << "Implicit BiCGStab solution in " << iter_done << " iterations."
|
264
|
267
|
<< " with error " << std::setprecision(8) << std::scientific << errorn << std::endl;
|
265
|
|
- logio << "time "<< timer.end() << " [s]" << std::endl;
|
|
268
|
+ logio << "time "<< timer.end()/60. << " [m]" << std::endl;
|
266
|
269
|
|
267
|
270
|
|
268
|
271
|
E = ms.array()*(D.transpose()*Phi).array(); // Temp, field due to charge
|
|
@@ -289,7 +292,7 @@ namespace Lemma {
|
289
|
292
|
// Report error of solutions
|
290
|
293
|
Error = ((Cc.selfadjointView<Eigen::Lower>()*A).array() + E.array() - Se.array());
|
291
|
294
|
logio << "\tsolution error " << Error.norm()
|
292
|
|
- << std::fixed << std::setprecision(2) << "\ttime " << timer.end() << "\ttotal time " << timer2.end() << std::endl;
|
|
295
|
+ << std::fixed << std::setprecision(2) << "\ttime " << timer.end()/60. << "\ttotal time " << timer2.end()/60. << std::endl;
|
293
|
296
|
logio.close();
|
294
|
297
|
|
295
|
298
|
//////////////////////////////////////
|
|
@@ -535,6 +538,27 @@ namespace Lemma {
|
535
|
538
|
}
|
536
|
539
|
}
|
537
|
540
|
|
|
541
|
+ template<>
|
|
542
|
+ void EMSchur3D< Eigen::LeastSquaresConjugateGradient< Eigen::SparseMatrix<Complex, Eigen::RowMajor> > > ::BuildCDirectSolver() {
|
|
543
|
+ CSolver = new Eigen::LeastSquaresConjugateGradient< Eigen::SparseMatrix<Complex, Eigen::RowMajor> > [Omegas.size()];
|
|
544
|
+ for (int iw=0; iw<Omegas.size(); ++iw) {
|
|
545
|
+ Csym = Cvec[iw].selfadjointView<Eigen::Lower>();
|
|
546
|
+ jsw_timer timer;
|
|
547
|
+ timer.begin();
|
|
548
|
+ /* Complex system */
|
|
549
|
+ std::cout << "LeastSquaresConjugateGradient pattern analyzing C_" << iw << ",";
|
|
550
|
+ std::cout.flush();
|
|
551
|
+ CSolver[iw].analyzePattern( Csym );
|
|
552
|
+ std::cout << " done in " << timer.end() / 60. << " [m]" << std::endl;
|
|
553
|
+ // factorize
|
|
554
|
+ timer.begin();
|
|
555
|
+ std::cout << "LeastSquaresConjugateGradient factorising C_" << iw << ", ";
|
|
556
|
+ std::cout.flush();
|
|
557
|
+ CSolver[iw].factorize( Csym );
|
|
558
|
+ std::cout << " done in " << timer.end() / 60. << " [m]" << std::endl;
|
|
559
|
+ }
|
|
560
|
+ }
|
|
561
|
+
|
538
|
562
|
// template<>
|
539
|
563
|
// void EMSchur3D< Eigen::ConjugateGradient<Eigen::SparseMatrix<Complex, Eigen::RowMajor>, Eigen::Lower > > ::BuildCDirectSolver() {
|
540
|
564
|
// CSolver = new Eigen::ConjugateGradient<Eigen::SparseMatrix<Complex, Eigen::RowMajor>, Eigen::Lower > [Omegas.size()];
|