ngsolve 6.2.2506.post74.dev0__cp314-cp314-macosx_10_15_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ngsolve might be problematic. Click here for more details.
- netgen/include/analytic_integrals.hpp +10 -0
- netgen/include/arnoldi.hpp +55 -0
- netgen/include/bandmatrix.hpp +334 -0
- netgen/include/basematrix.hpp +957 -0
- netgen/include/basevector.hpp +1268 -0
- netgen/include/bdbequations.hpp +2805 -0
- netgen/include/bdbintegrator.hpp +1660 -0
- netgen/include/bem_diffops.hpp +475 -0
- netgen/include/bessel.hpp +1064 -0
- netgen/include/bilinearform.hpp +963 -0
- netgen/include/bla.hpp +29 -0
- netgen/include/blockalloc.hpp +95 -0
- netgen/include/blockjacobi.hpp +328 -0
- netgen/include/bspline.hpp +116 -0
- netgen/include/calcinverse.hpp +141 -0
- netgen/include/cg.hpp +368 -0
- netgen/include/chebyshev.hpp +44 -0
- netgen/include/cholesky.hpp +720 -0
- netgen/include/clapack.h +7254 -0
- netgen/include/code_generation.hpp +296 -0
- netgen/include/coefficient.hpp +2033 -0
- netgen/include/coefficient_impl.hpp +19 -0
- netgen/include/coefficient_stdmath.hpp +167 -0
- netgen/include/commutingAMG.hpp +106 -0
- netgen/include/comp.hpp +79 -0
- netgen/include/compatibility.hpp +41 -0
- netgen/include/complex_wrapper.hpp +73 -0
- netgen/include/compressedfespace.hpp +110 -0
- netgen/include/contact.hpp +235 -0
- netgen/include/diagonalmatrix.hpp +154 -0
- netgen/include/differentialoperator.hpp +276 -0
- netgen/include/diffop.hpp +1286 -0
- netgen/include/diffop_impl.hpp +328 -0
- netgen/include/diffopwithfactor.hpp +123 -0
- netgen/include/discontinuous.hpp +84 -0
- netgen/include/dump.hpp +949 -0
- netgen/include/ectypes.hpp +121 -0
- netgen/include/eigen.hpp +60 -0
- netgen/include/eigensystem.hpp +18 -0
- netgen/include/elasticity_equations.hpp +595 -0
- netgen/include/elementbyelement.hpp +195 -0
- netgen/include/elementtopology.hpp +1760 -0
- netgen/include/elementtransformation.hpp +339 -0
- netgen/include/evalfunc.hpp +405 -0
- netgen/include/expr.hpp +1686 -0
- netgen/include/facetfe.hpp +175 -0
- netgen/include/facetfespace.hpp +180 -0
- netgen/include/facethofe.hpp +111 -0
- netgen/include/facetsurffespace.hpp +112 -0
- netgen/include/fe_interfaces.hpp +32 -0
- netgen/include/fem.hpp +87 -0
- netgen/include/fesconvert.hpp +14 -0
- netgen/include/fespace.hpp +1449 -0
- netgen/include/finiteelement.hpp +286 -0
- netgen/include/globalinterfacespace.hpp +77 -0
- netgen/include/globalspace.hpp +115 -0
- netgen/include/gridfunction.hpp +525 -0
- netgen/include/h1amg.hpp +124 -0
- netgen/include/h1hofe.hpp +188 -0
- netgen/include/h1hofe_impl.hpp +1262 -0
- netgen/include/h1hofefo.hpp +148 -0
- netgen/include/h1hofefo_impl.hpp +185 -0
- netgen/include/h1hofespace.hpp +167 -0
- netgen/include/h1lofe.hpp +1240 -0
- netgen/include/h1lumping.hpp +41 -0
- netgen/include/hcurl_equations.hpp +1381 -0
- netgen/include/hcurlcurlfe.hpp +2241 -0
- netgen/include/hcurlcurlfespace.hpp +78 -0
- netgen/include/hcurlfe.hpp +259 -0
- netgen/include/hcurlfe_utils.hpp +107 -0
- netgen/include/hcurlhdiv_dshape.hpp +857 -0
- netgen/include/hcurlhdivfes.hpp +308 -0
- netgen/include/hcurlhofe.hpp +175 -0
- netgen/include/hcurlhofe_impl.hpp +1871 -0
- netgen/include/hcurlhofespace.hpp +193 -0
- netgen/include/hcurllofe.hpp +1146 -0
- netgen/include/hdiv_equations.hpp +880 -0
- netgen/include/hdivdivfe.hpp +2923 -0
- netgen/include/hdivdivsurfacespace.hpp +76 -0
- netgen/include/hdivfe.hpp +206 -0
- netgen/include/hdivfe_utils.hpp +717 -0
- netgen/include/hdivfes.hpp +75 -0
- netgen/include/hdivhofe.hpp +447 -0
- netgen/include/hdivhofe_impl.hpp +1107 -0
- netgen/include/hdivhofefo.hpp +229 -0
- netgen/include/hdivhofespace.hpp +177 -0
- netgen/include/hdivhosurfacefespace.hpp +106 -0
- netgen/include/hdivlofe.hpp +773 -0
- netgen/include/hidden.hpp +74 -0
- netgen/include/householder.hpp +181 -0
- netgen/include/hypre_ams_precond.hpp +123 -0
- netgen/include/hypre_precond.hpp +73 -0
- netgen/include/integrator.hpp +2012 -0
- netgen/include/integratorcf.hpp +253 -0
- netgen/include/interpolate.hpp +49 -0
- netgen/include/intrule.hpp +2542 -0
- netgen/include/intrules_SauterSchwab.hpp +25 -0
- netgen/include/irspace.hpp +49 -0
- netgen/include/jacobi.hpp +153 -0
- netgen/include/kernels.hpp +762 -0
- netgen/include/l2hofe.hpp +194 -0
- netgen/include/l2hofe_impl.hpp +564 -0
- netgen/include/l2hofefo.hpp +542 -0
- netgen/include/l2hofespace.hpp +344 -0
- netgen/include/la.hpp +38 -0
- netgen/include/linearform.hpp +266 -0
- netgen/include/matrix.hpp +2140 -0
- netgen/include/memusage.hpp +41 -0
- netgen/include/meshaccess.hpp +1359 -0
- netgen/include/mgpre.hpp +204 -0
- netgen/include/mp_coefficient.hpp +145 -0
- netgen/include/mptools.hpp +2281 -0
- netgen/include/multigrid.hpp +42 -0
- netgen/include/multivector.hpp +447 -0
- netgen/include/mumpsinverse.hpp +187 -0
- netgen/include/mycomplex.hpp +361 -0
- netgen/include/ng_lapack.hpp +1661 -0
- netgen/include/ngblas.hpp +1232 -0
- netgen/include/ngs_defines.hpp +30 -0
- netgen/include/ngs_stdcpp_include.hpp +106 -0
- netgen/include/ngs_utils.hpp +121 -0
- netgen/include/ngsobject.hpp +1019 -0
- netgen/include/ngsstream.hpp +113 -0
- netgen/include/ngstd.hpp +72 -0
- netgen/include/nodalhofe.hpp +96 -0
- netgen/include/nodalhofe_impl.hpp +141 -0
- netgen/include/normalfacetfe.hpp +223 -0
- netgen/include/normalfacetfespace.hpp +98 -0
- netgen/include/normalfacetsurfacefespace.hpp +84 -0
- netgen/include/order.hpp +251 -0
- netgen/include/parallel_matrices.hpp +222 -0
- netgen/include/paralleldofs.hpp +340 -0
- netgen/include/parallelngs.hpp +23 -0
- netgen/include/parallelvector.hpp +269 -0
- netgen/include/pardisoinverse.hpp +200 -0
- netgen/include/periodic.hpp +129 -0
- netgen/include/plateaufespace.hpp +25 -0
- netgen/include/pml.hpp +275 -0
- netgen/include/pmltrafo.hpp +631 -0
- netgen/include/postproc.hpp +142 -0
- netgen/include/potentialtools.hpp +22 -0
- netgen/include/precomp.hpp +60 -0
- netgen/include/preconditioner.hpp +602 -0
- netgen/include/prolongation.hpp +377 -0
- netgen/include/python_comp.hpp +107 -0
- netgen/include/python_fem.hpp +89 -0
- netgen/include/python_linalg.hpp +58 -0
- netgen/include/python_ngstd.hpp +386 -0
- netgen/include/recursive_pol.hpp +4896 -0
- netgen/include/recursive_pol_tet.hpp +395 -0
- netgen/include/recursive_pol_trig.hpp +492 -0
- netgen/include/reorderedfespace.hpp +81 -0
- netgen/include/sample_sort.hpp +105 -0
- netgen/include/scalarfe.hpp +335 -0
- netgen/include/shapefunction_utils.hpp +113 -0
- netgen/include/simd_complex.hpp +329 -0
- netgen/include/smoother.hpp +253 -0
- netgen/include/solve.hpp +89 -0
- netgen/include/sparsecholesky.hpp +313 -0
- netgen/include/sparsematrix.hpp +1038 -0
- netgen/include/sparsematrix_dyn.hpp +90 -0
- netgen/include/sparsematrix_impl.hpp +1013 -0
- netgen/include/special_matrix.hpp +463 -0
- netgen/include/specialelement.hpp +125 -0
- netgen/include/statushandler.hpp +33 -0
- netgen/include/stringops.hpp +12 -0
- netgen/include/superluinverse.hpp +136 -0
- netgen/include/symbolicintegrator.hpp +850 -0
- netgen/include/symmetricmatrix.hpp +144 -0
- netgen/include/tangentialfacetfe.hpp +224 -0
- netgen/include/tangentialfacetfespace.hpp +91 -0
- netgen/include/tensor.hpp +522 -0
- netgen/include/tensorcoefficient.hpp +446 -0
- netgen/include/tensorproductintegrator.hpp +113 -0
- netgen/include/thcurlfe.hpp +128 -0
- netgen/include/thcurlfe_impl.hpp +380 -0
- netgen/include/thdivfe.hpp +80 -0
- netgen/include/thdivfe_impl.hpp +492 -0
- netgen/include/tpdiffop.hpp +461 -0
- netgen/include/tpfes.hpp +133 -0
- netgen/include/tpintrule.hpp +224 -0
- netgen/include/triangular.hpp +465 -0
- netgen/include/tscalarfe.hpp +245 -0
- netgen/include/tscalarfe_impl.hpp +1029 -0
- netgen/include/umfpackinverse.hpp +148 -0
- netgen/include/vector.hpp +1273 -0
- netgen/include/voxelcoefficientfunction.hpp +41 -0
- netgen/include/vtkoutput.hpp +198 -0
- netgen/include/vvector.hpp +208 -0
- netgen/include/webgui.hpp +92 -0
- netgen/libngbla.dylib +0 -0
- netgen/libngcomp.dylib +0 -0
- netgen/libngfem.dylib +0 -0
- netgen/libngla.dylib +0 -0
- netgen/libngsbem.dylib +0 -0
- netgen/libngsolve.dylib +0 -0
- netgen/libngstd.dylib +0 -0
- ngsolve/TensorProductTools.py +210 -0
- ngsolve/__console.py +94 -0
- ngsolve/__expr.py +181 -0
- ngsolve/__init__.py +148 -0
- ngsolve/__init__.pyi +233 -0
- ngsolve/_scikit_build_core_dependencies.py +30 -0
- ngsolve/bla.pyi +1153 -0
- ngsolve/bvp.py +78 -0
- ngsolve/bvp.pyi +32 -0
- ngsolve/cmake/NGSolveConfig.cmake +102 -0
- ngsolve/cmake/ngsolve-targets-release.cmake +79 -0
- ngsolve/cmake/ngsolve-targets.cmake +163 -0
- ngsolve/comp/__init__.pyi +5449 -0
- ngsolve/comp/pml.pyi +89 -0
- ngsolve/config/__init__.py +1 -0
- ngsolve/config/__init__.pyi +43 -0
- ngsolve/config/__main__.py +4 -0
- ngsolve/config/config.py +60 -0
- ngsolve/config/config.pyi +45 -0
- ngsolve/demos/TensorProduct/__init__.py +0 -0
- ngsolve/demos/TensorProduct/tp_dg_1d_1d.py +80 -0
- ngsolve/demos/TensorProduct/tp_dg_1d_2d.py +73 -0
- ngsolve/demos/TensorProduct/tp_dg_2d_1d.py +72 -0
- ngsolve/demos/TensorProduct/tp_dg_2d_2d.py +66 -0
- ngsolve/demos/__init__.py +0 -0
- ngsolve/demos/howto/__init__.py +0 -0
- ngsolve/demos/howto/hhj.py +44 -0
- ngsolve/demos/howto/hybrid_dg.py +53 -0
- ngsolve/demos/howto/mixed.py +30 -0
- ngsolve/demos/howto/nonlin.py +29 -0
- ngsolve/demos/howto/pickling.py +26 -0
- ngsolve/demos/howto/pml.py +31 -0
- ngsolve/demos/howto/taskmanager.py +20 -0
- ngsolve/demos/howto/tdnns.py +47 -0
- ngsolve/demos/howto/timeDG-skeleton.py +45 -0
- ngsolve/demos/howto/timeDG.py +38 -0
- ngsolve/demos/howto/timeDGlap.py +42 -0
- ngsolve/demos/howto/timeDGwave.py +61 -0
- ngsolve/demos/intro/__init__.py +0 -0
- ngsolve/demos/intro/adaptive.py +123 -0
- ngsolve/demos/intro/cmagnet.py +59 -0
- ngsolve/demos/intro/elasticity.py +76 -0
- ngsolve/demos/intro/navierstokes.py +74 -0
- ngsolve/demos/intro/poisson.ipynb +170 -0
- ngsolve/demos/intro/poisson.py +41 -0
- ngsolve/demos/mpi/__init__.py +0 -0
- ngsolve/demos/mpi/mpi_cmagnet.py +87 -0
- ngsolve/demos/mpi/mpi_navierstokes.py +117 -0
- ngsolve/demos/mpi/mpi_poisson.py +89 -0
- ngsolve/demos/mpi/mpi_timeDG.py +82 -0
- ngsolve/directsolvers.py +26 -0
- ngsolve/directsolvers.pyi +15 -0
- ngsolve/eigenvalues.py +364 -0
- ngsolve/eigenvalues.pyi +30 -0
- ngsolve/fem.pyi +1647 -0
- ngsolve/internal.py +89 -0
- ngsolve/krylovspace.py +1013 -0
- ngsolve/krylovspace.pyi +298 -0
- ngsolve/la.pyi +1230 -0
- ngsolve/meshes.py +748 -0
- ngsolve/ngs2petsc.py +310 -0
- ngsolve/ngscxx.py +42 -0
- ngsolve/ngslib.so +0 -0
- ngsolve/ngstd.pyi +59 -0
- ngsolve/nonlinearsolvers.py +203 -0
- ngsolve/nonlinearsolvers.pyi +95 -0
- ngsolve/preconditioners.py +11 -0
- ngsolve/preconditioners.pyi +7 -0
- ngsolve/solve.pyi +109 -0
- ngsolve/solve_implementation.py +168 -0
- ngsolve/solve_implementation.pyi +42 -0
- ngsolve/solvers.py +7 -0
- ngsolve/solvers.pyi +14 -0
- ngsolve/timestepping.py +185 -0
- ngsolve/timestepping.pyi +28 -0
- ngsolve/timing.py +108 -0
- ngsolve/timing.pyi +54 -0
- ngsolve/utils.py +167 -0
- ngsolve/utils.pyi +273 -0
- ngsolve/webgui.py +670 -0
- ngsolve-6.2.2506.post74.dev0.data/data/Netgen.icns +0 -0
- ngsolve-6.2.2506.post74.dev0.data/data/bin/ngscxx +17 -0
- ngsolve-6.2.2506.post74.dev0.data/data/bin/ngsld +13 -0
- ngsolve-6.2.2506.post74.dev0.data/data/bin/ngsolve.tcl +648 -0
- ngsolve-6.2.2506.post74.dev0.data/data/bin/ngspy +2 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/beam.geo +17 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/beam.vol +240 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/chip.in2d +41 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/chip.vol +614 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coil.geo +12 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coil.vol +2560 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coilshield.geo +24 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coilshield.vol +3179 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/cube.geo +19 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/cube.vol +1832 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d10_DGdoubleglazing.pde +50 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d11_chip_nitsche.pde +40 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d1_square.pde +43 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d2_chip.pde +35 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d3_helmholtz.pde +22 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d4_cube.pde +46 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d5_beam.pde +74 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d6_shaft.pde +73 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d7_coil.pde +50 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d8_coilshield.pde +49 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d9_hybridDG.pde +72 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/doubleglazing.in2d +27 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/doubleglazing.vol +737 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/piezo2d40round4.vol.gz +0 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/shaft.geo +73 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/shaft.vol +4291 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/square.in2d +17 -0
- ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/square.vol +149 -0
- ngsolve-6.2.2506.post74.dev0.dist-info/METADATA +13 -0
- ngsolve-6.2.2506.post74.dev0.dist-info/RECORD +315 -0
- ngsolve-6.2.2506.post74.dev0.dist-info/WHEEL +5 -0
- ngsolve-6.2.2506.post74.dev0.dist-info/licenses/LICENSE +504 -0
- ngsolve-6.2.2506.post74.dev0.dist-info/top_level.txt +2 -0
|
@@ -0,0 +1,602 @@
|
|
|
1
|
+
#ifndef FILE_PRECONDITIONER
|
|
2
|
+
#define FILE_PRECONDITIONER
|
|
3
|
+
|
|
4
|
+
/*********************************************************************/
|
|
5
|
+
/* File: preconditioner.hh */
|
|
6
|
+
/* Author: Joachim Schoeberl */
|
|
7
|
+
/* Date: 10. Jul. 2000 */
|
|
8
|
+
/*********************************************************************/
|
|
9
|
+
|
|
10
|
+
// #include <la.hpp>
|
|
11
|
+
#include <basematrix.hpp>
|
|
12
|
+
#include <mgpre.hpp>
|
|
13
|
+
#include <chebyshev.hpp>
|
|
14
|
+
|
|
15
|
+
namespace ngcomp
|
|
16
|
+
{
|
|
17
|
+
using namespace ngla;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
Base class for preconditioners.
|
|
21
|
+
*/
|
|
22
|
+
class NGS_DLL_HEADER Preconditioner : public BaseMatrix, public NGS_Object
|
|
23
|
+
{
|
|
24
|
+
private:
|
|
25
|
+
weak_ptr<BilinearForm> bf;
|
|
26
|
+
bool is_registered = false;
|
|
27
|
+
protected:
|
|
28
|
+
bool test;
|
|
29
|
+
bool timing;
|
|
30
|
+
bool print;
|
|
31
|
+
|
|
32
|
+
/// if true, the update in SolveBVP() is ignored, Update() has to be called explicitly.
|
|
33
|
+
bool laterupdate;
|
|
34
|
+
|
|
35
|
+
double * testresult_ok;
|
|
36
|
+
double * testresult_min;
|
|
37
|
+
double * testresult_max;
|
|
38
|
+
|
|
39
|
+
// for calculation of eigenvalues
|
|
40
|
+
bool uselapack;
|
|
41
|
+
|
|
42
|
+
int on_proc;
|
|
43
|
+
|
|
44
|
+
public:
|
|
45
|
+
Preconditioner (shared_ptr<BilinearForm> bfa, const Flags & aflags,
|
|
46
|
+
const string aname = "precond");
|
|
47
|
+
///
|
|
48
|
+
virtual ~Preconditioner ();
|
|
49
|
+
|
|
50
|
+
///
|
|
51
|
+
virtual bool LaterUpdate (void) { return laterupdate; }
|
|
52
|
+
///
|
|
53
|
+
virtual void Update () override = 0;
|
|
54
|
+
///
|
|
55
|
+
virtual void CleanUpLevel () { ; }
|
|
56
|
+
///
|
|
57
|
+
virtual const BaseMatrix & GetMatrix() const = 0;
|
|
58
|
+
/*
|
|
59
|
+
{
|
|
60
|
+
return *this;
|
|
61
|
+
}
|
|
62
|
+
*/
|
|
63
|
+
virtual shared_ptr<BaseMatrix> GetMatrixPtr()
|
|
64
|
+
{
|
|
65
|
+
return BaseMatrix::SharedFromThis<BaseMatrix>();
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
shared_ptr<BilinearForm> GetBilinearForm() const
|
|
69
|
+
{
|
|
70
|
+
return bf.lock();
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
virtual bool IsComplex() const override { return GetMatrix().IsComplex(); }
|
|
74
|
+
|
|
75
|
+
///
|
|
76
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override
|
|
77
|
+
{
|
|
78
|
+
GetMatrix().Mult(x, y);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override
|
|
82
|
+
{
|
|
83
|
+
GetMatrix().MultAdd(s, x, y);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
virtual void MultTrans (const BaseVector & x, BaseVector & y) const override
|
|
87
|
+
{
|
|
88
|
+
GetMatrix().MultTrans(x, y);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override
|
|
92
|
+
{
|
|
93
|
+
GetMatrix().MultTransAdd(s, x, y);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
virtual void InitLevel (shared_ptr<BitArray> freedofs = NULL) { ; }
|
|
100
|
+
virtual void FinalizeLevel (const ngla::BaseMatrix * mat = NULL) { ; }
|
|
101
|
+
virtual void AddElementMatrix (FlatArray<int> dnums,
|
|
102
|
+
FlatMatrix<double> elmat,
|
|
103
|
+
ElementId ei,
|
|
104
|
+
LocalHeap & lh) { ; }
|
|
105
|
+
|
|
106
|
+
virtual void AddElementMatrix (FlatArray<int> dnums,
|
|
107
|
+
FlatMatrix<Complex> elmat,
|
|
108
|
+
ElementId ei,
|
|
109
|
+
LocalHeap & lh) { ; }
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
virtual const BaseMatrix & GetAMatrix() const
|
|
114
|
+
{ throw Exception ("Preconditioner, A-Matrix not available"); }
|
|
115
|
+
|
|
116
|
+
///
|
|
117
|
+
virtual const char * ClassName() const
|
|
118
|
+
{ return "base-class Preconditioner"; }
|
|
119
|
+
|
|
120
|
+
virtual AutoVector CreateRowVector () const override
|
|
121
|
+
{
|
|
122
|
+
return GetAMatrix().CreateColVector();
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
virtual AutoVector CreateColVector () const override
|
|
126
|
+
{
|
|
127
|
+
return GetAMatrix().CreateRowVector();
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
virtual void PrintReport (ostream & ost) const override
|
|
131
|
+
{
|
|
132
|
+
ost << "type = " << ClassName() << endl;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
virtual Array<MemoryUsage> GetMemoryUsage () const override
|
|
136
|
+
{
|
|
137
|
+
throw Exception(string("MemoryUsage not implemented for preconditioner ")+ClassName());
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
virtual int VHeight() const override { return GetMatrix().VHeight();}
|
|
141
|
+
virtual int VWidth() const override { return GetMatrix().VWidth();}
|
|
142
|
+
|
|
143
|
+
void Test () const;
|
|
144
|
+
void Timing () const;
|
|
145
|
+
void ThrowPreconditionerNotReady() const;
|
|
146
|
+
const Flags & GetFlags() const { return flags; }
|
|
147
|
+
|
|
148
|
+
using BaseMatrix::shared_from_this;
|
|
149
|
+
using NGS_Object::GetMemoryTracer;
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
///
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
// ****************************** LocalPreconditioner *******************************
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
Local (Block-Jacobi or Block-Gauss-Seidel) preconditioner
|
|
162
|
+
*/
|
|
163
|
+
class LocalPreconditioner : public Preconditioner
|
|
164
|
+
{
|
|
165
|
+
protected:
|
|
166
|
+
///
|
|
167
|
+
shared_ptr<BilinearForm> bfa;
|
|
168
|
+
///
|
|
169
|
+
shared_ptr<BaseMatrix> jacobi;
|
|
170
|
+
///
|
|
171
|
+
bool block;
|
|
172
|
+
bool locprectest;
|
|
173
|
+
string locprecfile;
|
|
174
|
+
bool GaussSeidel = false;
|
|
175
|
+
string ct;
|
|
176
|
+
shared_ptr<Preconditioner> coarse_pre;
|
|
177
|
+
function<shared_ptr<Table<DofId>>(FESpace&)> blockcreator;
|
|
178
|
+
public:
|
|
179
|
+
///
|
|
180
|
+
LocalPreconditioner (shared_ptr<BilinearForm> bfa, const Flags & aflags,
|
|
181
|
+
const string aname = "localprecond");
|
|
182
|
+
///
|
|
183
|
+
virtual ~LocalPreconditioner() { ; }
|
|
184
|
+
///
|
|
185
|
+
|
|
186
|
+
static DocInfo GetDocu ();
|
|
187
|
+
|
|
188
|
+
///
|
|
189
|
+
virtual bool IsComplex() const override { return jacobi->IsComplex(); }
|
|
190
|
+
|
|
191
|
+
///
|
|
192
|
+
virtual void FinalizeLevel (const BaseMatrix * mat) override;
|
|
193
|
+
|
|
194
|
+
virtual void Update () override
|
|
195
|
+
{
|
|
196
|
+
if (GetTimeStamp() < bfa->GetTimeStamp())
|
|
197
|
+
FinalizeLevel (&bfa->GetMatrix());
|
|
198
|
+
if (test) Test();
|
|
199
|
+
if(locprectest) LocPrecTest();
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
///
|
|
204
|
+
virtual const BaseMatrix & GetMatrix() const override
|
|
205
|
+
{
|
|
206
|
+
if (!jacobi)
|
|
207
|
+
ThrowPreconditionerNotReady();
|
|
208
|
+
return *jacobi;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
virtual shared_ptr<BaseMatrix> GetMatrixPtr() override
|
|
212
|
+
{
|
|
213
|
+
if (!jacobi)
|
|
214
|
+
ThrowPreconditionerNotReady();
|
|
215
|
+
return jacobi;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
///
|
|
219
|
+
virtual const BaseMatrix & GetAMatrix() const override
|
|
220
|
+
{
|
|
221
|
+
return bfa->GetMatrix();
|
|
222
|
+
}
|
|
223
|
+
///
|
|
224
|
+
virtual const char * ClassName() const override
|
|
225
|
+
{ return "Local Preconditioner"; }
|
|
226
|
+
void LocPrecTest () const;
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
class NGS_DLL_HEADER BASE_BDDCPreconditioner : public Preconditioner
|
|
232
|
+
{
|
|
233
|
+
public:
|
|
234
|
+
BASE_BDDCPreconditioner (shared_ptr<BilinearForm> abfa, const Flags & aflags,
|
|
235
|
+
const string aname = "bddcprecond");
|
|
236
|
+
static DocInfo GetDocu ();
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
template <class SCAL, class TV> class BDDCMatrix;
|
|
241
|
+
|
|
242
|
+
template <class SCAL, class TV = SCAL>
|
|
243
|
+
class NGS_DLL_HEADER BDDCPreconditioner : public BASE_BDDCPreconditioner
|
|
244
|
+
{
|
|
245
|
+
shared_ptr<S_BilinearForm<SCAL>> bfa;
|
|
246
|
+
shared_ptr<FESpace> fes;
|
|
247
|
+
shared_ptr<BDDCMatrix<SCAL,TV>> pre;
|
|
248
|
+
shared_ptr<BitArray> freedofs;
|
|
249
|
+
string inversetype;
|
|
250
|
+
string coarsetype;
|
|
251
|
+
bool block, hypre;
|
|
252
|
+
public:
|
|
253
|
+
BDDCPreconditioner (shared_ptr<BilinearForm> abfa, const Flags & aflags,
|
|
254
|
+
const string aname = "bddcprecond");
|
|
255
|
+
|
|
256
|
+
virtual ~BDDCPreconditioner()
|
|
257
|
+
{
|
|
258
|
+
; // delete pre;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
virtual void InitLevel (shared_ptr<BitArray> _freedofs) override;
|
|
262
|
+
|
|
263
|
+
virtual void FinalizeLevel (const BaseMatrix *) override;
|
|
264
|
+
virtual void AddElementMatrix (FlatArray<int> dnums,
|
|
265
|
+
FlatMatrix<SCAL> elmat,
|
|
266
|
+
ElementId id,
|
|
267
|
+
LocalHeap & lh) override;
|
|
268
|
+
|
|
269
|
+
virtual void Update () override
|
|
270
|
+
{
|
|
271
|
+
if (timestamp < bfa->GetTimeStamp())
|
|
272
|
+
throw Exception("A BDDC preconditioner must be defined before assembling");
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
virtual const BaseMatrix & GetAMatrix() const override
|
|
276
|
+
{
|
|
277
|
+
return bfa->GetMatrix();
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
virtual const BaseMatrix & GetMatrix() const override;
|
|
281
|
+
virtual shared_ptr<BaseMatrix> GetMatrixPtr() override;
|
|
282
|
+
|
|
283
|
+
virtual void CleanUpLevel () override
|
|
284
|
+
{
|
|
285
|
+
/*
|
|
286
|
+
delete pre;
|
|
287
|
+
pre = NULL;
|
|
288
|
+
*/
|
|
289
|
+
pre.reset();
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
294
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
295
|
+
|
|
296
|
+
virtual const char * ClassName() const override
|
|
297
|
+
{ return "BDDC Preconditioner"; }
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
///
|
|
308
|
+
class TwoLevelPreconditioner : public Preconditioner
|
|
309
|
+
{
|
|
310
|
+
///
|
|
311
|
+
shared_ptr<BilinearForm> bfa;
|
|
312
|
+
///
|
|
313
|
+
shared_ptr<Preconditioner> cpre;
|
|
314
|
+
///
|
|
315
|
+
ngmg::TwoLevelMatrix * premat;
|
|
316
|
+
///
|
|
317
|
+
// int smoothingsteps;
|
|
318
|
+
public:
|
|
319
|
+
///
|
|
320
|
+
virtual ~TwoLevelPreconditioner();
|
|
321
|
+
|
|
322
|
+
///
|
|
323
|
+
virtual void Update ();
|
|
324
|
+
///
|
|
325
|
+
virtual const BaseMatrix & GetMatrix() const;
|
|
326
|
+
// { return *new SparseMatrix<double> (1,1); } // *premat; }
|
|
327
|
+
// { return *premat; }
|
|
328
|
+
///
|
|
329
|
+
virtual const char * ClassName() const
|
|
330
|
+
{ return "TwoLevel Preconditioner"; }
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
///
|
|
341
|
+
class NGS_DLL_HEADER ComplexPreconditioner : public Preconditioner
|
|
342
|
+
{
|
|
343
|
+
protected:
|
|
344
|
+
///
|
|
345
|
+
shared_ptr<Preconditioner> creal;
|
|
346
|
+
///
|
|
347
|
+
// Real2ComplexMatrix<double,Complex> cm;
|
|
348
|
+
int dim;
|
|
349
|
+
BaseMatrix * cm;
|
|
350
|
+
public:
|
|
351
|
+
///
|
|
352
|
+
virtual ~ComplexPreconditioner();
|
|
353
|
+
///
|
|
354
|
+
virtual void Update ();
|
|
355
|
+
///
|
|
356
|
+
virtual const BaseMatrix & GetMatrix() const
|
|
357
|
+
{
|
|
358
|
+
return *cm;
|
|
359
|
+
}
|
|
360
|
+
///
|
|
361
|
+
virtual const char * ClassName() const
|
|
362
|
+
{ return "Complex Preconditioner"; }
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
///
|
|
369
|
+
class ChebychevPreconditioner : public Preconditioner
|
|
370
|
+
{
|
|
371
|
+
protected:
|
|
372
|
+
///
|
|
373
|
+
shared_ptr<Preconditioner> csimple;
|
|
374
|
+
///
|
|
375
|
+
ChebyshevIteration * cm;
|
|
376
|
+
///
|
|
377
|
+
shared_ptr<BilinearForm> bfa;
|
|
378
|
+
///
|
|
379
|
+
int steps;
|
|
380
|
+
public:
|
|
381
|
+
///
|
|
382
|
+
virtual ~ChebychevPreconditioner();
|
|
383
|
+
///
|
|
384
|
+
virtual void Update ();
|
|
385
|
+
///
|
|
386
|
+
virtual const BaseMatrix & GetMatrix() const
|
|
387
|
+
{
|
|
388
|
+
return *cm;
|
|
389
|
+
}
|
|
390
|
+
virtual const BaseMatrix & GetAMatrix() const
|
|
391
|
+
{
|
|
392
|
+
return bfa->GetMatrix();
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
///
|
|
396
|
+
virtual const char * ClassName() const
|
|
397
|
+
{ return "Chebychev Preconditioner"; }
|
|
398
|
+
};
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
Multigrid preconditioner.
|
|
404
|
+
High level objects, contains a \Ref{MultigridPreconditioner}
|
|
405
|
+
*/
|
|
406
|
+
class NGS_DLL_HEADER MGPreconditioner : public Preconditioner
|
|
407
|
+
{
|
|
408
|
+
///
|
|
409
|
+
shared_ptr<ngmg::MultigridPreconditioner> mgp;
|
|
410
|
+
///
|
|
411
|
+
shared_ptr<ngmg::TwoLevelMatrix> tlp;
|
|
412
|
+
///
|
|
413
|
+
shared_ptr<BilinearForm> bfa;
|
|
414
|
+
///
|
|
415
|
+
// MGPreconditioner * low_order_preconditioner;
|
|
416
|
+
///
|
|
417
|
+
shared_ptr<BaseMatrix> coarse_pre;
|
|
418
|
+
///
|
|
419
|
+
int finesmoothingsteps;
|
|
420
|
+
///
|
|
421
|
+
string smoothertype;
|
|
422
|
+
///
|
|
423
|
+
bool mgtest;
|
|
424
|
+
string mgfile;
|
|
425
|
+
int mgnumber;
|
|
426
|
+
|
|
427
|
+
string inversetype;
|
|
428
|
+
|
|
429
|
+
public:
|
|
430
|
+
///
|
|
431
|
+
MGPreconditioner (shared_ptr<BilinearForm> bfa, const Flags & aflags,
|
|
432
|
+
const string aname = "mgprecond");
|
|
433
|
+
///
|
|
434
|
+
virtual ~MGPreconditioner() { ; }
|
|
435
|
+
|
|
436
|
+
void FreeSmootherMem(void);
|
|
437
|
+
|
|
438
|
+
virtual void FinalizeLevel (const BaseMatrix * mat) override
|
|
439
|
+
{
|
|
440
|
+
Update();
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
///
|
|
444
|
+
virtual void Update () override;
|
|
445
|
+
///
|
|
446
|
+
virtual void CleanUpLevel () override;
|
|
447
|
+
///
|
|
448
|
+
virtual const BaseMatrix & GetMatrix() const override;
|
|
449
|
+
///
|
|
450
|
+
virtual const BaseMatrix & GetAMatrix() const override
|
|
451
|
+
{
|
|
452
|
+
return bfa->GetMatrix();
|
|
453
|
+
}
|
|
454
|
+
///
|
|
455
|
+
virtual const char * ClassName() const override
|
|
456
|
+
{ return "Multigrid Preconditioner"; }
|
|
457
|
+
|
|
458
|
+
virtual void PrintReport (ostream & ost) const override;
|
|
459
|
+
|
|
460
|
+
virtual Array<MemoryUsage> GetMemoryUsage () const override;
|
|
461
|
+
|
|
462
|
+
void MgTest () const;
|
|
463
|
+
|
|
464
|
+
void SetDirectSolverCluster(shared_ptr<Array<int>> cluster);
|
|
465
|
+
void SetCoarsePreconditioner(shared_ptr<BaseMatrix> prec);
|
|
466
|
+
};
|
|
467
|
+
|
|
468
|
+
class CommutingAMGPreconditioner : public Preconditioner
|
|
469
|
+
{
|
|
470
|
+
protected:
|
|
471
|
+
shared_ptr<BilinearForm> bfa;
|
|
472
|
+
// CommutingAMG * amg;
|
|
473
|
+
BaseMatrix * amg;
|
|
474
|
+
shared_ptr<CoefficientFunction> coefe, coeff, coefse;
|
|
475
|
+
bool hcurl;
|
|
476
|
+
bool coarsegrid;
|
|
477
|
+
int levels;
|
|
478
|
+
public:
|
|
479
|
+
virtual ~CommutingAMGPreconditioner ();
|
|
480
|
+
|
|
481
|
+
virtual void Update ();
|
|
482
|
+
///
|
|
483
|
+
|
|
484
|
+
virtual const BaseMatrix & GetAMatrix() const
|
|
485
|
+
{
|
|
486
|
+
return bfa->GetMatrix();
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
virtual const BaseMatrix & GetMatrix() const
|
|
490
|
+
{
|
|
491
|
+
return *amg;
|
|
492
|
+
}
|
|
493
|
+
///
|
|
494
|
+
virtual void CleanUpLevel ();
|
|
495
|
+
|
|
496
|
+
///
|
|
497
|
+
virtual const char * ClassName() const
|
|
498
|
+
{ return "CommutingAMG Preconditioner"; }
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
// added 08/19/2003:
|
|
507
|
+
|
|
508
|
+
////////////////////////////////////////////////////////////////////////////////
|
|
509
|
+
//
|
|
510
|
+
// special preconditioner for system
|
|
511
|
+
// ( A M )
|
|
512
|
+
// ( -M A )
|
|
513
|
+
//
|
|
514
|
+
//
|
|
515
|
+
// C = ( 1 1 ) ( A+M )
|
|
516
|
+
// ( -1 1 ) ( A+M )
|
|
517
|
+
//
|
|
518
|
+
////////////////////////////////////////////////////////////////////////////////
|
|
519
|
+
class NonsymmetricPreconditioner : public Preconditioner
|
|
520
|
+
{
|
|
521
|
+
protected:
|
|
522
|
+
///
|
|
523
|
+
shared_ptr<Preconditioner> cbase;
|
|
524
|
+
///
|
|
525
|
+
int dim;
|
|
526
|
+
BaseMatrix * cm;
|
|
527
|
+
public:
|
|
528
|
+
///
|
|
529
|
+
virtual ~NonsymmetricPreconditioner();
|
|
530
|
+
///
|
|
531
|
+
virtual bool IsComplex() const { return cm->IsComplex(); }
|
|
532
|
+
|
|
533
|
+
virtual void Update ();
|
|
534
|
+
///
|
|
535
|
+
virtual const BaseMatrix & GetMatrix() const
|
|
536
|
+
{
|
|
537
|
+
return *cm;
|
|
538
|
+
}
|
|
539
|
+
///
|
|
540
|
+
virtual const char * ClassName() const
|
|
541
|
+
{ return "Nonsymmetric Preconditioner"; }
|
|
542
|
+
};
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
/// Registered Preconditioner classes
|
|
551
|
+
class NGS_DLL_HEADER PreconditionerClasses
|
|
552
|
+
{
|
|
553
|
+
public:
|
|
554
|
+
struct PreconditionerInfo
|
|
555
|
+
{
|
|
556
|
+
string name;
|
|
557
|
+
function<shared_ptr<Preconditioner>(shared_ptr<BilinearForm>,const Flags &,const string)> creatorbf;
|
|
558
|
+
DocInfo docinfo;
|
|
559
|
+
|
|
560
|
+
PreconditionerInfo (const string & aname,
|
|
561
|
+
function<shared_ptr<Preconditioner>(shared_ptr<BilinearForm>, const Flags &, const string)> acreateorbf,
|
|
562
|
+
DocInfo adocinfo);
|
|
563
|
+
};
|
|
564
|
+
|
|
565
|
+
Array<unique_ptr<PreconditionerInfo>> prea;
|
|
566
|
+
public:
|
|
567
|
+
PreconditionerClasses() = default;
|
|
568
|
+
PreconditionerClasses(const PreconditionerClasses &) = default;
|
|
569
|
+
~PreconditionerClasses() = default;
|
|
570
|
+
|
|
571
|
+
void AddPreconditioner (const string & aname,
|
|
572
|
+
function<shared_ptr<Preconditioner>(shared_ptr<BilinearForm>, const Flags&, const string)> createorbf,
|
|
573
|
+
DocInfo docinfo = DocInfo());
|
|
574
|
+
|
|
575
|
+
const Array<unique_ptr<PreconditionerInfo>> & GetPreconditioners() { return prea; }
|
|
576
|
+
const PreconditionerInfo * GetPreconditioner(const string & name);
|
|
577
|
+
|
|
578
|
+
void Print (ostream & ost) const;
|
|
579
|
+
void Cleanup();
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
extern NGS_DLL_HEADER PreconditionerClasses & GetPreconditionerClasses ();
|
|
583
|
+
|
|
584
|
+
template <typename PRECOND>
|
|
585
|
+
class RegisterPreconditioner
|
|
586
|
+
{
|
|
587
|
+
public:
|
|
588
|
+
RegisterPreconditioner (string label, bool isparallel = true)
|
|
589
|
+
{
|
|
590
|
+
GetPreconditionerClasses().AddPreconditioner (label, CreateBF);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
static shared_ptr<Preconditioner> CreateBF (shared_ptr<BilinearForm> bfa, const Flags & flags, const string & name)
|
|
594
|
+
{
|
|
595
|
+
return make_shared<PRECOND> (bfa, flags, name);
|
|
596
|
+
}
|
|
597
|
+
};
|
|
598
|
+
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
#endif
|
|
602
|
+
|