Long story short, I am developing a Python wrapper (yet another one) based on OpenSeesPy but with features inspired from FLAC3D (e.g., grouping nodes and elements, retrieving nodes and elements given coordinates...).
Among these features, instead of working with tags, I am working directly with node and element objects. One feature I'd like to add is to be able to directly access nodes and elements outputs using properties. For instance,
Code: Select all
beam.moment_x
I understand that these functions' outputs depend on several factors like the number of dimensions or type of elements. However, I haven't been able to find a detailed documentation that describes all the possible outputs. Did I miss something?
Thanks for your help!