π’ div-grad#
Here we demonstrate how to use phyem to solve the div-grad problems in different dimensions and different domains.
The general form of the div-grad problem is
where
2d periodic boundary conditions#
Here we demonstrate how to use phyem, the msepy implementation, to solve the two-dimensional div-grad problem.
In two-dimensions, the mixed formulation of the div-grad problem is
We use smooth manufactured solutions for this case. The exact solution for
Exact solutions of
- div_grad_2d_periodic_manufactured_test(degree, K, c=0)[source]#
- Parameters:
- degreeint
The degree of the mimetic spectral elements.
- Kint
In total we will use
elements. - cfloat, default=0
The deformation factor of the Multi-crazy domain and mesh.
- Returns:
- phi_error: float
The
-error of solution . - u_error: float
The
-error of solution .
Examples#
Below, we use mimetic spectral elements of degree 2 on a uniform mesh of
>>> errors4 = div_grad_2d_periodic_manufactured_test(2, 4)
>>> float(errors4[0])
0.01...
We increase
>>> errors8 = div_grad_2d_periodic_manufactured_test(2, 8)
We can compute the convergence rate of the
>>> import numpy as np
>>> rate = (np.log10(errors4[0]) - np.log10(errors8[0])) / (np.log10(1/4) - np.log10(1/8))
>>> float(round(rate, 1))
2.0
The optimal convergence rate is obtained.
2d general boundary conditions#
Here we repeat the test, but with essential boundary
The implementation is
- div_grad_2d_general_bc_manufactured_test(degree, K, c=0.0)[source]#
- Parameters:
- degreeint
The degree of the mimetic spectral elements.
- Kint
In total we will use
elements. - cfloat, default=0
The deformation factor of the Crazy domain and mesh.
- Returns:
- phi_error: float
The
-error of solution . - u_error: float
The
-error of solution .
Examples#
If we solve it with
>>> errors4 = div_grad_2d_general_bc_manufactured_test(2, 4)
>>> float(errors4[0])
0.06...
We increase
>>> errors8 = div_grad_2d_general_bc_manufactured_test(2, 8)
We can compute the convergence rate of the
>>> import numpy as np
>>> rate = (np.log10(errors4[0]) - np.log10(errors8[0])) / (np.log10(1/4) - np.log10(1/8))
>>> float(round(rate, 1))
2.0
Again, the optimal convergence rate is obtained.
β©οΈ Back to GalleryπΌ.