本文整理汇总了Python中oricrete.folding.YoshimuraCreasePattern.cnstr_rhs[6]方法的典型用法代码示例。如果您正苦于以下问题:Python YoshimuraCreasePattern.cnstr_rhs[6]方法的具体用法?Python YoshimuraCreasePattern.cnstr_rhs[6]怎么用?Python YoshimuraCreasePattern.cnstr_rhs[6]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oricrete.folding.YoshimuraCreasePattern
的用法示例。
在下文中一共展示了YoshimuraCreasePattern.cnstr_rhs[6]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cp02
# 需要导入模块: from oricrete.folding import YoshimuraCreasePattern [as 别名]
# 或者: from oricrete.folding.YoshimuraCreasePattern import cnstr_rhs[6] [as 别名]
def cp02(L_x = 4, L_y = 4, n_x = 2, n_y = 4, n_steps = 80):
cp = YoshimuraCreasePattern(n_steps = n_steps,
L_x = L_x,
L_y = L_y,
n_x = n_x,
n_y = n_y,
show_iter = False,
MAX_ITER = 500)
n_h = cp.N_h
n_i = cp.N_i
n_v = cp.N_v
cp.cnstr_lhs = [[(n_h[0, 0], 2, 1.0)], # 0
[(n_h[0, -1], 2, 1.0)], # 1
[(n_h[-1, 0], 2, 1.0)], # 2
[(n_h[-1, -1], 2, 1.0)], # 3
[(n_h[0, 1], 2, 1.0)], # 4
[(n_h[-1, 1], 2, 1.0)], # 5
[(n_h[1, 1], 2, 1.0)], # 6
[(n_h[0, 0], 1, 1.0), (n_h[1, 0], 1, -1.0)], # 7
[(n_h[0, 0], 1, 1.0), (n_h[-1, 0], 1, -1.0)], # 8
[(n_h[0, -1], 1, 1.0), (n_h[1, -1], 1, -1.0)], # 9
[(n_h[0, -1], 1, 1.0), (n_h[-1, -1], 1, -1.0)], # 10
[(n_h[1, 1], 0, 1.0)], # 11
[(n_h[0, -1], 1, 1.0)], # 12
[(n_h[1, 1], 1, 1.0), (n_h[0, 1], 1, -1.0)], # 13
[(n_h[1, 1], 1, 1.0), (n_h[-1, 1], 1, -1.0)], # 14
# [(n_h[1, 1], 2, 1.0), (n_h[1, 0], 2, -1.0)], # 13
# [(n_h[1, 1], 1, 1.0), (n_h[1, -1], 2, -1.0)], # 14
]
# lift node 0 in z-axes
cp.cnstr_rhs = np.zeros((15,), dtype = float)
cp.cnstr_rhs[6] = 1.999999999
return cp