eleResponse
Moderators: silvia, selimgunay, Moderators
eleResponse
Deal All
I wan to distinguish between eleResponse of a column ,such as ,make a defference between axialfoce an shear ,in the en ,I want to output axial force and shear force and feedback respectively
I wan to distinguish between eleResponse of a column ,such as ,make a defference between axialfoce an shear ,in the en ,I want to output axial force and shear force and feedback respectively
Re: eleResponse
the eleResponse command returns a list .. you can use the lindex command to get the particular components out.
Re: eleResponse
Thank you very much
-
- Posts: 22
- Joined: Sun Jul 10, 2011 2:08 am
Re: eleResponse
Dear fmk
would you please write the command?
Thank you
would you please write the command?
Thank you
Re: eleResponse
here is something i had in an example script, what the force is depends on the element and the orientation, here it was either a truss or a zerolength ele:
set strains [eleResponse 3 basicDeformation]
set forces [eleResponse 3 forces]
puts "eleType: $eleType matType $matType axialForce [lindex $forces 0] axialDeformation: [lindex $strains 0]"
set strains [eleResponse 3 basicDeformation]
set forces [eleResponse 3 forces]
puts "eleType: $eleType matType $matType axialForce [lindex $forces 0] axialDeformation: [lindex $strains 0]"
-
- Posts: 22
- Joined: Sun Jul 10, 2011 2:08 am
Re: eleResponse
Thank you very much for your guidance
I appreciate your quick response
I appreciate your quick response