How to add Solve Commands to all or selected time steps with GetSolveCommands?
Ayush Kumar
Member, Moderator, Employee Posts: 470
✭✭✭✭
in Structures
How to add Solve Commands to all or selected time steps with GetSolveCommands?
Tagged:
0
Comments
-
XML:
<getsolvecommands timeDependent="true">AddSolveCommands</getsolvecommands>
Python:
def AddSolveCommands(load, step, stream): return
0 -
I recommend using the callback GetCommands and location = solve
This will also pass the IsolverData object to the callback that tracks the current step number as well as access to lots of useful info.
1