ngsolve 6.2.2506.post74.dev0__cp314-cp314-win_amd64.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/lib/libngsolve.lib +0 -0
- netgen/libngsolve.dll +0 -0
- netgen/ngscxx.bat +4 -0
- netgen/ngsld.bat +6 -0
- ngsolve/TensorProductTools.py +210 -0
- ngsolve/__console.py +94 -0
- ngsolve/__expr.py +181 -0
- ngsolve/__init__.py +148 -0
- ngsolve/_scikit_build_core_dependencies.py +30 -0
- ngsolve/bvp.py +78 -0
- ngsolve/cmake/NGSolveConfig.cmake +102 -0
- ngsolve/cmake/ngsolve-targets-release.cmake +19 -0
- ngsolve/cmake/ngsolve-targets.cmake +164 -0
- ngsolve/config/__init__.py +1 -0
- ngsolve/config/__main__.py +4 -0
- ngsolve/config/config.py +60 -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/eigenvalues.py +364 -0
- ngsolve/internal.py +89 -0
- ngsolve/krylovspace.py +1013 -0
- ngsolve/meshes.py +748 -0
- ngsolve/ngs2petsc.py +310 -0
- ngsolve/ngscxx.py +42 -0
- ngsolve/ngslib.lib +0 -0
- ngsolve/ngslib.pyd +0 -0
- ngsolve/nonlinearsolvers.py +203 -0
- ngsolve/preconditioners.py +11 -0
- ngsolve/solve_implementation.py +168 -0
- ngsolve/solvers.py +7 -0
- ngsolve/timestepping.py +185 -0
- ngsolve/timing.py +108 -0
- ngsolve/utils.py +167 -0
- ngsolve/webgui.py +670 -0
- ngsolve-6.2.2506.post74.dev0.data/data/Scripts/ngsolve.tcl +648 -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 +14 -0
- ngsolve-6.2.2506.post74.dev0.dist-info/RECORD +288 -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,66 @@
|
|
|
1
|
+
from ngsolve.TensorProductTools import *
|
|
2
|
+
from ngsolve.comp import *
|
|
3
|
+
from ngsolve import *
|
|
4
|
+
from netgen.geom2d import unit_square
|
|
5
|
+
import netgen.gui
|
|
6
|
+
|
|
7
|
+
mesh1 = Mesh(unit_square.GenerateMesh(maxh=0.15))
|
|
8
|
+
mesh2 = Mesh(MakeHexagonalMesh2D(maxh=0.2))
|
|
9
|
+
n=4
|
|
10
|
+
m=4
|
|
11
|
+
SetHeapSize(1000000000)
|
|
12
|
+
|
|
13
|
+
fesx = L2(mesh1,order=n)
|
|
14
|
+
fesy = L2(mesh2,order=m)
|
|
15
|
+
tpfes = TensorProductFESpace([fesx,fesy])
|
|
16
|
+
|
|
17
|
+
u = tpfes.TrialFunction()
|
|
18
|
+
v = tpfes.TestFunction()
|
|
19
|
+
|
|
20
|
+
vx = v.Operator("gradx")
|
|
21
|
+
vy = v.Operator("grady")
|
|
22
|
+
|
|
23
|
+
b = CoefficientFunction( ( ProlongateCoefficientFunction(y-0.5,1,tpfes),ProlongateCoefficientFunction(0.5-x,1,tpfes),1,1 ) )
|
|
24
|
+
|
|
25
|
+
uin = CoefficientFunction(0.0)
|
|
26
|
+
|
|
27
|
+
gradv = CoefficientFunction((vx,vy))
|
|
28
|
+
|
|
29
|
+
a = BilinearForm(tpfes)
|
|
30
|
+
|
|
31
|
+
n = CoefficientFunction((ProlongateCoefficientFunction(specialcf.normal(2)[0],1,tpfes),ProlongateCoefficientFunction(specialcf.normal(2)[1],1,tpfes),ProlongateCoefficientFunction(specialcf.normal(2)[0],0,tpfes),ProlongateCoefficientFunction(specialcf.normal(2)[1],0,tpfes)))
|
|
32
|
+
bn = b*n
|
|
33
|
+
|
|
34
|
+
a += SymbolicTPBFI ( -u * b*gradv )
|
|
35
|
+
a += SymbolicTPBFI ( (bn) *IfPos(bn, u, u.Other(bnd = uin )) * (v-v.Other(bnd = 0.0)), VOL, skeleton=True)
|
|
36
|
+
a += SymbolicTPBFI ( (bn) *IfPos(bn, u, u.Other(bnd = uin )) * (v), BND, skeleton=True)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
u = GridFunction(tpfes)
|
|
40
|
+
v = GridFunction(tpfes)
|
|
41
|
+
print(1)
|
|
42
|
+
with TaskManager():
|
|
43
|
+
u.Set(exp(ProlongateCoefficientFunction(-90*(x-0.25)*(x-0.25)-90*(y-0.5)*(y-0.5),1,tpfes)+ProlongateCoefficientFunction(-70*(x-0.75)*(x-0.75)-70*(y-0.75)*(y-0.75),0,tpfes) ))
|
|
44
|
+
print(2)
|
|
45
|
+
rho = GridFunction(fesx,name="rho")
|
|
46
|
+
Draw(rho)
|
|
47
|
+
h = u.vec.CreateVector()
|
|
48
|
+
print('To start the simulation type Run(n_steps)!')
|
|
49
|
+
|
|
50
|
+
def Step():
|
|
51
|
+
a.Apply(u.vec,v.vec)
|
|
52
|
+
h.data = 0.005*v.vec.data
|
|
53
|
+
tpfes.SolveM(rho=CoefficientFunction(1), vec = h)
|
|
54
|
+
u.vec.data-=h.data
|
|
55
|
+
TensorProductIntegrate(u,rho)
|
|
56
|
+
Redraw()
|
|
57
|
+
|
|
58
|
+
def Run(nsteps):
|
|
59
|
+
with TaskManager():
|
|
60
|
+
for i in range(nsteps):
|
|
61
|
+
print("Step ",i+1, "/",nsteps)
|
|
62
|
+
Step()
|
|
63
|
+
|
|
64
|
+
Run(1000)
|
|
65
|
+
for t in Timers():
|
|
66
|
+
print(t["counts"], t["time"], t["name"])
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
#
|
|
2
|
+
# The Hellan-Herrmann-Johnson method for a Kirchhoff plate
|
|
3
|
+
#
|
|
4
|
+
# M. I. Comodi: The Hellan–Herrmann-Johnson Method
|
|
5
|
+
# Some error estimates and postprocessing. Math. Comp. 52, 17–39, 1989
|
|
6
|
+
#
|
|
7
|
+
|
|
8
|
+
from ngsolve import *
|
|
9
|
+
from netgen.geom2d import unit_square
|
|
10
|
+
|
|
11
|
+
mesh = Mesh (unit_square.GenerateMesh(maxh=0.05))
|
|
12
|
+
order = 3
|
|
13
|
+
|
|
14
|
+
V = HDivDiv(mesh, order=order-1)
|
|
15
|
+
Q = H1(mesh, order=order, dirichlet="left|right|top|bottom")
|
|
16
|
+
X = V*Q
|
|
17
|
+
|
|
18
|
+
print ("ndof-V:", V.ndof, ", ndof-Q:", Q.ndof)
|
|
19
|
+
|
|
20
|
+
sigma, u = X.TrialFunction()
|
|
21
|
+
tau, v = X.TestFunction()
|
|
22
|
+
|
|
23
|
+
n = specialcf.normal(2)
|
|
24
|
+
|
|
25
|
+
def tang(u): return u-(u*n)*n
|
|
26
|
+
|
|
27
|
+
a = BilinearForm(X, symmetric=True)
|
|
28
|
+
a += (InnerProduct (sigma, tau) + div(sigma)*grad(v) + div(tau)*grad(u) - 1e-10*u*v)*dx
|
|
29
|
+
a += (-(sigma*n) * tang(grad(v)) - (tau*n)*tang(grad(u)))*dx(element_boundary=True)
|
|
30
|
+
a.Assemble()
|
|
31
|
+
|
|
32
|
+
f = LinearForm(X)
|
|
33
|
+
f += 1 * v * dx
|
|
34
|
+
# f += Trace(tau.Trace()) * ds("bottom")
|
|
35
|
+
f.Assemble()
|
|
36
|
+
|
|
37
|
+
u = GridFunction(X)
|
|
38
|
+
u.vec.data = a.mat.Inverse(X.FreeDofs()) * f.vec
|
|
39
|
+
|
|
40
|
+
Draw (u.components[0], mesh, name="sigma")
|
|
41
|
+
Draw (u.components[1], mesh, name="disp")
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
ngsglobals.msg_level = 1
|
|
6
|
+
mesh = Mesh(unit_square.GenerateMesh(maxh=0.4))
|
|
7
|
+
for k in range(5):
|
|
8
|
+
mesh.Refine()
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
order = 3
|
|
12
|
+
fes1 = L2(mesh, order=order)
|
|
13
|
+
fes2 = FacetFESpace(mesh, order=order, dirichlet="bottom|right|top")
|
|
14
|
+
|
|
15
|
+
print ("element dofs: ", fes1.ndof)
|
|
16
|
+
print ("facet dofs: ", fes2.ndof)
|
|
17
|
+
|
|
18
|
+
fes = fes1*fes2
|
|
19
|
+
|
|
20
|
+
u,uhat = fes.TrialFunction()
|
|
21
|
+
v,vhat = fes.TestFunction()
|
|
22
|
+
|
|
23
|
+
n = specialcf.normal(mesh.dim)
|
|
24
|
+
h = specialcf.mesh_size
|
|
25
|
+
|
|
26
|
+
a = BilinearForm(fes, symmetric=True, condense = True)
|
|
27
|
+
a += grad(u) * grad(v) * dx
|
|
28
|
+
a += (grad(u)*n*(vhat-v)+grad(v)*n*(uhat-u)+10*order*order/h*(u-uhat)*(v-vhat))*dx(element_boundary=True)
|
|
29
|
+
|
|
30
|
+
c = Preconditioner(type="direct", bf=a, inverse = "sparsecholesky")
|
|
31
|
+
# c = Preconditioner(type="bddc", bf=a)
|
|
32
|
+
|
|
33
|
+
with TaskManager():
|
|
34
|
+
a.Assemble()
|
|
35
|
+
ainv = CGSolver(a.mat, c.mat)
|
|
36
|
+
|
|
37
|
+
f = LinearForm(fes)
|
|
38
|
+
f += 1*v*dx
|
|
39
|
+
f.Assemble()
|
|
40
|
+
|
|
41
|
+
u = GridFunction(fes)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
f.vec.data += a.harmonic_extension_trans * f.vec
|
|
45
|
+
|
|
46
|
+
u.vec.data = ainv * f.vec
|
|
47
|
+
|
|
48
|
+
u.vec.data += a.harmonic_extension * u.vec
|
|
49
|
+
u.vec.data += a.inner_solve * f.vec
|
|
50
|
+
|
|
51
|
+
Draw (u.components[0], mesh, "sol")
|
|
52
|
+
|
|
53
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
ngsglobals.msg_level = 1
|
|
5
|
+
|
|
6
|
+
mesh = Mesh(unit_square.GenerateMesh(maxh=0.1))
|
|
7
|
+
|
|
8
|
+
order = 2
|
|
9
|
+
fes1 = HDiv(mesh, order=order)
|
|
10
|
+
fes2 = L2(mesh, order=order-1)
|
|
11
|
+
|
|
12
|
+
fes = fes1*fes2
|
|
13
|
+
|
|
14
|
+
sigma,u = fes.TrialFunction()
|
|
15
|
+
tau,v = fes.TestFunction()
|
|
16
|
+
|
|
17
|
+
a = BilinearForm(fes)
|
|
18
|
+
a += (sigma*tau + div(sigma)*v + div(tau)*u - 1e-10*u*v)*dx
|
|
19
|
+
# (regularization needed for direct solver)
|
|
20
|
+
a.Assemble()
|
|
21
|
+
|
|
22
|
+
f = LinearForm(fes)
|
|
23
|
+
f += -v*dx
|
|
24
|
+
f.Assemble()
|
|
25
|
+
|
|
26
|
+
u = GridFunction(fes)
|
|
27
|
+
u.vec.data = a.mat.Inverse(fes.FreeDofs()) * f.vec
|
|
28
|
+
|
|
29
|
+
Draw (u.components[0], mesh, "flux")
|
|
30
|
+
Draw (u.components[1], mesh, "sol")
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
m = Mesh (unit_square.GenerateMesh(maxh=0.3))
|
|
5
|
+
|
|
6
|
+
V = H1(m, order=3, dirichlet="left|right|top|bottom")
|
|
7
|
+
u = V.TrialFunction()
|
|
8
|
+
v = V.TestFunction()
|
|
9
|
+
|
|
10
|
+
a = BilinearForm(V)
|
|
11
|
+
a += ( grad(u) * grad(v) + 5*u*u*v- 1 * v)*dx
|
|
12
|
+
|
|
13
|
+
u = GridFunction(V)
|
|
14
|
+
r = u.vec.CreateVector()
|
|
15
|
+
w = u.vec.CreateVector()
|
|
16
|
+
|
|
17
|
+
for it in range(5):
|
|
18
|
+
print ("Iteration",it)
|
|
19
|
+
a.Apply(u.vec, r)
|
|
20
|
+
a.AssembleLinearization(u.vec)
|
|
21
|
+
|
|
22
|
+
w.data = a.mat.Inverse(V.FreeDofs()) * r.data
|
|
23
|
+
print ("|w| =", w.Norm())
|
|
24
|
+
u.vec.data -= w
|
|
25
|
+
|
|
26
|
+
Draw(u)
|
|
27
|
+
input("<press a key>")
|
|
28
|
+
|
|
29
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from ngsolve import *
|
|
2
|
+
import netgen.geom2d
|
|
3
|
+
|
|
4
|
+
mesh = Mesh (netgen.geom2d.unit_square.GenerateMesh(maxh=0.1))
|
|
5
|
+
|
|
6
|
+
v = FESpace ("h1ho", mesh, order=4, dirichlet=[1])
|
|
7
|
+
v2 = L2(mesh,order=2)
|
|
8
|
+
u = GridFunction (v)
|
|
9
|
+
u2 = GridFunction(v)
|
|
10
|
+
vec = u.vec
|
|
11
|
+
data = [v,v2,u,u2,u.vec]
|
|
12
|
+
|
|
13
|
+
import pickle
|
|
14
|
+
pickler = pickle.Pickler(open ("1.dat", "wb"))
|
|
15
|
+
pickler.dump (data)
|
|
16
|
+
del pickler
|
|
17
|
+
|
|
18
|
+
unpickler = pickle.Unpickler(open("1.dat","rb"))
|
|
19
|
+
fes,fes2,w,w2,z = unpickler.load()
|
|
20
|
+
|
|
21
|
+
assert fes.mesh is fes2.mesh
|
|
22
|
+
assert w.space is w2.space
|
|
23
|
+
|
|
24
|
+
assert len(z) == len(u.vec)
|
|
25
|
+
for i in range(len(u.vec)):
|
|
26
|
+
assert u.vec[i] == z[i]
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from netgen.geom2d import SplineGeometry
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
geo = SplineGeometry()
|
|
5
|
+
geo.AddCircle( (0,0), 1.4, leftdomain=2)
|
|
6
|
+
geo.AddCircle( (0,0), 1, leftdomain=1, rightdomain=2)
|
|
7
|
+
geo.SetMaterial(1, "inner")
|
|
8
|
+
geo.SetMaterial(2, "pml")
|
|
9
|
+
mesh = Mesh(geo.GenerateMesh (maxh=0.1))
|
|
10
|
+
|
|
11
|
+
mesh.SetPML(pml.Radial(rad=1,alpha=1j,origin=(0,0)), "pml")
|
|
12
|
+
|
|
13
|
+
fes = H1(mesh, order=4, complex=True)
|
|
14
|
+
u = fes.TrialFunction()
|
|
15
|
+
v = fes.TestFunction()
|
|
16
|
+
|
|
17
|
+
omega = 10
|
|
18
|
+
|
|
19
|
+
a = BilinearForm(fes)
|
|
20
|
+
a += (grad(u)*grad(v)-omega*omega*u*v)*dx
|
|
21
|
+
|
|
22
|
+
f = LinearForm(fes)
|
|
23
|
+
f += exp(-20**2*((x-0.3)*(x-0.3)+y*y))*v*dx
|
|
24
|
+
|
|
25
|
+
a.Assemble()
|
|
26
|
+
f.Assemble()
|
|
27
|
+
|
|
28
|
+
gfu = GridFunction(fes)
|
|
29
|
+
gfu.vec.data = a.mat.Inverse() * f.vec
|
|
30
|
+
|
|
31
|
+
Draw(gfu)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from netgen.csg import unit_cube
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
mesh = Mesh (unit_cube.GenerateMesh(maxh=0.4))
|
|
5
|
+
for l in range(3):
|
|
6
|
+
mesh.Refine()
|
|
7
|
+
|
|
8
|
+
fes = H1(mesh, order=3)
|
|
9
|
+
u,v = fes.TnT()
|
|
10
|
+
a = BilinearForm(fes)
|
|
11
|
+
a += grad(u) * grad(v) * dx
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
print('sequential assembly...')
|
|
15
|
+
a.Assemble()
|
|
16
|
+
|
|
17
|
+
print('parallel assembly...')
|
|
18
|
+
with TaskManager():
|
|
19
|
+
a.Assemble()
|
|
20
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
#
|
|
2
|
+
# The tangential-displacement normal-normal-stress continuous method for elasticity
|
|
3
|
+
#
|
|
4
|
+
# A.S. Pechstein and J. Schoeberl:
|
|
5
|
+
# Tangential-displacement and normal-normal-stress continuous mixed finite elements for elasticity.
|
|
6
|
+
# Mathematical Models and Methods in Applied Sciences 21(8), 1761–1782, 2011.
|
|
7
|
+
#
|
|
8
|
+
|
|
9
|
+
from ngsolve import *
|
|
10
|
+
from netgen.geom2d import SplineGeometry
|
|
11
|
+
|
|
12
|
+
geo = SplineGeometry()
|
|
13
|
+
geo.AddRectangle( (0, 0), (10, 1), bcs = ("bottom", "right", "top", "left"))
|
|
14
|
+
mesh = Mesh( geo.GenerateMesh(maxh=0.5))
|
|
15
|
+
|
|
16
|
+
order = 3
|
|
17
|
+
V = HDivDiv(mesh, order=order-1, dirichlet="bottom|right|top", plus = True)
|
|
18
|
+
Q = HCurl(mesh, order=order, dirichlet="left", type1 = True)
|
|
19
|
+
X = V*Q
|
|
20
|
+
|
|
21
|
+
print ("ndof-V:", V.ndof, ", ndof-Q:", Q.ndof)
|
|
22
|
+
|
|
23
|
+
sigma, u = X.TrialFunction()
|
|
24
|
+
tau, v = X.TestFunction()
|
|
25
|
+
|
|
26
|
+
n = specialcf.normal(2)
|
|
27
|
+
|
|
28
|
+
def tang(u): return u-(u*n)*n
|
|
29
|
+
|
|
30
|
+
a = BilinearForm(X, symmetric=True)
|
|
31
|
+
a += (InnerProduct (sigma, tau) + div(sigma)*v + div(tau)*u - 1e-10 * u*v)*dx
|
|
32
|
+
a += (-(sigma*n) * tang(v) - (tau*n)*tang(u))*dx(element_boundary=True)
|
|
33
|
+
a.Assemble()
|
|
34
|
+
|
|
35
|
+
f = LinearForm(X)
|
|
36
|
+
f += 1 * v[1] * dx
|
|
37
|
+
f.Assemble()
|
|
38
|
+
|
|
39
|
+
u = GridFunction(X)
|
|
40
|
+
u.vec.data = a.mat.Inverse(X.FreeDofs(), inverse="sparsecholesky") * f.vec
|
|
41
|
+
|
|
42
|
+
Draw (u.components[0], mesh, name="sigma")
|
|
43
|
+
Draw (u.components[1], mesh, name="disp")
|
|
44
|
+
|
|
45
|
+
Draw (u.components[0][0], mesh, name="s11")
|
|
46
|
+
|
|
47
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
mesh = Mesh (unit_square.GenerateMesh(maxh=0.1))
|
|
5
|
+
|
|
6
|
+
fes = L2(mesh, order=4)
|
|
7
|
+
|
|
8
|
+
u = fes.TrialFunction()
|
|
9
|
+
v = fes.TestFunction()
|
|
10
|
+
|
|
11
|
+
b = CoefficientFunction( (y-0.5,0.5-x) )
|
|
12
|
+
bn = b*specialcf.normal(2)
|
|
13
|
+
|
|
14
|
+
ubnd = CoefficientFunction(0)
|
|
15
|
+
|
|
16
|
+
a = BilinearForm(fes)
|
|
17
|
+
a += (-u * b*grad(v)) .Compile()*dx
|
|
18
|
+
|
|
19
|
+
# the skeleton-formulation, sum over edges:
|
|
20
|
+
a += bn*IfPos(bn, u, u.Other()) * (v-v.Other()) * dx(skeleton=True)
|
|
21
|
+
a += bn*IfPos(bn, u, ubnd) * v * ds(skeleton=True)
|
|
22
|
+
|
|
23
|
+
# or the element-boundary formulation
|
|
24
|
+
# note the bnd-value in the .Other operator
|
|
25
|
+
# a += bn*IfPos(bn, u, u.Other(bnd=ubnd)) * v * dx(element_boundary=True)
|
|
26
|
+
|
|
27
|
+
u = GridFunction(fes)
|
|
28
|
+
u.Set(exp (-40 * ( (x-0.7)*(x-0.7) + (y-0.7)*(y-0.7) )))
|
|
29
|
+
|
|
30
|
+
w = u.vec.CreateVector()
|
|
31
|
+
|
|
32
|
+
Draw (u, autoscale=False, sd=2)
|
|
33
|
+
|
|
34
|
+
t = 0
|
|
35
|
+
tau = 1e-3
|
|
36
|
+
tend = 10
|
|
37
|
+
|
|
38
|
+
with TaskManager():
|
|
39
|
+
while t < tend:
|
|
40
|
+
a.Apply (u.vec, w)
|
|
41
|
+
fes.SolveM (rho=CoefficientFunction(1), vec=w)
|
|
42
|
+
u.vec.data -= tau * w
|
|
43
|
+
t += tau
|
|
44
|
+
Redraw()
|
|
45
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
mesh = Mesh (unit_square.GenerateMesh(maxh=0.1))
|
|
5
|
+
|
|
6
|
+
fes = L2(mesh, order=4)
|
|
7
|
+
|
|
8
|
+
u = fes.TrialFunction()
|
|
9
|
+
v = fes.TestFunction()
|
|
10
|
+
|
|
11
|
+
b = CoefficientFunction( (y-0.5,0.5-x) )
|
|
12
|
+
bn = b*specialcf.normal(2)
|
|
13
|
+
|
|
14
|
+
ubnd = CoefficientFunction(0)
|
|
15
|
+
|
|
16
|
+
a = BilinearForm(fes)
|
|
17
|
+
a += -u * b*grad(v) * dx
|
|
18
|
+
a += bn*IfPos(bn, u, u.Other(bnd=ubnd)) * v * dx(element_boundary=True)
|
|
19
|
+
|
|
20
|
+
u = GridFunction(fes)
|
|
21
|
+
u.Set(exp (-40 * ( (x-0.7)*(x-0.7) + (y-0.7)*(y-0.7) )))
|
|
22
|
+
|
|
23
|
+
w = u.vec.CreateVector()
|
|
24
|
+
|
|
25
|
+
Draw (u, autoscale=False, sd=2)
|
|
26
|
+
|
|
27
|
+
t = 0
|
|
28
|
+
tau = 1e-3
|
|
29
|
+
tend = 10
|
|
30
|
+
|
|
31
|
+
with TaskManager():
|
|
32
|
+
while t < tend:
|
|
33
|
+
a.Apply (u.vec, w)
|
|
34
|
+
fes.SolveM (rho=CoefficientFunction(1), vec=w)
|
|
35
|
+
u.vec.data -= tau * w
|
|
36
|
+
t += tau
|
|
37
|
+
Redraw()
|
|
38
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
mesh = Mesh (unit_square.GenerateMesh(maxh=0.05))
|
|
5
|
+
|
|
6
|
+
order=2
|
|
7
|
+
fes = L2(mesh, order=order)
|
|
8
|
+
|
|
9
|
+
u = fes.TrialFunction()
|
|
10
|
+
v = fes.TestFunction()
|
|
11
|
+
|
|
12
|
+
u0 = exp (-40 * ( (x-0.5)*(x-0.5) + (y-0.5)*(y-0.5) ))
|
|
13
|
+
|
|
14
|
+
n = specialcf.normal(2)
|
|
15
|
+
h = specialcf.mesh_size
|
|
16
|
+
|
|
17
|
+
a = BilinearForm(fes)
|
|
18
|
+
a += grad(u) * grad(v) * dx
|
|
19
|
+
cf1 = -0.5 * InnerProduct(grad(u), n)*(v-v.Other(bnd=0))
|
|
20
|
+
cf2 = -0.5 * InnerProduct(grad(v), n)*(u-u.Other(bnd=u0))
|
|
21
|
+
cf3 = 2*( (order+1)**2)/h * (u-u.Other(bnd=u0)) * v
|
|
22
|
+
a += (cf1+cf2+cf3)*dx(element_boundary=True)
|
|
23
|
+
|
|
24
|
+
u = GridFunction(fes)
|
|
25
|
+
u.Set(u0)
|
|
26
|
+
|
|
27
|
+
w = u.vec.CreateVector()
|
|
28
|
+
|
|
29
|
+
Draw (u, mesh, "u")
|
|
30
|
+
|
|
31
|
+
tau = 2e-6
|
|
32
|
+
tend = 0.5
|
|
33
|
+
|
|
34
|
+
t = 0
|
|
35
|
+
with TaskManager():
|
|
36
|
+
while t < tend:
|
|
37
|
+
a.Apply (u.vec, w)
|
|
38
|
+
fes.SolveM (rho=CoefficientFunction(1), vec=w)
|
|
39
|
+
u.vec.data -= tau * w
|
|
40
|
+
t += tau
|
|
41
|
+
Redraw()
|
|
42
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
from netgen.geom2d import unit_square
|
|
2
|
+
from ngsolve import *
|
|
3
|
+
|
|
4
|
+
mesh = Mesh (unit_square.GenerateMesh(maxh=0.05))
|
|
5
|
+
|
|
6
|
+
order=4
|
|
7
|
+
fes1 = L2(mesh, order=order)
|
|
8
|
+
fes = fes1*fes1*fes1
|
|
9
|
+
|
|
10
|
+
p,ux,uy = fes.TrialFunction()
|
|
11
|
+
q,vx,vy = fes.TestFunction()
|
|
12
|
+
|
|
13
|
+
u0 = exp (-400 * ( (x-0.5)*(x-0.5) + (y-0.5)*(y-0.5) ))
|
|
14
|
+
|
|
15
|
+
n = specialcf.normal(2)
|
|
16
|
+
|
|
17
|
+
v = CoefficientFunction( (vx, vy) )
|
|
18
|
+
u = CoefficientFunction( (ux, uy) )
|
|
19
|
+
|
|
20
|
+
a1 = BilinearForm(fes)
|
|
21
|
+
a1 += grad(p) * v * dx
|
|
22
|
+
a1 += -0.5 * (p - p.Other()) * (v*n) * dx(element_boundary = True)
|
|
23
|
+
|
|
24
|
+
a2 = BilinearForm(fes)
|
|
25
|
+
a2 += -grad(q) * u * dx
|
|
26
|
+
a2 += 0.5 * (q - q.Other()) * (u*n) * dx(element_boundary = True)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
u = GridFunction(fes)
|
|
30
|
+
u.components[0].Set(u0)
|
|
31
|
+
|
|
32
|
+
res = u.vec.CreateVector()
|
|
33
|
+
w = u.vec.CreateVector()
|
|
34
|
+
|
|
35
|
+
Draw (u.components[1], mesh, "ux")
|
|
36
|
+
Draw (u.components[2], mesh, "uy")
|
|
37
|
+
Draw (u.components[0], mesh, "p")
|
|
38
|
+
SetVisualization(min=-0.1, max=0.1, deformation=True)
|
|
39
|
+
|
|
40
|
+
tau = 1e-3
|
|
41
|
+
tend = 3
|
|
42
|
+
|
|
43
|
+
t = 0
|
|
44
|
+
nd = fes1.ndof
|
|
45
|
+
|
|
46
|
+
input ("<press enter>")
|
|
47
|
+
|
|
48
|
+
with TaskManager():
|
|
49
|
+
while t < tend:
|
|
50
|
+
a1.Apply (u.vec, w)
|
|
51
|
+
fes1.SolveM (rho=CoefficientFunction(1), vec=w.Range(nd,2*nd))
|
|
52
|
+
fes1.SolveM (rho=CoefficientFunction(1), vec=w.Range(2*nd,3*nd))
|
|
53
|
+
u.vec.data -= tau * w
|
|
54
|
+
|
|
55
|
+
a2.Apply (u.vec, w)
|
|
56
|
+
fes1.SolveM (rho=CoefficientFunction(1), vec=w.Range(0,nd))
|
|
57
|
+
u.vec.data -= tau * w
|
|
58
|
+
|
|
59
|
+
t += tau
|
|
60
|
+
Redraw()
|
|
61
|
+
|
|
File without changes
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
from ngsolve import *
|
|
2
|
+
from netgen.geom2d import SplineGeometry
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
# point numbers 0, 1, ... 11
|
|
6
|
+
# sub-domain numbers (1), (2), (3)
|
|
7
|
+
#
|
|
8
|
+
#
|
|
9
|
+
# 7-------------6
|
|
10
|
+
# | |
|
|
11
|
+
# | (2) |
|
|
12
|
+
# | |
|
|
13
|
+
# 3------4-------------5------2
|
|
14
|
+
# | |
|
|
15
|
+
# | 11 |
|
|
16
|
+
# | / \ |
|
|
17
|
+
# | 10 (3) 9 |
|
|
18
|
+
# | \ / (1) |
|
|
19
|
+
# | 8 |
|
|
20
|
+
# | |
|
|
21
|
+
# 0---------------------------1
|
|
22
|
+
#
|
|
23
|
+
|
|
24
|
+
def MakeGeometry():
|
|
25
|
+
geometry = SplineGeometry()
|
|
26
|
+
|
|
27
|
+
# point coordinates ...
|
|
28
|
+
pnts = [ (0,0), (1,0), (1,0.6), (0,0.6), \
|
|
29
|
+
(0.2,0.6), (0.8,0.6), (0.8,0.8), (0.2,0.8), \
|
|
30
|
+
(0.5,0.15), (0.65,0.3), (0.5,0.45), (0.35,0.3) ]
|
|
31
|
+
pnums = [geometry.AppendPoint(*p) for p in pnts]
|
|
32
|
+
|
|
33
|
+
# start-point, end-point, boundary-condition, domain on left side, domain on right side:
|
|
34
|
+
lines = [ (0,1,1,1,0), (1,2,2,1,0), (2,5,2,1,0), (5,4,2,1,2), (4,3,2,1,0), (3,0,2,1,0), \
|
|
35
|
+
(5,6,2,2,0), (6,7,2,2,0), (7,4,2,2,0), \
|
|
36
|
+
(8,9,2,3,1), (9,10,2,3,1), (10,11,2,3,1), (11,8,2,3,1) ]
|
|
37
|
+
|
|
38
|
+
for p1,p2,bc,left,right in lines:
|
|
39
|
+
geometry.Append( ["line", pnums[p1], pnums[p2]], bc=bc, leftdomain=left, rightdomain=right)
|
|
40
|
+
return geometry
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
mesh = Mesh(MakeGeometry().GenerateMesh (maxh=0.2))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
fes = H1(mesh, order=3, dirichlet=[1], autoupdate=True)
|
|
48
|
+
u = fes.TrialFunction()
|
|
49
|
+
v = fes.TestFunction()
|
|
50
|
+
|
|
51
|
+
# one heat conductivity coefficient per sub-domain
|
|
52
|
+
lam = CoefficientFunction([1, 1000, 10])
|
|
53
|
+
a = BilinearForm(fes, symmetric=False)
|
|
54
|
+
a += lam*grad(u)*grad(v)*dx
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# heat-source in sub-domain 3
|
|
58
|
+
f = LinearForm(fes)
|
|
59
|
+
f += CoefficientFunction([0, 0, 1])*v*dx
|
|
60
|
+
|
|
61
|
+
c = MultiGridPreconditioner(a, inverse = "sparsecholesky")
|
|
62
|
+
|
|
63
|
+
gfu = GridFunction(fes, autoupdate=True)
|
|
64
|
+
Draw (gfu)
|
|
65
|
+
|
|
66
|
+
# finite element space and gridfunction to represent
|
|
67
|
+
# the heatflux:
|
|
68
|
+
space_flux = HDiv(mesh, order=2, autoupdate=True)
|
|
69
|
+
gf_flux = GridFunction(space_flux, "flux", autoupdate=True)
|
|
70
|
+
|
|
71
|
+
def SolveBVP():
|
|
72
|
+
a.Assemble()
|
|
73
|
+
f.Assemble()
|
|
74
|
+
inv = CGSolver(a.mat, c.mat)
|
|
75
|
+
gfu.vec.data = inv * f.vec
|
|
76
|
+
Redraw (blocking=True)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
l = []
|
|
81
|
+
|
|
82
|
+
def CalcError():
|
|
83
|
+
flux = lam * grad(gfu)
|
|
84
|
+
# interpolate finite element flux into H(div) space:
|
|
85
|
+
gf_flux.Set (flux)
|
|
86
|
+
|
|
87
|
+
# Gradient-recovery error estimator
|
|
88
|
+
err = 1/lam*(flux-gf_flux)*(flux-gf_flux)
|
|
89
|
+
elerr = Integrate (err, mesh, VOL, element_wise=True)
|
|
90
|
+
|
|
91
|
+
maxerr = max(elerr)
|
|
92
|
+
l.append ( (fes.ndof, sqrt(sum(elerr)) ))
|
|
93
|
+
print ("maxerr = ", maxerr)
|
|
94
|
+
|
|
95
|
+
for el in mesh.Elements():
|
|
96
|
+
mesh.SetRefinementFlag(el, elerr[el.nr] > 0.25*maxerr)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
with TaskManager():
|
|
100
|
+
while fes.ndof < 100000:
|
|
101
|
+
SolveBVP()
|
|
102
|
+
CalcError()
|
|
103
|
+
mesh.Refine()
|
|
104
|
+
|
|
105
|
+
SolveBVP()
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## import matplotlib.pyplot as plt
|
|
111
|
+
|
|
112
|
+
## plt.yscale('log')
|
|
113
|
+
## plt.xscale('log')
|
|
114
|
+
## plt.xlabel("ndof")
|
|
115
|
+
## plt.ylabel("H1 error-estimate")
|
|
116
|
+
## ndof,err = zip(*l)
|
|
117
|
+
## plt.plot(ndof,err, "-*")
|
|
118
|
+
|
|
119
|
+
## plt.ion()
|
|
120
|
+
## plt.show()
|
|
121
|
+
|
|
122
|
+
## input("<press enter to quit>")
|
|
123
|
+
|