Hello,
I have written the following script to assign x dependent pressure values to some faces.
pf = analysis.AddPressure()
Ansys.ACT.Automation.Mechanical.LoadHelper.SwitchToTabular(pf)
pf.IndependentVariable = LoadVariableVariationType.XValue
pf.XYZFunctionCoordinateSystem = ExtAPI.DataModel.GetObjectsByName("COS_CC(Mechanical Model)")[0]
pf.Magnitude.Inputs[0].DiscreteValues = [Quantity(xi) for xi in x]
pf.Magnitude.Output.DiscreteValues = [Quantity(pii) for pii in val]
I'd like to scale these inputs for different time steps. How do I do that with scripting?
I'd like to edit the following table
