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,463 @@
|
|
|
1
|
+
#ifndef FILE_NGS_SPECIALMATRIX
|
|
2
|
+
#define FILE_NGS_SPECIALMATRIX
|
|
3
|
+
|
|
4
|
+
/* ************************************************************************/
|
|
5
|
+
/* File: special_matrix.hpp */
|
|
6
|
+
/* Author: Joachim Schoeberl */
|
|
7
|
+
/* Date: 14 Mar. 02 */
|
|
8
|
+
/* ************************************************************************/
|
|
9
|
+
|
|
10
|
+
#include "basematrix.hpp"
|
|
11
|
+
#include "vvector.hpp"
|
|
12
|
+
|
|
13
|
+
namespace ngla
|
|
14
|
+
{
|
|
15
|
+
|
|
16
|
+
// Convert RowMajor to ColMajor matrix (stored as vector)
|
|
17
|
+
class TransposeVector : public BaseMatrix
|
|
18
|
+
{
|
|
19
|
+
int h, w; // result matrix
|
|
20
|
+
public:
|
|
21
|
+
typedef double TSCAL;
|
|
22
|
+
|
|
23
|
+
TransposeVector (int ah, int aw);
|
|
24
|
+
bool IsComplex() const override { return false; }
|
|
25
|
+
|
|
26
|
+
int VHeight() const override { return h*w; }
|
|
27
|
+
int VWidth() const override { return h*w; }
|
|
28
|
+
|
|
29
|
+
ostream & Print (ostream & ost) const override;
|
|
30
|
+
|
|
31
|
+
AutoVector CreateRowVector () const override;
|
|
32
|
+
AutoVector CreateColVector () const override;
|
|
33
|
+
|
|
34
|
+
void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
35
|
+
void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class PermutationMatrix : public BaseMatrix
|
|
41
|
+
{
|
|
42
|
+
size_t width;
|
|
43
|
+
Array<size_t> ind;
|
|
44
|
+
public:
|
|
45
|
+
PermutationMatrix (size_t awidth, Array<size_t> aind)
|
|
46
|
+
: width(awidth), ind(aind) { ; }
|
|
47
|
+
|
|
48
|
+
virtual bool IsComplex() const override { return false; }
|
|
49
|
+
|
|
50
|
+
virtual int VHeight() const override { return ind.Size(); }
|
|
51
|
+
virtual int VWidth() const override { return width; }
|
|
52
|
+
|
|
53
|
+
virtual AutoVector CreateRowVector () const override
|
|
54
|
+
{
|
|
55
|
+
return CreateBaseVector(width, false, 1);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
virtual AutoVector CreateColVector () const override
|
|
59
|
+
{
|
|
60
|
+
return CreateBaseVector(ind.Size(), false, 1);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
64
|
+
virtual void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
65
|
+
|
|
66
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
67
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
class Embedding : public BaseMatrix
|
|
72
|
+
{
|
|
73
|
+
size_t height;
|
|
74
|
+
IntRange range;
|
|
75
|
+
bool is_complex;
|
|
76
|
+
public:
|
|
77
|
+
Embedding (size_t aheight, IntRange arange, bool ais_complex = false)
|
|
78
|
+
: height(aheight), range(arange), is_complex(ais_complex) { ; }
|
|
79
|
+
|
|
80
|
+
virtual bool IsComplex() const override { return is_complex; }
|
|
81
|
+
|
|
82
|
+
virtual int VHeight() const override { return height; }
|
|
83
|
+
virtual int VWidth() const override { return range.Size(); }
|
|
84
|
+
|
|
85
|
+
virtual AutoVector CreateRowVector () const override
|
|
86
|
+
{
|
|
87
|
+
return CreateBaseVector(range.Size(), is_complex, 1);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
virtual AutoVector CreateColVector () const override
|
|
91
|
+
{
|
|
92
|
+
return CreateBaseVector(height, is_complex, 1);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
auto GetRange() const { return range; }
|
|
96
|
+
|
|
97
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
98
|
+
virtual void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
99
|
+
|
|
100
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
101
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
102
|
+
virtual shared_ptr<BaseSparseMatrix> CreateSparseMatrix() const override;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class EmbeddedMatrix : public BaseMatrix
|
|
108
|
+
{
|
|
109
|
+
size_t height;
|
|
110
|
+
IntRange range;
|
|
111
|
+
shared_ptr<BaseMatrix> mat;
|
|
112
|
+
public:
|
|
113
|
+
EmbeddedMatrix (size_t aheight, IntRange arange, shared_ptr<BaseMatrix> amat)
|
|
114
|
+
: height(aheight), range(arange), mat(amat) { ; }
|
|
115
|
+
|
|
116
|
+
virtual bool IsComplex() const override { return mat->IsComplex(); }
|
|
117
|
+
|
|
118
|
+
virtual int VHeight() const override { return height; }
|
|
119
|
+
virtual int VWidth() const override { return mat->VWidth(); }
|
|
120
|
+
|
|
121
|
+
virtual BaseMatrix::OperatorInfo GetOperatorInfo () const override;
|
|
122
|
+
|
|
123
|
+
virtual AutoVector CreateRowVector () const override
|
|
124
|
+
{
|
|
125
|
+
return mat->CreateRowVector();
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
virtual AutoVector CreateColVector () const override
|
|
129
|
+
{
|
|
130
|
+
return CreateBaseVector(height, IsComplex(), 1);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
134
|
+
virtual void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
135
|
+
|
|
136
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
137
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
138
|
+
|
|
139
|
+
shared_ptr<BaseMatrix> GetMatrix() const { return mat; }
|
|
140
|
+
IntRange GetRange() const { return range; }
|
|
141
|
+
|
|
142
|
+
virtual shared_ptr<BaseSparseMatrix> CreateSparseMatrix() const override;
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
/*
|
|
146
|
+
virtual shared_ptr<BaseMatrix> CreateDeviceMatrix() const override
|
|
147
|
+
{
|
|
148
|
+
return make_shared<EmbeddedMatrix>(height, range, mat->CreateDeviceMatrix());
|
|
149
|
+
}
|
|
150
|
+
*/
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
class EmbeddingTranspose : public BaseMatrix
|
|
155
|
+
{
|
|
156
|
+
size_t width;
|
|
157
|
+
IntRange range;
|
|
158
|
+
bool is_complex;
|
|
159
|
+
public:
|
|
160
|
+
EmbeddingTranspose (size_t awidth, IntRange arange, bool ais_complex = false)
|
|
161
|
+
: width(awidth), range(arange), is_complex(ais_complex) { ; }
|
|
162
|
+
|
|
163
|
+
virtual bool IsComplex() const override { return is_complex; }
|
|
164
|
+
|
|
165
|
+
virtual int VHeight() const override { return range.Size(); }
|
|
166
|
+
virtual int VWidth() const override { return width; }
|
|
167
|
+
|
|
168
|
+
virtual AutoVector CreateRowVector () const override
|
|
169
|
+
{
|
|
170
|
+
return CreateBaseVector(width, is_complex, 1);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
virtual AutoVector CreateColVector () const override
|
|
174
|
+
{
|
|
175
|
+
return CreateBaseVector(range.Size(), is_complex, 1);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
auto GetRange() const { return range; }
|
|
179
|
+
|
|
180
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
181
|
+
virtual void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
182
|
+
|
|
183
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
184
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
185
|
+
|
|
186
|
+
virtual shared_ptr<BaseSparseMatrix> CreateSparseMatrix() const override;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
class EmbeddedTransposeMatrix : public BaseMatrix
|
|
191
|
+
{
|
|
192
|
+
size_t width;
|
|
193
|
+
IntRange range;
|
|
194
|
+
shared_ptr<BaseMatrix> mat;
|
|
195
|
+
public:
|
|
196
|
+
EmbeddedTransposeMatrix (size_t awidth, IntRange arange, shared_ptr<BaseMatrix> amat)
|
|
197
|
+
: width(awidth), range(arange), mat(amat) { ; }
|
|
198
|
+
|
|
199
|
+
virtual bool IsComplex() const override { return mat->IsComplex(); }
|
|
200
|
+
|
|
201
|
+
virtual BaseMatrix::OperatorInfo GetOperatorInfo () const override;
|
|
202
|
+
|
|
203
|
+
virtual int VHeight() const override { return mat->Height(); }
|
|
204
|
+
virtual int VWidth() const override { return width; }
|
|
205
|
+
|
|
206
|
+
virtual AutoVector CreateRowVector () const override
|
|
207
|
+
{
|
|
208
|
+
return CreateBaseVector(width, mat->IsComplex(), 1);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
virtual AutoVector CreateColVector () const override
|
|
212
|
+
{
|
|
213
|
+
return mat->CreateColVector();
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
virtual void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
217
|
+
virtual void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
218
|
+
|
|
219
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
220
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
221
|
+
|
|
222
|
+
shared_ptr<BaseMatrix> GetMatrix() const { return mat; }
|
|
223
|
+
IntRange GetRange() const { return range; }
|
|
224
|
+
|
|
225
|
+
/*
|
|
226
|
+
virtual shared_ptr<BaseMatrix> CreateDeviceMatrix() const override
|
|
227
|
+
{
|
|
228
|
+
return make_shared<EmbeddedTransposeMatrix>(width, range, mat->CreateDeviceMatrix());
|
|
229
|
+
}
|
|
230
|
+
*/
|
|
231
|
+
};
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
template <class TVR, class TVC>
|
|
238
|
+
class Real2ComplexMatrix : public BaseMatrix
|
|
239
|
+
{
|
|
240
|
+
shared_ptr<BaseMatrix> realmatrix;
|
|
241
|
+
VVector<TVR> hx, hy;
|
|
242
|
+
public:
|
|
243
|
+
NGS_DLL_HEADER Real2ComplexMatrix (shared_ptr<BaseMatrix> arealmatrix = nullptr);
|
|
244
|
+
bool IsComplex() const override { return true; }
|
|
245
|
+
void SetMatrix (shared_ptr<BaseMatrix> arealmatrix);
|
|
246
|
+
const BaseMatrix & GetMatrix () const { return *realmatrix; }
|
|
247
|
+
void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
248
|
+
void MultAdd (Complex s, const BaseVector & x, BaseVector & y) const override;
|
|
249
|
+
|
|
250
|
+
AutoVector CreateRowVector() const override;
|
|
251
|
+
AutoVector CreateColVector() const override;
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
////////////////////////////////////////////////////////////////////////////////
|
|
258
|
+
// added 08/19/2003
|
|
259
|
+
template <class TVR>
|
|
260
|
+
class NGS_DLL_HEADER Sym2NonSymMatrix : public BaseMatrix
|
|
261
|
+
{
|
|
262
|
+
const BaseMatrix * base;
|
|
263
|
+
VVector<TVR> hx, hy;
|
|
264
|
+
public:
|
|
265
|
+
Sym2NonSymMatrix (const BaseMatrix * abasematrix = 0);
|
|
266
|
+
void SetMatrix (const BaseMatrix * abasematrix);
|
|
267
|
+
const BaseMatrix & GetMatrix () const { return *base; }
|
|
268
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const;
|
|
269
|
+
// virtual void MultAdd (Complex s, const BaseVector & x, BaseVector & y) const;
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
////////////////////////////////////////////////////////////////////////////////
|
|
275
|
+
// added 09/02/2003
|
|
276
|
+
template <class TVSMALL, class TVBIG>
|
|
277
|
+
class NGS_DLL_HEADER Small2BigNonSymMatrix : public BaseMatrix
|
|
278
|
+
{
|
|
279
|
+
const BaseMatrix * base;
|
|
280
|
+
VVector<TVSMALL> hx1, hx2, hy1, hy2;
|
|
281
|
+
public:
|
|
282
|
+
Small2BigNonSymMatrix (const BaseMatrix * abasematrix = 0);
|
|
283
|
+
void SetMatrix (const BaseMatrix * abasematrix);
|
|
284
|
+
bool IsComplex() const override { return base->IsComplex(); }
|
|
285
|
+
const BaseMatrix & GetMatrix () const { return *base; }
|
|
286
|
+
void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
287
|
+
// virtual void MultAdd (Complex s, const BaseVector & x, BaseVector & y) const;
|
|
288
|
+
void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
289
|
+
|
|
290
|
+
AutoVector CreateRowVector() const override
|
|
291
|
+
{ throw Exception("CreateRowVector not implemented for Small2BigNonSymMatrix!"); }
|
|
292
|
+
AutoVector CreateColVector() const override
|
|
293
|
+
{ throw Exception("CreateColVector not implemented for Small2BigNonSymMatrix!"); }
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
class BlockMatrix : public BaseMatrix
|
|
298
|
+
{
|
|
299
|
+
Array<Array<shared_ptr<BaseMatrix>>> mats;
|
|
300
|
+
size_t h, w;
|
|
301
|
+
|
|
302
|
+
// one matrix per row/col that can be used to create vectors etc.
|
|
303
|
+
Array<shared_ptr<BaseMatrix>> row_reps;
|
|
304
|
+
Array<shared_ptr<BaseMatrix>> col_reps;
|
|
305
|
+
|
|
306
|
+
public:
|
|
307
|
+
BlockMatrix (const Array<Array<shared_ptr<BaseMatrix>>> & amats);
|
|
308
|
+
|
|
309
|
+
bool IsComplex() const override { return row_reps[0]->IsComplex(); }
|
|
310
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
311
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
312
|
+
|
|
313
|
+
const shared_ptr<BaseMatrix> & operator()(size_t i, size_t j)
|
|
314
|
+
{
|
|
315
|
+
if (i >= h) throw Exception("Tried to access BlockMatrix row that is out of range");
|
|
316
|
+
if (j >= w) throw Exception("Tried to access BlockMatrix col that is out of range");
|
|
317
|
+
return mats[i][j];
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
size_t BlockRows() const { return h; }
|
|
321
|
+
size_t BlockCols() const { return w; }
|
|
322
|
+
|
|
323
|
+
virtual int VHeight() const override { throw Exception("VHeight does not make sense for BlockMatrix");}
|
|
324
|
+
virtual int VWidth() const override { throw Exception("VWidth does not make sense for BlockMatrix");}
|
|
325
|
+
|
|
326
|
+
virtual AutoVector CreateRowVector () const override;
|
|
327
|
+
virtual AutoVector CreateColVector () const override;
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
class BaseMatrixFromVector : public BaseMatrix
|
|
333
|
+
{
|
|
334
|
+
shared_ptr<BaseVector> vec;
|
|
335
|
+
|
|
336
|
+
public:
|
|
337
|
+
BaseMatrixFromVector (shared_ptr<BaseVector> avec);
|
|
338
|
+
|
|
339
|
+
bool IsComplex() const override { return vec->IsComplex(); }
|
|
340
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
341
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
342
|
+
|
|
343
|
+
virtual int VHeight() const override { return vec->Size(); }
|
|
344
|
+
virtual int VWidth() const override { return 1; }
|
|
345
|
+
|
|
346
|
+
virtual AutoVector CreateRowVector () const override;
|
|
347
|
+
virtual AutoVector CreateColVector () const override;
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
class BaseMatrixFromMultiVector : public BaseMatrix
|
|
352
|
+
{
|
|
353
|
+
shared_ptr<MultiVector> vec;
|
|
354
|
+
|
|
355
|
+
public:
|
|
356
|
+
BaseMatrixFromMultiVector (shared_ptr<MultiVector> avec);
|
|
357
|
+
|
|
358
|
+
bool IsComplex() const override { return vec->IsComplex(); }
|
|
359
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
360
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
361
|
+
|
|
362
|
+
virtual int VHeight() const override { return vec->RefVec()->Size(); }
|
|
363
|
+
virtual int VWidth() const override { return vec->Size(); }
|
|
364
|
+
|
|
365
|
+
virtual AutoVector CreateRowVector () const override;
|
|
366
|
+
virtual AutoVector CreateColVector () const override;
|
|
367
|
+
};
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
template <typename T = double>
|
|
371
|
+
class BaseMatrixFromMatrix : public BaseMatrix
|
|
372
|
+
{
|
|
373
|
+
Matrix<T> mat;
|
|
374
|
+
|
|
375
|
+
public:
|
|
376
|
+
NGS_DLL_HEADER BaseMatrixFromMatrix (Matrix<T> amat);
|
|
377
|
+
|
|
378
|
+
bool IsComplex() const override { return typeid(T) == typeid(Complex); }
|
|
379
|
+
virtual void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
380
|
+
virtual void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
381
|
+
virtual void MultAdd (Complex s, const BaseVector & x, BaseVector & y) const override;
|
|
382
|
+
virtual void MultTransAdd (Complex s, const BaseVector & x, BaseVector & y) const override;
|
|
383
|
+
|
|
384
|
+
virtual int VHeight() const override { return mat.Height(); }
|
|
385
|
+
virtual int VWidth() const override { return mat.Width(); }
|
|
386
|
+
virtual size_t NZE() const override { return mat.Height()*mat.Width(); }
|
|
387
|
+
virtual AutoVector CreateRowVector () const override;
|
|
388
|
+
virtual AutoVector CreateColVector () const override;
|
|
389
|
+
};
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
class LoggingMatrix : public BaseMatrix
|
|
395
|
+
{
|
|
396
|
+
shared_ptr<BaseMatrix> mat;
|
|
397
|
+
string label;
|
|
398
|
+
unique_ptr<ostream> out;
|
|
399
|
+
optional<NgMPI_Comm> comm;
|
|
400
|
+
public:
|
|
401
|
+
LoggingMatrix (shared_ptr<BaseMatrix> amat, string alabel, string filename,
|
|
402
|
+
optional<NgMPI_Comm> acomm);
|
|
403
|
+
~LoggingMatrix ();
|
|
404
|
+
int VHeight() const override { return mat->VHeight(); }
|
|
405
|
+
int VWidth() const override { return mat->VWidth(); }
|
|
406
|
+
bool IsComplex() const override { return mat->IsComplex(); }
|
|
407
|
+
|
|
408
|
+
BaseVector & AsVector() override;
|
|
409
|
+
const BaseVector & AsVector() const override;
|
|
410
|
+
void SetZero() override;
|
|
411
|
+
|
|
412
|
+
ostream & Print (ostream & ost) const override { return mat->Print(ost); }
|
|
413
|
+
Array<MemoryUsage> GetMemoryUsage () const override { return mat->GetMemoryUsage(); }
|
|
414
|
+
size_t NZE () const override { return mat->NZE(); }
|
|
415
|
+
|
|
416
|
+
void Update() override { mat->Update(); }
|
|
417
|
+
shared_ptr<BaseMatrix> CreateMatrix () const override { return mat->CreateMatrix(); }
|
|
418
|
+
AutoVector CreateRowVector () const override;
|
|
419
|
+
AutoVector CreateColVector () const override;
|
|
420
|
+
|
|
421
|
+
void Mult (const BaseVector & x, BaseVector & y) const override;
|
|
422
|
+
void MultTrans (const BaseVector & x, BaseVector & y) const override;
|
|
423
|
+
void MultAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
424
|
+
void MultAdd (Complex s, const BaseVector & x, BaseVector & y) const override;
|
|
425
|
+
void MultTransAdd (double s, const BaseVector & x, BaseVector & y) const override;
|
|
426
|
+
void MultTransAdd (Complex s, const BaseVector & x, BaseVector & y) const override;
|
|
427
|
+
void MultConjTransAdd (Complex s, const BaseVector & x, BaseVector & y) const override;
|
|
428
|
+
void MultAdd (FlatVector<double> alpha, const MultiVector & x, MultiVector & y) const override;
|
|
429
|
+
|
|
430
|
+
void MultAdd1 (double s, const BaseVector & x, BaseVector & y,
|
|
431
|
+
const BitArray * ainner = NULL,
|
|
432
|
+
const Array<int> * acluster = NULL) const override
|
|
433
|
+
{ mat->MultAdd1 (s, x, y, ainner, acluster); }
|
|
434
|
+
|
|
435
|
+
void MultAdd2 (double s, const BaseVector & x, BaseVector & y,
|
|
436
|
+
const BitArray * ainner = NULL,
|
|
437
|
+
const Array<int> * acluster = NULL) const override
|
|
438
|
+
{ mat->MultAdd2 (s, x, y, ainner, acluster); }
|
|
439
|
+
|
|
440
|
+
shared_ptr<BaseMatrix> InverseMatrix (shared_ptr<BitArray> subset = nullptr) const override
|
|
441
|
+
{ return mat->InverseMatrix(subset); }
|
|
442
|
+
|
|
443
|
+
shared_ptr<BaseMatrix> InverseMatrix (shared_ptr<const Array<int>> clusters) const override
|
|
444
|
+
{ return mat->InverseMatrix(clusters); }
|
|
445
|
+
|
|
446
|
+
INVERSETYPE SetInverseType ( INVERSETYPE ainversetype ) const override
|
|
447
|
+
{ return mat->SetInverseType(ainversetype); }
|
|
448
|
+
INVERSETYPE SetInverseType ( string ainversetype ) const override
|
|
449
|
+
{ return mat->SetInverseType(ainversetype); }
|
|
450
|
+
INVERSETYPE GetInverseType () const override
|
|
451
|
+
{ return mat->GetInverseType(); }
|
|
452
|
+
void DoArchive (Archive & ar) override
|
|
453
|
+
{ mat->DoArchive(ar); }
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
#endif
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
#ifndef FILE_SPECIALELEMENT
|
|
2
|
+
#define FILE_SPECIALELEMENT
|
|
3
|
+
|
|
4
|
+
/*********************************************************************/
|
|
5
|
+
/* File: specialelement.hpp */
|
|
6
|
+
/* Author: Joachim Schoeberl */
|
|
7
|
+
/* Date: 28. Mar. 2002 */
|
|
8
|
+
/*********************************************************************/
|
|
9
|
+
|
|
10
|
+
#include "integrator.hpp"
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
namespace ngfem
|
|
14
|
+
{
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
Something special ...
|
|
18
|
+
|
|
19
|
+
Finite-Element + Integrator
|
|
20
|
+
|
|
21
|
+
E.g., a Contact-Element
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class NGS_DLL_HEADER SpecialElement
|
|
27
|
+
{
|
|
28
|
+
public:
|
|
29
|
+
SpecialElement ()
|
|
30
|
+
{
|
|
31
|
+
;
|
|
32
|
+
}
|
|
33
|
+
virtual ~SpecialElement() { ; }
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
virtual void GetDofNrs (Array<int> & dnums) const = 0;
|
|
38
|
+
|
|
39
|
+
// dofs for test-space (which might be different from trial-space)
|
|
40
|
+
virtual void GetDofNrs2 (Array<int> & dnums) const
|
|
41
|
+
{
|
|
42
|
+
GetDofNrs(dnums);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
virtual double Energy (FlatVector<double> elx,
|
|
46
|
+
LocalHeap & lh) const
|
|
47
|
+
{
|
|
48
|
+
return 0;
|
|
49
|
+
}
|
|
50
|
+
virtual double Energy (FlatVector<Complex> elx,
|
|
51
|
+
LocalHeap & lh) const
|
|
52
|
+
{
|
|
53
|
+
cerr << "SpecialElement::Energy (complex) called" << endl;
|
|
54
|
+
return 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
template<int S, class T>
|
|
58
|
+
void Apply (FlatVector< Vec<S,T> > elx,
|
|
59
|
+
FlatVector< Vec<S,T> > ely,
|
|
60
|
+
LocalHeap & lh) const
|
|
61
|
+
{
|
|
62
|
+
cerr << "SpecialElement::Apply (Vec) called" << endl;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
virtual void Apply (FlatVector<double> elx, FlatVector<double> ely,
|
|
66
|
+
LocalHeap & lh) const;
|
|
67
|
+
|
|
68
|
+
virtual void Apply (FlatVector<Complex> elx,
|
|
69
|
+
FlatVector<Complex> ely,
|
|
70
|
+
LocalHeap & lh) const
|
|
71
|
+
{
|
|
72
|
+
cerr << "SpecialElement::Apply (complex) called" << endl;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
virtual void CalcElementMatrix(FlatMatrix<double> elmat,
|
|
77
|
+
LocalHeap& lh) const;
|
|
78
|
+
|
|
79
|
+
virtual void CalcElementMatrix(FlatMatrix<Complex> elmat,
|
|
80
|
+
LocalHeap & lh) const;
|
|
81
|
+
/*
|
|
82
|
+
{
|
|
83
|
+
cerr << "SpecialElement::CalcElementMatrix(complex) called" << endl;
|
|
84
|
+
exit(10);
|
|
85
|
+
FlatMatrix<double> relmat;
|
|
86
|
+
CalcElementMatrix(relmat, lh);
|
|
87
|
+
elmat.AssignMemory (relmat.Height(), relmat.Width(), lh);
|
|
88
|
+
elmat = relmat;
|
|
89
|
+
}
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
virtual void CalcElementVector(FlatVector<double> elvec,
|
|
93
|
+
LocalHeap & lh) const;
|
|
94
|
+
|
|
95
|
+
virtual void CalcElementVector(FlatVector<Complex> elvec,
|
|
96
|
+
LocalHeap & lh) const;
|
|
97
|
+
/*
|
|
98
|
+
{
|
|
99
|
+
cerr << "SpecialElement::CalcElementMatrix(complex) called" << endl;
|
|
100
|
+
exit(10);
|
|
101
|
+
FlatVector<double> relvec;
|
|
102
|
+
CalcElementVector(relvec, lh);
|
|
103
|
+
elvec.AssignMemory (relvec.Height(),lh);
|
|
104
|
+
elvec = relvec;
|
|
105
|
+
}
|
|
106
|
+
*/
|
|
107
|
+
|
|
108
|
+
virtual void CalcLinearizedElementMatrix(FlatVector<double> elx,
|
|
109
|
+
FlatMatrix<double> elmat,
|
|
110
|
+
LocalHeap& lh) const
|
|
111
|
+
{
|
|
112
|
+
CalcElementMatrix(elmat, lh);
|
|
113
|
+
}
|
|
114
|
+
virtual void CalcLinearizedElementMatrix(FlatVector<Complex> elx,
|
|
115
|
+
FlatMatrix<Complex> elmat,
|
|
116
|
+
LocalHeap& lh) const
|
|
117
|
+
{
|
|
118
|
+
throw Exception("Complex CalcLinearizedElementMatrix not implemented!");
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
#endif
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#ifndef _STATUSHANDLER_HPP
|
|
2
|
+
#define _STATUSHANDLER_HPP
|
|
3
|
+
|
|
4
|
+
namespace ngstd
|
|
5
|
+
{
|
|
6
|
+
|
|
7
|
+
/** Access to statusbar. (and more)
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
class NGS_DLL_HEADER BaseStatusHandler
|
|
11
|
+
{
|
|
12
|
+
public:
|
|
13
|
+
static void PushStatus (const char * str);
|
|
14
|
+
static void PopStatus ();
|
|
15
|
+
static void SetThreadPercentage (double percent);
|
|
16
|
+
|
|
17
|
+
static void GetStatus (string & str, double & percent);
|
|
18
|
+
|
|
19
|
+
static void SetTerminate(void);
|
|
20
|
+
static void UnSetTerminate(void);
|
|
21
|
+
static bool ShouldTerminate(void);
|
|
22
|
+
|
|
23
|
+
class Region
|
|
24
|
+
{
|
|
25
|
+
public:
|
|
26
|
+
Region(const char * str) { PushStatus(str); }
|
|
27
|
+
~Region() { PopStatus(); }
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
#endif // _STATUSHANDLER_HPP
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#ifndef _STRINGOPS_HPP
|
|
2
|
+
#define _STRINGOPS_HPP
|
|
3
|
+
|
|
4
|
+
namespace ngstd
|
|
5
|
+
{
|
|
6
|
+
|
|
7
|
+
// NGS_DLL_HEADER bool StringFitsPattern(const string & str, const string & pattern);
|
|
8
|
+
NGS_DLL_HEADER bool StringFitsPattern(string_view str, string_view pattern);
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#endif // _STRINGOPS_HPP
|