Can you please provide me the python script where I can select node corresponding to interface element instead of soil element in post calculation phase.
Dear Bentley team,
Can you please help me with this query.
Dear Rituraj,
Have you checked our Command reference or our Scripting Reference? They are both under the Help menu.
You should look for the addcurvepoint command, which can accept as a parameter any PLAXIS object that contains a node, e.g. NegativeInterface_1_1.
An example of the command can be:
g_o.addcurvepoint("Node", g_o.NegativeInterface_1_1, (1, 0, -1))
Once again thankyou for your prompt response Stefanos. Looked into the scripting reference but I was in assumption that this script is only applicable for selecting the node corresponding to soil element.
No problem at all.
In our Command reference, you can notice that in the signature we use the plx_obj, which refers to any PLAXIS object from which the node must be selected. That naturally includes both soils and structures.
Just to make it more clear I will add an extra example in the Command reference.