Skip to content
Snippets Groups Projects
Commit 2526ab50 authored by Ponsuganth Ilangovan Ponkumar Ilango's avatar Ponsuganth Ilangovan Ponkumar Ilango
Browse files

Update docstrings and toml

parent de5c1b7f
No related branches found
No related tags found
1 merge request!10Add generic frozen velocity operator
Pipeline #67424 failed
--extra-index-url https://test.pypi.org/simple/
hog @ git+ssh://git@i10git.cs.fau.de/hyteg/hog@1e6c4081b8c3a85e7a4632241684af9f5c74fe2e
hog @ git+https://i10git.cs.fau.de/hyteg/hog@94ff71ce05b3ee62fdd04c7b09c7ac3ee9a541c8
tomli >= 1.1.0 ; python_version < "3.11"
clang-format
......@@ -358,3 +358,33 @@ quadrature = 3
loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize", "quadloops"]
blending = "IcosahedralShellMap"
[[grad_rho_by_rho_dot_u]]
trial-space = "P2Vector"
test-space = "P1"
form-space-args.density_function_space = "P2"
dimensions = [2, 3]
quadrature = 3
blending = "IdentityMap"
loop-strategy = "sawtooth"
optimizations = ["quadloops"]
[[grad_rho_by_rho_dot_u]]
trial-space = "P2Vector"
test-space = "P1"
form-space-args.density_function_space = "P2"
dimensions = [2]
quadrature = 3
blending = "AnnulusMap"
loop-strategy = "sawtooth"
optimizations = ["quadloops"]
[[grad_rho_by_rho_dot_u]]
trial-space = "P2Vector"
test-space = "P1"
form-space-args.density_function_space = "P2"
dimensions = [3]
quadrature = 3
blending = "IcosahedralShellMap"
loop-strategy = "sawtooth"
optimizations = ["quadloops"]
......@@ -54,6 +54,7 @@ namespace operatorgeneration {
/// v: test function (space: Lagrange, degree: 1)
/// rho: coefficient (space: Lagrange, degree: 2)
///
/// ∫ ((∇ρ / ρ) · u) v
class P2VectorToP1ElementwiseGradRhoByRhoDotU : public Operator< P2VectorFunction< real_t >, P1Function< real_t > >
{
......
......@@ -55,6 +55,7 @@ namespace operatorgeneration {
/// v: test function (space: Lagrange, degree: 1)
/// rho: coefficient (space: Lagrange, degree: 2)
///
/// ∫ ((∇ρ / ρ) · u) v
class P2VectorToP1ElementwiseGradRhoByRhoDotUAnnulusMap : public Operator< P2VectorFunction< real_t >, P1Function< real_t > >
{
......
......@@ -55,6 +55,7 @@ namespace operatorgeneration {
/// v: test function (space: Lagrange, degree: 1)
/// rho: coefficient (space: Lagrange, degree: 2)
///
/// ∫ ((∇ρ / ρ) · u) v
class P2VectorToP1ElementwiseGradRhoByRhoDotUIcosahedralShellMap
: public Operator< P2VectorFunction< real_t >, P1Function< real_t > >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment