This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

Point Load in three Point Bend Test

–1 vote

How can I apply point load in three point bend test and fix both x and y displacement at bottom left corner and y displacement at bottom right corner. I have defined the class as:
class Bottom_left(SubDomain):
def inside(self,x,on_boundary):
return (near (x1,-1.0) and near(x[0],0.0))

Thanks in advance

Three Point bend test

asked Aug 31, 2016 by hirshikesh FEniCS User (1,890 points)
...