How to write a line which has more than 255 charactors?

SPT NO Y Z REFP
ORT ‘=((2*(-Tf0+H)+StWb-WbSb)((2(Tf0-H)-(Wt-2Wf)St+WbSb)(-Wb+2Two)+(-Wt+Wb+2Wf)(2(Tt-H)+WbSb)+2(Lcort*(2*(Tf0-H)-(Wt-2Wf)St+WbSb)+Vcort(-Wt+Wb+2Wf))))/(2(-2Tf0+(Wt-2Wf)St-WbSb+2H+St(-Wt+2Wf+Wb))^2)’ '=(2Tt*(-2Tf0+(Wt-2Wf)St-WbSb+2H+St(-Wt+2Wf+Wb))^2-(2(-Tf0+H)+StWb-WbSb)((2(Tf0-H)-(Wt-2Wf)St+WbSb)(-Wb+2Two)+(-Wt+Wb+2Wf)(2(Tt-H)+WbSb)+2(Lcort*(2*(Tf0-H)-(Wt-2Wf)St+WbSb)+Vcort(-Wt+Wb+2Wf)))St)/(2(-2Tf0+(Wt-2Wf)St-WbSb+2H+St*(-Wt+2*Wf+Wb))^2)’ TC

The line starts with “ORT” and ends with “TC” has 522 charactors in total.

The record below is for “Y” coordinate, which has 221 charactors

‘=((2*(-Tf0+H)+StWb-WbSb)((2(Tf0-H)-(Wt-2Wf)St+WbSb)(-Wb+2Two)+(-Wt+Wb+2Wf)(2(Tt-H)+WbSb)+2(Lcort*(2*(Tf0-H)-(Wt-2Wf)St+WbSb)+Vcort(-Wt+Wb+2Wf))))/(2(-2Tf0+(Wt-2Wf)St-WbSb+2H+St(-Wt+2*Wf+Wb))^2)’

The record below is for “Z” coordinate, which has 280 charactors

‘=(2Tt(-2Tf0+(Wt-2Wf)St-WbSb+2H+St(-Wt+2Wf+Wb))^2-(2(-Tf0+H)+StWb-WbSb)((2(Tf0-H)-(Wt-2Wf)St+WbSb)(-Wb+2Two)+(-Wt+Wb+2Wf)(2(Tt-H)+WbSb)+2(Lcort*(2*(Tf0-H)-(Wt-2Wf)St+WbSb)+Vcort(-Wt+Wb+2Wf)))St)/(2(-2Tf0+(Wt-2Wf)St-WbSb+2H+St*(-Wt+2*Wf+Wb))^2)’

Hello,

The maximum number of elements per TEDDY line is fix (SOFiSTiK Basics - Manual, chapter 9.1.1).
You can try to use the command " $$" (SOFiSTiK Basics - manual, chapter 9.2.6). This allows you to extend the input record to the next line.
I am not exactly sure if this is working in your case (formula ’ =…’). So just give it a try.

Best regards
Frederik Höller
Your SOFiSTiK Support Team

1 Like

I have a similar problem
how can I use a second line for a definition of an array?

sto#x 0.0,-2.0,-4.0,-6.0,-8.0,-10.0,-12.0,-14.0,-16.0,-18.0,-20.0,-22.0,-24.0,-26.0,-28.0,-30.0,-32.0,-34.0,-36.0,-38.0,-40.0,-42. 0,-44.0,-46.0,-48.0,-50.0,-52.0,-54.0,-56.0,-58.0,-60.0,-62.0,-64.0,-66.0,-68.0,-70.0,-72.0,-74.0,-76.0,-78.0,-80.0,-82.0,-84.0

Use $$ for line continuation, e.g.:

sto#x 0.0,-2.0,-4.0,-6.0,-8.0,-10.0,-12.0,-14.0,-16.0,-18.0, $$
-20.0,-22.0,-24.0,-26.0,-28.0,-30.0,-32.0,-34.0,-36.0,-38.0, $$
-40.0,-42.0,-44.0,-46.0,-48.0,-50.0,-52.0,-54.0,-56.0,-58.0, $$
-60.0,-62.0,-64.0,-66.0,-68.0,-70.0,-72.0,-74.0,-76.0,-78.0, $$
-80.0,-82.0,-84.0

1 Like