How to add force reaction (for weak springs)?
Erik Kostson
Member, Employee Posts: 247
✭✭✭✭
We have activated weak springs (analysis settings = On), and want to create automatically a force reaction result for weak springs using ACT scripting.
Tagged:
0
Best Answer
-
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()
0
This discussion has been closed.