Skip to content
Snippets Groups Projects
Commit 6293c5dd authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Dirichlet boundary values for the L-shape example

[[Imported from SVN: r9900]]
parent e227f835
No related branches found
No related tags found
No related merge requests found
class DirichletValues:
def __init__(self, homotopyParameter):
self.homotopyParameter = homotopyParameter
def deformation(self, x):
# Clamp the L-shape in its reference configuration
return [x[0], x[1], 0]
def orientation(self, x):
rotation = [[1,0,0], [0, 1, 0], [0, 0, 1]]
return rotation
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment