🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Getting Maximal Stress Value

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

Hey guys,

 

is there a .tcl-command which shows the maximal node stress of a structure after a simulation?

 

Kind regards and thanks in advance

Simon

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "Imoto"
    Altair Employee
    Updated by Imoto

    You can get the top 1 using Selection Set.

    Here is example.

     

    set type 'node'; #element or node#
    set t [clock click];
    hwi OpenStack;
    hwi GetSessionHandle sess$t;
    sess$t GetProjectHandle proj$t;
    proj$t GetPageHandle page$t [proj$t GetActivePage];
    page$t GetWindowHandle wind$t [page$t GetActiveWindow];
    wind$t GetClientHandle ****$t;
    ****$t GetModelHandle modl$t [****$t GetActiveModel];
    modl$t GetSelectionSetHandle set1$t [modl$t AddSelectionSet $type];
    set1$t Add 'contour top 1';
    set1$t SetLabel '$type set top 1';
    ****$t Draw;
    tk_messageBox -message 'Top1 $type ID = [set1$t GetList]';
    hwi CloseStack;