Hello,
Yes, you are quite right, the treatment of parallelism is not done in subroutine dragfo in version 6.1. I'll do it in next version.
We apply a stress and first deal with forces, hence we must divide after by the area on which the force is exerted, so that when integrated over the area it gives back the force. You just need to :
Add :
DOUBLE PRECISION P_DSUM
EXTERNAL P_DSUM
at the beginning of the subroutine dragfo.
Before the test IF(AIRE.GT.1.D-6)... add the instruction :
IF(NCSIZE.GT.0) AIRE=P_DSUM(AIRE)
I hope it works, with best regards,
Jean-Michel Hervouet