How to create a binout tracker on a Tracer inside WB LS-Dyna?
the below script might be useful to automate some things - it takes all existing binout trackers ( works on trthist type only) and duplicates them
model = ExtAPI.DataModel.Project.Model.Analyses[0].Solution.SolutionInformation chen=model.Children for ch in chen: if str(ch.GetType())=='Ansys.ACT.Automation.Mechanical.Results.ResultTrackers.LSDYNAGeneralTracker' and ch.LSDYNABranchName=='trhist': si=model.AddLSDYNAGeneralTracker() si.LSDYNABranchName=ch.LSDYNABranchName si.LSDYNAComponentName=ch.LSDYNAComponentName si.InternalObject.GeneralLoadSelection=ch.InternalObject.GeneralLoadSelection ExtAPI.DataModel.Project.Model.Analyses[0].Solution.EvaluateAllResults()