dear all
I want to output the axial force of the Embedded beam in python, but I don't know the scripting, can you tell me?
thank you
Hi Xiong Qi,
I suggest you take a peek at the following link:
Output scripting example: get anchor force - GeoStudio | PLAXIS Wiki - GeoStudio | PLAXIS - Bentley Communities
Or at the links attached at the end of the page.
Regards,
M. Rayyan
Dear Xiong,
If I remember you are using an older version (V20.04?). In our Command reference or via the echo command you can find the available result types for EmbeddedBeamRow.
Specifically in this case it is .Nx2D.
The simplest way of always knowing the available properties is via the PLAXIS Command line:
echo ResultTypes.EmbeddedBeamRow
In Python that would be:
dir(g_o.ResultTypes.EmbeddedBeamRow)
By the way, in the version you are using you can also take advantage of the Autocomplete feature. You can enable this under Options menu in Output program. Then, while typing you can get the available options.