Ansys Learning Forum › Forums › Discuss Simulation › General Mechanical › Changing the name of reaction probes created with a jscript macro? › Reply To: Changing the name of reaction probes created with a jscript macro?
March 21, 2017 at 10:31 am
vganore
Ansys Employee
We do not recommend using JScript macros. They are undocumented, unsupported and relatively difficult to use. We recommend using ACT. It is documented, supported and relatively simple to use. You can change the name of reaction probes using the following commands. newProbe = ExtAPI.DataModel.Project.Model.Analyses[0].Solution.AddForceReaction() newProbe.Name = "MyProbe"