Skip to content
Snippets Groups Projects
Commit b406fbb5 authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Dirichlet boundary values for the cantilever problem

parent c4b0436a
No related branches found
No related tags found
No related merge requests found
Pipeline #
import math
class DirichletValues:
def __init__(self, homotopyParameter):
self.homotopyParameter = homotopyParameter
def deformation(self, x):
# Dirichlet b.c. simply clamp the shell in the reference configuration
out = [x[0], x[1], 0]
return out
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