How to calculate the total shear force of an interface element

Hi I do have the attachaed interface element of an slab. I want to calculate the total shear force [kN] by "Area [m2] * Interface shear stress t2 [kN/m2]".

Thanks

Parents Reply Children
  • Hi

    Thanks for your answer. This was the first thing I tried but I was not able to see the area of the elements. Is it possible to get them / can you please show me where I can see the area?

    Kind Regards

    Manuel Krähenbühl

    Project Engineer

     

  • Hi Manuel,

    The area of a surface element is not directly visible in Output. However, there are two ways you can calculate it. 

    The first way is more mathematical and can give you reliable results when you don't have curved surfaces. The idea is to view the Output results in a table format and check the coordinates for the nodes in each element. PLAXIS 3D uses 6-noded elements for interfaces, so you can calculate the area of a triangle using the coordinates of the vertices: A = (1/2) |x1(y2 − y3) + x2(y3 − y1) + x3(y1 − y2)|. Please check the local numbers of the vertices and adjust the formula accordingly.

    The second way requires using a command to retrieve the area of an interface element. For example, the following set of commands will echo the surface area for the elements corresponding to each node on the interface (PositiveInterface_1)

    getresults PositiveInterface_1 Phases[-1] ResultTypes.Interface.Area "node"

    echo Results[-1]

    Optionally, you can cross-check those nodes by running the commands:

    getresults PositiveInterface_1 Phases[-1] ResultTypes.Interface.ElementID "node"

    echo Results[-1]

    You can find more information in the Output objects reference found in the Help menu > Command reference > Output Program > Output objects reference > Interface

  • Hi

    Many thanks. I tried the command line and it seems ok.

    Can I also generate a table with the comand line like:

    [Node]   [Area]   [ShearStressT2]

    001       12.51    12.25

    002       12.51    12.25

    003       12.51    12.25

    ....

    And how is the area calculated by the nodes? Nodes do actually not contain a specific are?

    Thanks for your answer.

    Kind Regards

    Manuel Krähenbühl

    Project Engineer

     

  • Hello Manuel,

    The values of the area come from the element itself. But the ResultTypes object is available per node (or stress point). That is why you will see duplicate values per 6 nodes, as the same area corresponds to a single element.

    Here's an article in which we explain how to get a table on Notepad based on results from Output:  How to get a load - displacement curve using Scripting interface