Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • dune-functions dune-functions
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 27
    • Issues 27
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 25
    • Merge requests 25
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • staging
  • dune-functionsdune-functions
  • Merge requests
  • !285

Add dynamic power basis

  • Review changes

  • Download
  • Patches
  • Plain diff
Open Simon Praetorius requested to merge feature/dynamic_power_node into master Feb 26, 2021
  • Overview 12
  • Commits 2
  • Pipelines 16
  • Changes 7

Summary

This MR introduces a dynamic power node with runtime size. It is based on the dune-typetree DynamicPowerNode and can be constructed by

power(<child>, k)
power(<child>, k, <index-merging-strategy>)

Thus, the "exponent" is given after the child type, like in the std::pow function.

The main assumption for power nodes is that all childs have the same shape/size. This allows to compute the size of the power node itself as k * size-of-child. This property is important to mention, since dynamic-power-nodes would allow trees with different number of children. This is not supported by a (dynamic) power basis! However, one could implement another type of power-like basis, mabye better called vector-basis, where each child has the same type, but is allowed to have a different size, e.g. different lagrange leaf bases, or different dynamic power nodes, or ...

Requires

  • dune-typetree!90 (merged)
  • dune-typetree!91 (merged)
Edited Jun 04, 2023 by Simon Praetorius
Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: feature/dynamic_power_node