Hallo zusammen,
bei der Berechnung in ASE kommt es zu einem Abbruch der Berechnung. Teilweise wird ein Fehler ausgegeben, teilweise nur die Meldung “Berechnung abgebrochen”. Es ist unwahrscheinlich, dass es sich dabei um einen Fehler aus der Eingabe handelt, da die Modelle parametrisiert als batch job ausgeführt werden und die vorhergehenden Modelle durchweg berechnet wurden. Wie kommt es zu diesem Fehler und gibt es eine bekannte Lösung dafür? Kann es eventuell mit der Modellgröße zusammenhängen?
How many loadcases are you analysing in one ASE program?
It can be buggy/run out of RAM (i think?) at around 2500 loadcases is my experience.
That might be the case. I’m far above the mark of 2500, rather around 20000, since I’m dealing with unit loads to create influence functions on a large set of nodes. Funny enough there was no issue with other models of comparable size. But maybe splitting up the loadcases into groups would help then.
Try splitting your analysis into several ASE modules.
+prog ase
LC (0 2000 1)
end
+prog ase
LC (2000 4000 1)
end
etc.
If you want to check if that is causing the problem you could also try and just run 100 loadcases in your ase, by using LC (0 100 1).
I think your amount of loadcases is the problem.
Did it work?
Yes, exceeding a certain number of load cases in one ASE run seems to cause problems. Thank you!