Prescribed displacement in Step 2 returns to zero before indenting — how to fix?
I'm running a T-joint indentation analysis with two loading phases:
Step 1: Axial preload on the chord. No prescribed displacement on the brace, but the brace crown point already displaces passively (let's call it UY_residual ≈ -0.9 mm) due to chord deformation.
Step 2: Prescribed displacement applied to the brace top to simulate an indentation punch (-4 mm).
The problem: ANSYS treats the -4 mm as an absolute target. So instead of continuing from -0.9 mm down to -4.9 mm, the node returns to zero first, then goes to -4 mm. This creates a physically incorrect displacement reversal at the start of indentation.
I've tried both Remote Displacement and APDL D command — same issue with both.
What worked: Reading UY_residual via /POST1 + SET, 1, LAST + *GET inside the Step 2 Commands Object, then applying D, ALL, UY, (UY_residual + increment) as the absolute target.
Questions:
Is there a native Mechanical way to prescribe displacement relative to the current deformed state?
Is the /POST1 + *GET approach inside a Commands Object the standard practice for this?
Thanks.