本文整理汇总了Python中oricrete.folding.CreasePattern.tf_lst方法的典型用法代码示例。如果您正苦于以下问题:Python CreasePattern.tf_lst方法的具体用法?Python CreasePattern.tf_lst怎么用?Python CreasePattern.tf_lst使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oricrete.folding.CreasePattern
的用法示例。
在下文中一共展示了CreasePattern.tf_lst方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: CreasePattern
# 需要导入模块: from oricrete.folding import CreasePattern [as 别名]
# 或者: from oricrete.folding.CreasePattern import tf_lst [as 别名]
# Unfolding
# ===========================================================================
#
new_nodes = cp.get_new_nodes(u_unfoldable)
cp2 = CreasePattern(
nodes=new_nodes,
crease_lines=cp.crease_lines,
facets=cp.facets,
n_steps=1,
show_iter=True,
z0_ratio=0.1,
time_arr=np.linspace(1, 0, 10),
MAX_ITER=200,
)
cp2.tf_lst = [(face_z_t, n_arr)]
cp2.cnstr_lhs = [
[(n_h[1, 0], 0, 1.0)], # 0
# [(n_h[1, -1], 0, 1.0)], # 1
# [(n_h[1, -1], 1, 1.0), (n_h[1, 0], 1, 1.0)],
]
cp2.cnstr_rhs = np.zeros((len(cp2.cnstr_lhs),), dtype=float)
X0 = -1e-3 * np.linalg.norm(u_unfoldable) * u_unfoldable
u_unfolded = cp2.solve(X0, acc=1e-5)
# ===========================================================================
# Print results
# ===========================================================================