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


Python Mesh.addNode方法代码示例

本文整理汇总了Python中Mesh.addNode方法的典型用法代码示例。如果您正苦于以下问题:Python Mesh.addNode方法的具体用法?Python Mesh.addNode怎么用?Python Mesh.addNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mesh的用法示例。


在下文中一共展示了Mesh.addNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: len

# 需要导入模块: import Mesh [as 别名]
# 或者: from Mesh import addNode [as 别名]
while len(flag) is not 0:
        currentLine = file.readline()        
        #### Mesh and Nodes ####
        if partMarker in currentLine:
                ## locate the partName ##
                ## the needed information is always after an equal sign ##
                partName = currentLine.split("=")[1]
                mesh = Mesh(partName)
                ## nodes follow part
                file.readline() #skip one line
                currentLine = file.readline()

                ## ID, x, y, z if needed
                ID, x, y = currentLine.strip().split(",")    # <class 'int'> target
                while (mesh.nodeCount + 1 == int(ID)):
                        mesh.addNode(Node(int(ID), float(x), float(y)))
                        currentLine = file.readline()
                        ## While loop is terminated when element is encounter ##
                        try:
                                ID, x, y = currentLine.strip().split(",")    # <class 'int'> target
                        except:
                                break
                ## remove partMarker once all information acquired
                flag.remove(partMarker)
        #############################################################

        #### Elements ####
        if elementMarker in currentLine:
                elementName = currentLine.split("=")[1]
                currentLine = file.readline()# Line cursor moves 1 down
开发者ID:klauszeng,项目名称:Vip-Energy-Geology,代码行数:32,代码来源:coh.py


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