Dear Prof,
Is it enough to follow this file? According to my reading, this file only contains the time integration scheme, I don't know whether the explicit system of equation is correct because I find it's difficult to figure out the Diagonal solution(If dr means residual for the explicit), could you give me more suggestion about the explicit solver in Feap.
Diagonal solution
if(stype.eq.0) then
aengy = 0.0d0
do i = 0,neq-1
if(hr(fp(1)+i) .ne. 0.0d0) then
rsdi = b(i+1)
b(i+1) = b(i+1)/hr(fp(1)+i)
aengy = aengy + rsdi*b(i+1)
endif
end do
Thanks for your help in advance.
Best