Formulas para legenda de armaduras


Formula to apply in reinforcement row for Tekla Structures drawing templates.
Formulas para legenda de armaduras

This first formula could be applied in a ROW.
So if the name contains "REBAR" and the shape code have a number smaller or iqual than 30 then is output.
Portanto, Se o nome contem "REBAR" e o formato tem um numero de codigo mais pequeno ou igual que 30 depois vai extrair esse resultado.

if (match(GetValue("NAME"),"*REBAR*"))
&& (GetValue("SHAPE") >= "30") 
then
  Output()
else
  StepOver()
endif

Outra formula que pode ser útil diretamente numa variável é a seguinte:

if  (match(GetValue("DRAWING.TITLE2"),"*TWIN*"))
then 
"APS:;REBAR; ;"+CopyField("R01")+"Kg;LATTICE;"+CopyField("L02")+";"+CopyField("L01")+"Kg;MESH;"+CopyField("M02")+";"+CopyField("M01")+"Kg;APSX"
else

"---"
endif





Comentários

Mensagens populares