Create individual .plb per task files via Teddy / Einzelne .plb Dateien für jeden Task erstellen mit Teddy

Hello there,

is it possible to create individual .plb files for each task with Teddy, similar to using the SSD?
While working with multiple loops, only the results of the last loop within DYNA are saved to the .plb file in my case.

Is there a solution?

Cheers and thanks in advance!


Hallo zusammen,

ist es möglich, individuelle .plb Dateien für jeden Rechenlauf mit Teddy zu erstellen, ähnlich zum Vorgehen im SSD?
Beim Arbeiten mit mehreren Schleifen werden bei mir nur die Ergebnisse des letzten DYNA-Rechenlaufes in die .plb gespeichert.

Gibt es eine Lösung?

Grüße und Danke im Voraus!

After each step that you want to save individually you perform the following command line calls:
+Sys Copy (name).plb (project)_my_name_addition.plb
+Sys Del $(name).plb

The variable $(name) is the name of your teddy file (or ssd)

Thank you very much for your answer.

Unfortunately this only saves the last iteration of the task in my case. Am i doing something wrong?

I am using a syntax similar to:

prog dyna iter
(…)
end

+Sys Copy (name).plb (project)_my_name_addition.plb +Sys Del (name).plb

prog template
(iteration criteria)
end

Further: What’s the solution for numbering the output with a variable aside of defining a string each time? E.g. …_001.plb; …_002.plb; etc.?