Hello everyone,
I difined a Bushing with user subroutine GFOSUB in Python, the input is Bushing velocity and displacement and returns six-point force, like:
def GFOSUB(id, time, par, npar, dflag, iflag):
…
return [FX, FY, FZ, MX, MY, MZ]
The simulation performed correctly, but the output of Bushing force is zero. As shown in Figs below. Bushings in Fig. 1 are all general Bushings, the force in the middle is an external force
In Fig.2, GFOSUB Bushing on the left and general Bushing on the right. The GFOSUB Bushing force has vanishes, but force of another Bushing seems similar, means there is no error in the model setup.
The problem is I need the GFOSUB Bushing force for debugging, so how can I get it to output correctly?
Sincere gratitude,
Garand