ngsolve 6.2.2506.post216.dev0__cp314-cp314-manylinux_2_28_x86_64.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.
- ngsolve-6.2.2506.post216.dev0.data/data/bin/ngs_nvcc +22 -0
- ngsolve-6.2.2506.post216.dev0.data/data/bin/ngs_nvlink +17 -0
- ngsolve-6.2.2506.post216.dev0.data/data/bin/ngscxx +15 -0
- ngsolve-6.2.2506.post216.dev0.data/data/bin/ngsld +11 -0
- ngsolve-6.2.2506.post216.dev0.data/data/bin/ngsolve.tcl +648 -0
- ngsolve-6.2.2506.post216.dev0.data/data/bin/ngspy +2 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/analytic_integrals.hpp +10 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/arnoldi.hpp +55 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bandmatrix.hpp +334 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/basematrix.hpp +963 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/basevector.hpp +1268 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bdbequations.hpp +2807 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bdbintegrator.hpp +1660 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bem_diffops.hpp +475 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bessel.hpp +1064 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bilinearform.hpp +966 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bla.hpp +29 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/blockalloc.hpp +95 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/blockjacobi.hpp +328 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/bspline.hpp +116 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/calcinverse.hpp +141 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cg.hpp +368 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/chebyshev.hpp +44 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cholesky.hpp +720 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/clapack.h +7254 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/code_generation.hpp +296 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/coefficient.hpp +2033 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/coefficient_impl.hpp +19 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/coefficient_stdmath.hpp +167 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/commutingAMG.hpp +106 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/comp.hpp +79 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/compatibility.hpp +41 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/complex_wrapper.hpp +101 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/compressedfespace.hpp +110 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/contact.hpp +239 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cuda_core.hpp +216 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cuda_linalg.hpp +185 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cuda_ngbla.hpp +317 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cuda_ngstd.hpp +414 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/cuda_profiler.hpp +240 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/diagonalmatrix.hpp +160 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/differentialoperator.hpp +276 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/diffop.hpp +1286 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/diffop_impl.hpp +328 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/diffopwithfactor.hpp +123 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/discontinuous.hpp +84 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/dump.hpp +949 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ectypes.hpp +121 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/eigen.hpp +60 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/eigensystem.hpp +18 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/elasticity_equations.hpp +595 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/elementbyelement.hpp +201 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/elementtopology.hpp +1760 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/elementtransformation.hpp +339 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/evalfunc.hpp +405 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/expr.hpp +1693 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/facetfe.hpp +175 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/facetfespace.hpp +180 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/facethofe.hpp +111 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/facetsurffespace.hpp +112 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/fe_interfaces.hpp +32 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/fem.hpp +87 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/fesconvert.hpp +14 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/fespace.hpp +1454 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/finiteelement.hpp +286 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/globalinterfacespace.hpp +77 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/globalspace.hpp +115 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/gridfunction.hpp +525 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1amg.hpp +124 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1hofe.hpp +188 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1hofe_impl.hpp +1262 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1hofefo.hpp +148 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1hofefo_impl.hpp +185 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1hofespace.hpp +167 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1lofe.hpp +1240 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/h1lumping.hpp +41 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurl_equations.hpp +1381 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlcurlfe.hpp +2241 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlcurlfespace.hpp +78 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlfe.hpp +259 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlfe_utils.hpp +107 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlhdiv_dshape.hpp +857 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlhdivfes.hpp +308 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlhofe.hpp +175 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlhofe_impl.hpp +1871 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurlhofespace.hpp +193 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hcurllofe.hpp +1146 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdiv_equations.hpp +880 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivdivfe.hpp +2923 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivdivsurfacespace.hpp +76 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivfe.hpp +206 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivfe_utils.hpp +717 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivfes.hpp +75 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivhofe.hpp +447 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivhofe_impl.hpp +1107 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivhofefo.hpp +229 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivhofespace.hpp +177 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivhosurfacefespace.hpp +106 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hdivlofe.hpp +773 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hidden.hpp +74 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/householder.hpp +181 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hypre_ams_precond.hpp +123 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/hypre_precond.hpp +73 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/integrator.hpp +2012 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/integratorcf.hpp +253 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/interpolate.hpp +49 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/intrule.hpp +2542 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/intrules_SauterSchwab.hpp +25 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/irspace.hpp +49 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/jacobi.hpp +153 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/kernels.hpp +724 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/l2hofe.hpp +194 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/l2hofe_impl.hpp +564 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/l2hofefo.hpp +542 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/l2hofespace.hpp +344 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/la.hpp +38 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/linalg_kernels.hpp +70 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/linearform.hpp +266 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/matrix.hpp +2145 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/memusage.hpp +41 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/meshaccess.hpp +1359 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/mgpre.hpp +204 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/mp_coefficient.hpp +145 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/mptools.hpp +2281 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/multigrid.hpp +42 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/multivector.hpp +447 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/mumpsinverse.hpp +187 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/mycomplex.hpp +361 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ng_lapack.hpp +1661 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngblas.hpp +1232 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngs_defines.hpp +30 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngs_stdcpp_include.hpp +106 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngs_utils.hpp +121 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngsobject.hpp +1019 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngsstream.hpp +113 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/ngstd.hpp +72 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/nodalhofe.hpp +96 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/nodalhofe_impl.hpp +141 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/normalfacetfe.hpp +223 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/normalfacetfespace.hpp +98 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/normalfacetsurfacefespace.hpp +84 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/order.hpp +251 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/parallel_matrices.hpp +222 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/paralleldofs.hpp +340 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/parallelngs.hpp +23 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/parallelvector.hpp +269 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/pardisoinverse.hpp +200 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/periodic.hpp +129 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/plateaufespace.hpp +25 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/pml.hpp +275 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/pmltrafo.hpp +631 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/postproc.hpp +142 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/potentialtools.hpp +22 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/precomp.hpp +60 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/preconditioner.hpp +602 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/prolongation.hpp +380 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/python_comp.hpp +107 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/python_fem.hpp +89 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/python_linalg.hpp +58 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/python_ngstd.hpp +386 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/recursive_pol.hpp +4896 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/recursive_pol_tet.hpp +395 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/recursive_pol_trig.hpp +492 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/reorderedfespace.hpp +81 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/sample_sort.hpp +105 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/scalarfe.hpp +335 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/shapefunction_utils.hpp +113 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/simd_complex.hpp +329 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/smoother.hpp +253 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/solve.hpp +89 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/sparsecholesky.hpp +317 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/sparsefactorization_interface.hpp +159 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/sparsematrix.hpp +1052 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/sparsematrix_dyn.hpp +90 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/sparsematrix_impl.hpp +1055 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/special_matrix.hpp +463 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/specialelement.hpp +125 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/statushandler.hpp +33 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/stringops.hpp +12 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/superluinverse.hpp +136 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/symbolicintegrator.hpp +850 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/symmetricmatrix.hpp +144 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tangentialfacetfe.hpp +224 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tangentialfacetfespace.hpp +91 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tensor.hpp +522 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tensorcoefficient.hpp +446 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tensorproductintegrator.hpp +113 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/thcurlfe.hpp +128 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/thcurlfe_impl.hpp +380 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/thdivfe.hpp +80 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/thdivfe_impl.hpp +492 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tpdiffop.hpp +461 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tpfes.hpp +133 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tpintrule.hpp +224 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/triangular.hpp +465 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tscalarfe.hpp +245 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/tscalarfe_impl.hpp +1029 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/umfpackinverse.hpp +148 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/unifiedvector.hpp +103 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/vector.hpp +1452 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/voxelcoefficientfunction.hpp +41 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/vtkoutput.hpp +198 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/vvector.hpp +208 -0
- ngsolve-6.2.2506.post216.dev0.data/data/include/netgen/webgui.hpp +92 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/cmake/ngsolve/NGSolveConfig.cmake +102 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/cmake/ngsolve/ngsolve-targets-release.cmake +89 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/cmake/ngsolve/ngsolve-targets.cmake +180 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngbla.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngcomp.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngfem.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngla.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngsbem.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngscudalib.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngsolve.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/netgen_mesher.libs/libngstd.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/TensorProductTools.py +210 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/__console.py +94 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/__expr.py +181 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/__init__.py +148 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/_scikit_build_core_dependencies.py +30 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/bvp.py +78 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/config/__init__.py +1 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/config/__main__.py +4 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/config/config.py +60 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/TensorProduct/__init__.py +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/TensorProduct/tp_dg_1d_1d.py +80 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/TensorProduct/tp_dg_1d_2d.py +73 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/TensorProduct/tp_dg_2d_1d.py +72 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/TensorProduct/tp_dg_2d_2d.py +66 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/__init__.py +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/__init__.py +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/hhj.py +44 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/hybrid_dg.py +53 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/mixed.py +30 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/nonlin.py +29 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/pickling.py +26 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/pml.py +31 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/taskmanager.py +20 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/tdnns.py +47 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/timeDG-skeleton.py +45 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/timeDG.py +38 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/timeDGlap.py +42 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/howto/timeDGwave.py +61 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/__init__.py +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/adaptive.py +123 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/cmagnet.py +59 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/elasticity.py +76 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/navierstokes.py +74 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/poisson.ipynb +170 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/intro/poisson.py +41 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/mpi/__init__.py +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/mpi/mpi_cmagnet.py +87 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/mpi/mpi_navierstokes.py +117 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/mpi/mpi_poisson.py +89 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/demos/mpi/mpi_timeDG.py +82 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/directsolvers.py +14 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/eigenvalues.py +364 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/internal.py +89 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/krylovspace.py +1182 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/meshes.py +748 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/ngs2petsc.py +310 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/ngscuda.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/ngscxx.py +42 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/ngslib.so +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/nonlinearsolvers.py +203 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/preconditioners.py +11 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/solve_implementation.py +168 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/solvers/__init__.py +7 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/solvers/cudss.py +112 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/timestepping.py +185 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/timing.py +108 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/utils.py +167 -0
- ngsolve-6.2.2506.post216.dev0.data/data/lib/python3.14/site-packages/ngsolve/webgui.py +671 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/beam.geo +17 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/beam.vol +240 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/chip.in2d +41 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/chip.vol +614 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/coil.geo +12 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/coil.vol +2560 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/coilshield.geo +24 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/coilshield.vol +3179 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/cube.geo +19 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/cube.vol +1832 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d10_DGdoubleglazing.pde +50 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d11_chip_nitsche.pde +40 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d1_square.pde +43 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d2_chip.pde +35 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d3_helmholtz.pde +22 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d4_cube.pde +46 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d5_beam.pde +74 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d6_shaft.pde +73 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d7_coil.pde +50 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d8_coilshield.pde +49 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/d9_hybridDG.pde +72 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/doubleglazing.in2d +27 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/doubleglazing.vol +737 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/piezo2d40round4.vol.gz +0 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/shaft.geo +73 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/shaft.vol +4291 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/square.in2d +17 -0
- ngsolve-6.2.2506.post216.dev0.data/data/share/ngsolve/square.vol +149 -0
- ngsolve-6.2.2506.post216.dev0.dist-info/METADATA +14 -0
- ngsolve-6.2.2506.post216.dev0.dist-info/RECORD +306 -0
- ngsolve-6.2.2506.post216.dev0.dist-info/WHEEL +5 -0
- ngsolve-6.2.2506.post216.dev0.dist-info/licenses/LICENSE +504 -0
- ngsolve-6.2.2506.post216.dev0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
geometry = doubleglazing.in2d
|
|
2
|
+
mesh = doubleglazing.vol
|
|
3
|
+
|
|
4
|
+
####################### DISCONTINUOUS GALERKIN DEMO #############
|
|
5
|
+
|
|
6
|
+
#### the double glazing problem:
|
|
7
|
+
#### taken from Howard Elman, David Silvester, Andy Wathen:
|
|
8
|
+
#### Finite Elements and Fast Iterative Solvers
|
|
9
|
+
#### with applications in incompressible fluid dynamics
|
|
10
|
+
#### 3.1.4 Example
|
|
11
|
+
|
|
12
|
+
define coefficient lam
|
|
13
|
+
(0.005),(0.005),
|
|
14
|
+
|
|
15
|
+
#for inflow
|
|
16
|
+
define coefficient dirichletcoef
|
|
17
|
+
0, 1,
|
|
18
|
+
|
|
19
|
+
define coefficient calpha
|
|
20
|
+
10,10,
|
|
21
|
+
|
|
22
|
+
#convection velocity
|
|
23
|
+
define coefficient b1
|
|
24
|
+
(2*y*(1-x*x)),(2*y*(1-x*x)),
|
|
25
|
+
|
|
26
|
+
#convection velocity
|
|
27
|
+
define coefficient b2
|
|
28
|
+
(-2*x*(1-y*y)),(-2*x*(1-y*y)),
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
define fespace vdisc -type=l2ho -order=4 -dgjumps
|
|
32
|
+
define gridfunction udisc -fespace=vdisc
|
|
33
|
+
|
|
34
|
+
define bilinearform adisc -fespace=vdisc
|
|
35
|
+
DGIP_innfac_laplace lam calpha
|
|
36
|
+
DGIP_bndfac_laplace lam calpha -definedon=[1,2]
|
|
37
|
+
DG_innfac_convection b1 b2
|
|
38
|
+
DG_bndfac_convection b1 b2
|
|
39
|
+
convection b1 b2
|
|
40
|
+
laplace lam
|
|
41
|
+
|
|
42
|
+
define linearform fdisc -fespace=vdisc
|
|
43
|
+
DGIP_bndfac_dir lam dirichletcoef calpha -definedon=2
|
|
44
|
+
DG_bndfac_convdir b1 b2 dirichletcoef -definedon=2
|
|
45
|
+
|
|
46
|
+
define preconditioner c -type=direct -bilinearform=adisc
|
|
47
|
+
|
|
48
|
+
numproc bvp npdisc -bilinearform=adisc -linearform=fdisc -gridfunction=udisc -preconditioner=c
|
|
49
|
+
|
|
50
|
+
numproc visualization npvis -scalarfunction=udisc -subdivision=4 -deformationscale=1
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#modified version of the d2_chip.pde example. here boundary conditions
|
|
2
|
+
#are incorporated in a weak sense with nitsche penalization
|
|
3
|
+
geometry = chip.in2d
|
|
4
|
+
mesh = chip.vol
|
|
5
|
+
|
|
6
|
+
define coefficient lam
|
|
7
|
+
1, 1000, 10,
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
define coefficient coef_source
|
|
11
|
+
0, 0, 1,
|
|
12
|
+
|
|
13
|
+
define fespace v -type=h1ho -order=3 #-dirichlet=[1]
|
|
14
|
+
define fespace verr -type=l2 -order=0
|
|
15
|
+
|
|
16
|
+
define gridfunction u -fespace=v -nested
|
|
17
|
+
define gridfunction err -fespace=verr
|
|
18
|
+
|
|
19
|
+
define constant alpha = 10
|
|
20
|
+
|
|
21
|
+
define bilinearform a -fespace=v -symmetric
|
|
22
|
+
laplace lam
|
|
23
|
+
nitsche lam alpha -definedon=1
|
|
24
|
+
|
|
25
|
+
define linearform f -fespace=v
|
|
26
|
+
source coef_source
|
|
27
|
+
#nitsche lam dir alpha -definedon=1
|
|
28
|
+
|
|
29
|
+
define preconditioner c -type=multigrid -bilinearform=a -smoothingsteps=3
|
|
30
|
+
|
|
31
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=1000
|
|
32
|
+
|
|
33
|
+
numproc drawflux np2 -bilinearform=a -solution=u -applyd -label=flux
|
|
34
|
+
|
|
35
|
+
numproc zzerrorestimator np3 -bilinearform=a -linearform=f -solution=u -error=err -minlevel=1
|
|
36
|
+
numproc markelements np4 -error=err -minlevel=1 -factor=0.5
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
numproc visualization npv1 -scalarfunction=u -subdivision=2 -nolineartexture
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
#
|
|
2
|
+
# solve the Poisson equation -Delta u = f
|
|
3
|
+
#
|
|
4
|
+
# with boundary conditions
|
|
5
|
+
# u = 0 on Gamma1
|
|
6
|
+
# du/dn = 1 on Gamma2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# load geometry
|
|
10
|
+
geometry = square.in2d
|
|
11
|
+
|
|
12
|
+
# and mesh
|
|
13
|
+
mesh = square.vol
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# define a finite element space
|
|
17
|
+
# Dirichlet boundary is Gamma_1
|
|
18
|
+
# play around with -order=...
|
|
19
|
+
fespace v -type=h1ho -order=3 -dirichlet=[1]
|
|
20
|
+
|
|
21
|
+
# the solution field
|
|
22
|
+
gridfunction u -fespace=v -nested
|
|
23
|
+
|
|
24
|
+
linearform f -fespace=v
|
|
25
|
+
source x*sin(pi*y)
|
|
26
|
+
# neumann 1 --definedon=[2] # Neumann on Gamma_2
|
|
27
|
+
|
|
28
|
+
# the bilinear-form
|
|
29
|
+
bilinearform a -fespace=v -symmetric -eliminate_internal
|
|
30
|
+
laplace 1
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# preconditioner c -type=direct -bilinearform=a
|
|
34
|
+
# preconditioner c -type=local -bilinearform=a
|
|
35
|
+
# preconditioner c -type=multigrid -bilinearform=a -smoother=block
|
|
36
|
+
preconditioner c -type=bddc -bilinearform=a
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=1000
|
|
40
|
+
|
|
41
|
+
numproc drawflux np2 -bilinearform=a -solution=u -label=flux -applyd
|
|
42
|
+
|
|
43
|
+
numproc visualization npv1 -scalarfunction=u -subdivision=2 -nolineartexture
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
geometry = chip.in2d
|
|
2
|
+
mesh = chip.vol
|
|
3
|
+
|
|
4
|
+
# one coefficient per sub-domain
|
|
5
|
+
coefficient lam
|
|
6
|
+
1, 1000, 10,
|
|
7
|
+
|
|
8
|
+
# source in sub-domain 3
|
|
9
|
+
coefficient coef_source
|
|
10
|
+
0, 0, 1,
|
|
11
|
+
|
|
12
|
+
fespace v -type=h1ho -order=3 -dirichlet=[1]
|
|
13
|
+
fespace verr -type=l2 -order=0
|
|
14
|
+
|
|
15
|
+
gridfunction u -fespace=v -nested
|
|
16
|
+
gridfunction err -fespace=verr
|
|
17
|
+
|
|
18
|
+
bilinearform a -fespace=v -symmetric
|
|
19
|
+
laplace lam
|
|
20
|
+
|
|
21
|
+
linearform f -fespace=v
|
|
22
|
+
source coef_source
|
|
23
|
+
|
|
24
|
+
preconditioner c -type=multigrid -bilinearform=a -smoothingsteps=3
|
|
25
|
+
|
|
26
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=1000
|
|
27
|
+
|
|
28
|
+
numproc drawflux np2 -bilinearform=a -solution=u -applyd -label=flux
|
|
29
|
+
|
|
30
|
+
numproc zzerrorestimator np3 -bilinearform=a -solution=u -error=err -minlevel=1
|
|
31
|
+
numproc markelements np4 -error=err -minlevel=1 -factor=0.5
|
|
32
|
+
|
|
33
|
+
numproc writefile wf -variables=[mesh.levels,fes.v.ndof,ZZerrest.np3.err] -filename=d2_error.out
|
|
34
|
+
|
|
35
|
+
numproc visualization npv1 -scalarfunction=u -subdivision=2 -nolineartexture
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mesh = piezo2d40round4.vol.gz
|
|
2
|
+
|
|
3
|
+
define constant k = 1.8
|
|
4
|
+
|
|
5
|
+
define fespace v -type=h1ho -order=3 -complex -dirichlet=[1,2]
|
|
6
|
+
|
|
7
|
+
define gridfunction u -fespace=v -nested
|
|
8
|
+
|
|
9
|
+
define bilinearform a -fespace=v -symmetric
|
|
10
|
+
laplace 1
|
|
11
|
+
mass (-k*k)
|
|
12
|
+
robin (-k*I) --definedon=4
|
|
13
|
+
|
|
14
|
+
define linearform f -fespace=v
|
|
15
|
+
|
|
16
|
+
define coefficient coef_dirichlet
|
|
17
|
+
1, -1, 0, 0,
|
|
18
|
+
numproc setvalues npsv -coefficient=coef_dirichlet -gridfunction=u -boundary
|
|
19
|
+
|
|
20
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -solver=direct
|
|
21
|
+
|
|
22
|
+
numproc visualization npv1 -scalarfunction=u -subdivision=2 -nolineartexture
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
geometry = cube.geo
|
|
2
|
+
mesh = cube.vol
|
|
3
|
+
|
|
4
|
+
constant heapsize = 10000000
|
|
5
|
+
|
|
6
|
+
constant pen = 1e7
|
|
7
|
+
|
|
8
|
+
coefficient lam
|
|
9
|
+
1,
|
|
10
|
+
|
|
11
|
+
coefficient rho
|
|
12
|
+
1,
|
|
13
|
+
|
|
14
|
+
coefficient penalty
|
|
15
|
+
(pen), 0,
|
|
16
|
+
|
|
17
|
+
coefficient dirich_bc
|
|
18
|
+
(pen*x*y), 0,
|
|
19
|
+
|
|
20
|
+
fespace v -order=4 -type=h1ho
|
|
21
|
+
fespace vp -order=3 -dim=3 -type=h1ho
|
|
22
|
+
|
|
23
|
+
gridfunction u -fespace=v -nested
|
|
24
|
+
gridfunction p -fespace=vp
|
|
25
|
+
|
|
26
|
+
linearform f -fespace=v
|
|
27
|
+
source x*x*x*x
|
|
28
|
+
neumann dirich_bc
|
|
29
|
+
|
|
30
|
+
bilinearform a -fespace=v -symmetric -linearform=f -eliminate_internal
|
|
31
|
+
laplace lam
|
|
32
|
+
mass rho
|
|
33
|
+
robin penalty
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# preconditioner c -type=direct -bilinearform=a
|
|
38
|
+
# preconditioner c -type=local -bilinearform=a
|
|
39
|
+
preconditioner c -type=multigrid -bilinearform=a -smoothingsteps=1 -smoother=block -notest -blocktype=9
|
|
40
|
+
# preconditioner c -type=amg -bilinearform=a -coefe=lam -notiming -test
|
|
41
|
+
|
|
42
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=200 -noprint -prec=1e-8
|
|
43
|
+
|
|
44
|
+
numproc calcflux np2 -bilinearform=a -solution=u -flux=p -applyd
|
|
45
|
+
|
|
46
|
+
numproc visualization npv1 -scalarfunction=u -subdivision=2 -nolineartexture
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
#
|
|
2
|
+
# PDE example file for solving a linear elasticity model
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# load prepared geometry and mesh file:
|
|
7
|
+
#
|
|
8
|
+
geometry = beam.geo
|
|
9
|
+
mesh = beam.vol
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
define constant heapsize = 100000000
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# the elastic modulus for each sub-domain (here just one)
|
|
16
|
+
define coefficient E
|
|
17
|
+
2.1E11,
|
|
18
|
+
|
|
19
|
+
# the Poisson ratio
|
|
20
|
+
define coefficient nu
|
|
21
|
+
0.2,
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# Displacement boundary conditions (clumped) are set by penalty
|
|
25
|
+
# Give a large value for each clamped piece of the boundary
|
|
26
|
+
# The index corresponds to the value set in 'Edit Boundary Conditons'
|
|
27
|
+
|
|
28
|
+
define coefficient penalty
|
|
29
|
+
1e20, 0,
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# A volume force in z-direction
|
|
33
|
+
define coefficient coef_force_z
|
|
34
|
+
7e4,
|
|
35
|
+
|
|
36
|
+
# A surface force in z-direction for each piece of the boundary
|
|
37
|
+
define coefficient coef_surface_force_z
|
|
38
|
+
0, 1e5,
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
define fespace v -type=h1ho -dim=3 -order=4 -dirichlet=[1]
|
|
42
|
+
define fespace vp -type=h1ho -dim=6 -order=3
|
|
43
|
+
|
|
44
|
+
define gridfunction u -fespace=v
|
|
45
|
+
define gridfunction stress -fespace=vp
|
|
46
|
+
|
|
47
|
+
# generate load vector, volume force in z-direction (-comp=3)
|
|
48
|
+
define linearform f -fespace=v
|
|
49
|
+
# source coef_force_z -comp=1
|
|
50
|
+
neumann coef_surface_force_z -comp=3
|
|
51
|
+
|
|
52
|
+
# define system matrix. robin adds penalty terms to the x,y, and z-components
|
|
53
|
+
define bilinearform a -fespace=v -symmetric -eliminate_internal -linearform=f
|
|
54
|
+
elasticity E nu
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# use either a direct factorization, or a multigrid preconditioner.
|
|
58
|
+
# for problems smaller than 10000 nodes, the direct one is usually faster,
|
|
59
|
+
# otherwise the multigrid is faster (and needs much less memory)
|
|
60
|
+
|
|
61
|
+
# define preconditioner c -type=direct -bilinearform=a
|
|
62
|
+
define preconditioner c -type=multigrid -bilinearform=a # -inverse=sparsecholesky
|
|
63
|
+
|
|
64
|
+
#solve the problem by calling the cg-iteration
|
|
65
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=200
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
# postprocessing computes the stresses:
|
|
69
|
+
numproc calcflux np2 -bilinearform=a -solution=u -flux=stress -applyd
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
numproc visualization npv1 -vectorfunction=u -subdivision=2 -nolineartexture -deformationscale=100 -scalarfunction=stress.1
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
geometry = shaft.geo
|
|
2
|
+
mesh = shaft.vol
|
|
3
|
+
|
|
4
|
+
define constant geometryorder = 3
|
|
5
|
+
|
|
6
|
+
define coefficient E
|
|
7
|
+
1e6,
|
|
8
|
+
|
|
9
|
+
define coefficient nu
|
|
10
|
+
0,
|
|
11
|
+
|
|
12
|
+
define coefficient transmissionbc
|
|
13
|
+
0, 0, 0, 0, 0.01, 0, 0, 0, 0,
|
|
14
|
+
|
|
15
|
+
define coefficient bearingbc1
|
|
16
|
+
1, 0, 0, 0, 0, 0, 0,
|
|
17
|
+
|
|
18
|
+
define coefficient bearingbc2
|
|
19
|
+
0, 1, 0, 0, 0, 0, 0,
|
|
20
|
+
|
|
21
|
+
define coefficient bearingbc3
|
|
22
|
+
0, 0, 1, 0, 0, 0, 0,
|
|
23
|
+
|
|
24
|
+
define coefficient surfaceloadz
|
|
25
|
+
0, 0, 0, 1, 0, 0, 0, 0, 0,
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
define fespace v -type=h1ho -dim=3 -order=3
|
|
29
|
+
define fespace vp -type=h1ho -dim=6 -order=2
|
|
30
|
+
define fespace verr -type=l2 -order=0
|
|
31
|
+
|
|
32
|
+
define gridfunction u -fespace=v -nested #-addcoef
|
|
33
|
+
define gridfunction p -fespace=vp
|
|
34
|
+
define gridfunction error -fespace=verr
|
|
35
|
+
|
|
36
|
+
define bilinearform a -fespace=v -symmetric
|
|
37
|
+
elasticity E nu
|
|
38
|
+
robin transmissionbc -comp=1
|
|
39
|
+
robin transmissionbc -comp=2
|
|
40
|
+
robin transmissionbc -comp=3
|
|
41
|
+
|
|
42
|
+
define linearform f -fespace=v
|
|
43
|
+
neumann surfaceloadz -comp=3
|
|
44
|
+
|
|
45
|
+
define linearform cnsty1 -fespace=v
|
|
46
|
+
neumann bearingbc1 -comp=2
|
|
47
|
+
define linearform cnstz1 -fespace=v
|
|
48
|
+
neumann bearingbc1 -comp=3
|
|
49
|
+
|
|
50
|
+
define linearform cnsty2 -fespace=v
|
|
51
|
+
neumann bearingbc2 -comp=2
|
|
52
|
+
define linearform cnstz2 -fespace=v
|
|
53
|
+
neumann bearingbc2 -comp=3
|
|
54
|
+
|
|
55
|
+
define linearform cnsty3 -fespace=v
|
|
56
|
+
neumann bearingbc3 -comp=2
|
|
57
|
+
define linearform cnstz3 -fespace=v
|
|
58
|
+
neumann bearingbc3 -comp=3
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
define preconditioner c -type=multigrid -bilinearform=a -smoothingsteps=2
|
|
63
|
+
# define preconditioner c -type=local -bilinearform=a
|
|
64
|
+
# define preconditioner c -type=direct -bilinearform=a
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
numproc constrainedbvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=50 -constraints=[cnsty1,cnstz1,cnsty2,cnstz2,cnsty3,cnstz3]
|
|
68
|
+
|
|
69
|
+
numproc calcflux np2 -bilinearform=a -solution=u -flux=p -applyd
|
|
70
|
+
numproc drawflux np2a -bilinearform=a -solution=u -label=stress -applyd
|
|
71
|
+
|
|
72
|
+
numproc zzerrorestimator np3 -bilinearform=a -linearform=f -solution=u -error=error -flux=p
|
|
73
|
+
numproc markelements np3a -error=error -factor=0.5 -minlevel=1
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
geometry = coil.geo
|
|
2
|
+
mesh = coil.vol
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
define constant geometryorder = 4
|
|
6
|
+
# define constant heapsize = 50000000
|
|
7
|
+
|
|
8
|
+
define constant mu0 = 1.257e-7
|
|
9
|
+
|
|
10
|
+
# nu = 1/mu with mu permeability
|
|
11
|
+
define coefficient nu
|
|
12
|
+
(1/mu0), (1/mu0),
|
|
13
|
+
|
|
14
|
+
# artificial conductivity for regularization
|
|
15
|
+
define coefficient sigma 1e-8*nu
|
|
16
|
+
|
|
17
|
+
# 1000 Ampere-turns
|
|
18
|
+
define coefficient r (sqrt(x*x+y*y))
|
|
19
|
+
define coefficient cs
|
|
20
|
+
( 1000/16 * (y/r,-x/r,0))
|
|
21
|
+
(0, 0, 0),
|
|
22
|
+
|
|
23
|
+
define fespace v -type=hcurlho -order=4 -nograds -dirichlet=[1]
|
|
24
|
+
|
|
25
|
+
define gridfunction u -fespace=v -novisual
|
|
26
|
+
|
|
27
|
+
define linearform f -fespace=v
|
|
28
|
+
sourceedge cs -definedon=1
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
define bilinearform a -fespace=v -spd -nonsym_storage -linearform=f -eliminate_internal
|
|
32
|
+
curlcurledge nu
|
|
33
|
+
massedge sigma
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
define bilinearform acurl -fespace=v -symmetric -nonassemble
|
|
37
|
+
curlcurledge nu
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# define preconditioner c -type=multigrid -bilinearform=a -smoother=block
|
|
41
|
+
define preconditioner c -type=bddc -bilinearform=a
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -prec=1.e-9
|
|
45
|
+
|
|
46
|
+
numproc drawflux np5 -bilinearform=acurl -solution=u -label=flux
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
numproc visualization npv1 -scalarfunction=flux:0 -clipsolution=scalar -subdivision=2 -clipvec=[0,1,0] -nolineartexture
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
geometry = coilshield.geo
|
|
2
|
+
mesh = coilshield.vol
|
|
3
|
+
|
|
4
|
+
define constant geometryorder = 4
|
|
5
|
+
define constant refinep = 1
|
|
6
|
+
define constant heapsize = 200000000
|
|
7
|
+
|
|
8
|
+
define coefficient nu material
|
|
9
|
+
iron 1e-4
|
|
10
|
+
default 1
|
|
11
|
+
|
|
12
|
+
define coefficient kappa material
|
|
13
|
+
default 1e-6
|
|
14
|
+
|
|
15
|
+
define coefficient cs1
|
|
16
|
+
0, ( y ), 0, 0, 0,
|
|
17
|
+
define coefficient cs2
|
|
18
|
+
0, ( -x ), 0, 0, 0,
|
|
19
|
+
define coefficient cs3
|
|
20
|
+
0, 0, 0, 0, 0,
|
|
21
|
+
|
|
22
|
+
define coefficient penalty
|
|
23
|
+
0,0,0,0,0,0,0,0,
|
|
24
|
+
#1e+6, 0, 0, 0, 0, 0
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
define fespace v -type=hcurlho -order=5 -nograds
|
|
28
|
+
|
|
29
|
+
define gridfunction u -fespace=v
|
|
30
|
+
|
|
31
|
+
define linearform f -fespace=v -noprintelvec
|
|
32
|
+
sourceedge cs1 cs2 cs3 -definedon=2
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
define bilinearform a -fespace=v -symmetric -eliminate_internal -linearform=f
|
|
36
|
+
curlcurledge nu
|
|
37
|
+
massedge kappa -order=2
|
|
38
|
+
robinedge penalty
|
|
39
|
+
|
|
40
|
+
define bilinearform acurl -fespace=v -symmetric -nonassemble
|
|
41
|
+
curlcurledge nu
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
define preconditioner c -type=multigrid -bilinearform=a -cylce=1 -smoother=block -coarsetype=direct -coarsesmoothingsteps=5 -notest
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c -maxsteps=400 -prec=1.e-8
|
|
48
|
+
|
|
49
|
+
numproc drawflux np3 -bilinearform=acurl -solution=u -label=flux
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
########################################################################################
|
|
2
|
+
# solve poisson equation
|
|
3
|
+
# - eps Delta u = f in Omega, u=g on Gamma0
|
|
4
|
+
########################################################################################
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
geometry = square.in2d
|
|
8
|
+
mesh = square.vol
|
|
9
|
+
|
|
10
|
+
# geometry = cube.geo
|
|
11
|
+
# mesh = cube.vol
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
define constant heapsize = 10000000
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# ho-fespace: compound space for (u, lambda) ######
|
|
18
|
+
define fespace v -type=HDG -order=3 -dirichlet=[1,2]
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
define gridfunction u -fespace=v
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## boundary terms ########################################
|
|
27
|
+
|
|
28
|
+
define coefficient coef_dirichlet
|
|
29
|
+
0, (y * (1-y)), 0, 0,
|
|
30
|
+
|
|
31
|
+
numproc setvalues npsv -coefficient=coef_dirichlet -gridfunction=u -boundary -comp=2
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## some coefficients #####################################
|
|
35
|
+
define coefficient one
|
|
36
|
+
1,
|
|
37
|
+
|
|
38
|
+
define coefficient alpha
|
|
39
|
+
2,
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
define coefficient b
|
|
43
|
+
(50,10),
|
|
44
|
+
|
|
45
|
+
define coefficient cf
|
|
46
|
+
1,
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
define linearform f -fespace=v
|
|
50
|
+
# source cf -comp=1
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
define bilinearform a -fespace=v -eliminate_internal -linearform=f -printelmat
|
|
54
|
+
HDG_laplace one alpha
|
|
55
|
+
HDG_convection b
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
define preconditioner c -type=direct -bilinearform=a # -inverse=pardiso
|
|
59
|
+
|
|
60
|
+
numproc bvp np1 -bilinearform=a -linearform=f -gridfunction=u -preconditioner=c
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# visualization
|
|
66
|
+
|
|
67
|
+
## automatic visualizaiton for 2D
|
|
68
|
+
numproc visualization vis1 -scalarfunction=u -subdivision=2
|
|
69
|
+
|
|
70
|
+
## automatic visualization for 3D
|
|
71
|
+
# numproc visualization vis2 -scalarfunction=u -subdivision=1 -clipvec=[0,0,-1] -clipsolution=scalar
|
|
72
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
splinecurves2dv2
|
|
2
|
+
2
|
|
3
|
+
points
|
|
4
|
+
#point number
|
|
5
|
+
# x-coordinate
|
|
6
|
+
# y-coordinate
|
|
7
|
+
# local refinement
|
|
8
|
+
1 -1 1
|
|
9
|
+
2 1 1 -maxh=0.01
|
|
10
|
+
3 1 -1 -maxh=0.01
|
|
11
|
+
4 -1 -1
|
|
12
|
+
|
|
13
|
+
segments
|
|
14
|
+
#domain left of the segment
|
|
15
|
+
# domain right of the segment
|
|
16
|
+
# number of points the segment consists of
|
|
17
|
+
# first point of the segment
|
|
18
|
+
# second point of the segment
|
|
19
|
+
# boundary number
|
|
20
|
+
# local refinement
|
|
21
|
+
0 1 2 1 2 -maxh=0.25 -bc=1
|
|
22
|
+
0 1 2 2 3 -maxh=0.1 -bc=2
|
|
23
|
+
0 1 2 3 4 -maxh=0.25 -bc=1
|
|
24
|
+
0 1 2 4 1 -maxh=0.25 -bc=1
|
|
25
|
+
|
|
26
|
+
materials
|
|
27
|
+
1 inner -maxh=0.5
|