Hello,
I am still having trouble accessing FUDRAG, I can't see it defined in declarations_telemac2d...however it is defined in interface_telemac2d.
Even with including:
USE INTERFACE_TELEMAC2D
at the start of preres, I get an error 'this name does not have a type'
Following that I have included the type and dummy argument statements from interface_telemac2d into preres:
&(FU_IMP,FV_IMP,FUDRAG,FVDRAG)
TYPE(BIEF_OBJ), INTENT(INOUT) :: FU_IMP,FV_IMP,FUDRAG,FVDRAG
I then receive the same forrtl error described in the last post. Is more than one private array required?
The code I currently have in preres:
IF((LEO.AND.SORLEO(23)).OR.(IMP.AND.SORIMP(23))) THEN
DO N=1,NPOIN
PRIVE%ADR(1)%P%R(N) = FUDRAG%R(N)
ENDDO
ENDIF
Scott