def dirichlet_bc(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) return [ DirichletBC(V.sub(0), Constant(-x_strain), xlow), DirichletBC(V.sub(0), Constant(x_strain), xhigh), DirichletBC(V.sub(1), Constant(-y_strain), ylow), DirichletBC(V.sub(1), Constant(y_strain), yhigh), ]
def dirichlet_bc(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) return [ DirichletBC(V.sub(0), Constant(-x_strain), xlow), DirichletBC(V.sub(0), Constant(x_strain), xhigh), DirichletBC(V.sub(1), Constant(-y_strain), ylow), DirichletBC(V.sub(1), Constant(y_strain), yhigh), DirichletBC(V, np.zeros(3), center, method="pointwise"), ]
def dirichlet_bc(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) return DirichletBC( V, Constant((0.0, 0.0, 0.0)), geometry.ffun, geometry.markers["BASE"][0], )
def fix_basal_plane(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) bc = DirichletBC( V.sub(0), Constant(0.0), geometry.ffun, geometry.markers["BASE"][0], ) return bc
def dirichlet_bc(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) return DirichletBC(V, Constant((0.0, 0.0, 0.0)), fixed)
def dirichlet_bc(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) return DirichletBC(V.sub(0), Constant(0.0), fixed, "pointwise")
def dirichlet_fix_base_directional(W, ffun, marker, direction=0): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) bc = DirichletBC(V.sub(direction), Constant(0.0), ffun, marker) return bc
def dirichlet_fix_base(W, ffun, marker): """Fix the basal plane.""" V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) bc = DirichletBC(V, Constant((0, 0, 0)), ffun, marker) return bc
def dirichlet_bc(W): V = W if W.sub(0).num_sub_spaces() == 0 else W.sub(0) return [ DirichletBC(V, zero, zlow), DirichletBC(V, x, zhigh), ]