Hello,
Now I figured out that the function "ALLVEC" has been replaced by function "BIEF_ALLVEC". But the arguments don't match. In the declaration of "BIEF_ALLVEC":
subroutine BIEF::interface::BIEF_ALLVEC ( INTEGER,intent(in) NAT,
TYPE(BIEF_OBJ),intent(inout) VEC,
CHARACTER*6,intent(in) NOM,
INTEGER,intent(in) IELM,
INTEGER,intent(in),optional DIM2,
INTEGER,intent(in),optional STATUT,
TYPE(BIEF_MESH),intent(in) MESH
)
But in the old code, they just used "CALL ALLVEC(1,FXH ,'FXH ',IELMU, 1 , 2 )" . There is one missing argument "MESH".
How to fix this problem? Thanks!