Mmelloc
New member
- Jan 18, 2017
- 2
I'm having some troubles when I try to modify the reference node of a rigid element
or create a new one.
I used the "Node" property of the element object, as depicted in the following code line, where 2 is just an example:
feElem.Node(0) = 2
Quoting pyFemap:
"
# The method Node is actually a property, but must be used as a method to correctly pass the arguments
def Node(self, nVectorIndex=defaultNamedNotOptArg):
return self._oleobj_.InvokeTypes(18002, LCID, 2, (3, 0), ((3, 1),),nVectorIndex
)
"
Since one must use Node as a method, it is not possible to assign a value to it. This way, I am not being able neither to modify nor create a RBE.
Does anyone know a way around it?
or create a new one.
I used the "Node" property of the element object, as depicted in the following code line, where 2 is just an example:
feElem.Node(0) = 2
Quoting pyFemap:
"
# The method Node is actually a property, but must be used as a method to correctly pass the arguments
def Node(self, nVectorIndex=defaultNamedNotOptArg):
return self._oleobj_.InvokeTypes(18002, LCID, 2, (3, 0), ((3, 1),),nVectorIndex
)
"
Since one must use Node as a method, it is not possible to assign a value to it. This way, I am not being able neither to modify nor create a RBE.
Does anyone know a way around it?