Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
331 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
one-body-sample.py 276 B
class neumannCondition:
    def __call__(self, x):
        return 0

class velocityDirichletCondition:
    def __call__(self, x):
        return 2e-4

Functions = {
    'neumannCondition' : neumannCondition(),
    'velocityDirichletCondition' : velocityDirichletCondition()
}