当前位置: 首页>>代码示例>>Python>>正文


Python YoshimuraCreasePattern.cnstr_rhs[6]方法代码示例

本文整理汇总了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
开发者ID:kelidas,项目名称:oricrete,代码行数:40,代码来源:ex02_rhombus_manual_cnstr.py


注:本文中的oricrete.folding.YoshimuraCreasePattern.cnstr_rhs[6]方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。