If you apply forces with a command, they are only applied to block boundaries. If you want to apply forces to internal gridpoints, you need to use FISH. e.g.
block gridpoint group 'whatever' range ...
fish def apply_force
loop foreach gp block.gp.list
if block.gp.group(gp) = 'whatever'
block.gp.force.app(gp)->z = -115*0.39
endif
end_loop
end
[apply_force]