We have activated weak springs (analysis settings = On), and want to create automatically a force reaction result for weak springs using ACT scripting.
below is one way of doing this:
model = ExtAPI.DataModel.Project.Model analysis=model.Analyses[0] anset=analysis.AnalysisSettings onws=str(anset.WeakSprings) solution=analysis.Solution if onws =='On': fr=solution.AddForceReaction() fr.LocationMethod=LocationDefinitionMethod.WeakSprings solution.EvaluateAllResults()