GetNoOfBeamsConnectedAtNode
Description Get the number of beams connected at a specific node.
Parameters
- node (int): Node number.
Returns int: Number of beams connected at the given node.
Example To use this function see the following example:
from openstaad import Geometry
# Instanciate the Geometry module
geometry= Geometry()
#Execute the function from geometry module
count = geometry.GetNoOfBeamsConnectedAtNode(7)
print(count)