Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
This page has been translated for your convenience with an automatic translation service. This is not an official translation and may contain errors and inaccurate translations. Autodesk does not warrant, either expressly or implied, the accuracy, reliability or completeness of the information translated by the machine translation service and will not be liable for damages or losses caused by the trust placed in the translation service.Translate
@Thetigerpirro All FEA loads are stored as parameters. After looking at it, you can add expressions in the Stress Analysis parameters to make the forces parametric. The trick is that you have to multiply/modify the forces by a "unitless" value.
If you needed something a little more complicated, you can use iLogic similar to this.
paramA = Parameter.Param("LoadA")
paramB = Parameter.Param("LoadB")
forceUnitString = " lbforce"'this intentionally includes a space'The "if...else if" statements are iLogic's version of case statementsIfMultiplier = 3
paramA.Expression = 4 & forceUnitString & " * Multiplier"'this is how you would set the expression to show the equationparamB.Expression = 9 & forceString'you must include the force string in the ilogic when setting FEA parametersElseIfMultiplier = 2
paramA.Expression = 4 & forceUnitString & " * Multiplier"paramB.Expression = 6 & forceStringElseIfMultiplier = 1
paramA.Expression = 4 & forceUnitString & " * Multiplier"paramB.Expression = 3 & forceStringEndIf