Estimating the sum of the vertical nodal force and area of a footing

I am trying to estimate the sum of nodal forces and the area of a footing of radius 1, from the axis-symmetry line. I have tried different options such as putting all the gridpoints on that 1m into a list and summing all the forces on the gridpoints in the list. But when I fish list the contents of my loads it is not returning any value. It shows zero on the fish global symbol.

Please help if you have done this before.

Also, any book or manual to read to easily understand how fish works? I am new and just started learning FLAC

You need to call your function to return gridpoint forces after cycling. You’re calling the function before an cycling has occurred.
FISH Scripting

Thank you for your response. I tried it after cycling, and I still had the same experience.

Hello @Adams,
You are using the gp.force.load() FISH function to return applied forces. However, you have only applied a velocity condition to the gridpoints. If you want to find the forces at specific gridpoints you will need to use gp.force.unbal(). See zone gridpoint FISH functions here.

1 Like

Thank you!! It returns the loads now.