Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Thank you very much for your help.

Status
Not open for further replies.

hasnaoui

Programmer
Oct 25, 2020
11
0
0
TN
Thank you very much for your help.
but when I coming to run the stiffoptions.90 using the dvode_f90 subroutine, some errors appear like:

1982 | DVODE_F90(DERIVS,NEQ,Y,T,TOUT,ITASK,ISTATE,OPTIONS,J_FCN=JACD)
| 1

Error: There is no specific subroutine for the generic ‘dvode_f90’ at (1)
stiffoptions.f90:1985:78:

1985 | DVODE_F90(DERIVS,NEQ,Y,T,TOUT,ITASK,ISTATE,OPTIONS,J_FCN=JACS)
| 1

Error: There is no specific subroutine for the generic ‘dvode_f90’ at (1)
stiffoptions.f90:1988:78:

1988 | DVODE_F90(DERIVS,NEQ,Y,T,TOUT,ITASK,ISTATE,OPTIONS,J_FCN=JACB)
| 1

Error: There is no specific subroutine for the generic ‘dvode_f90’ at (1)

How to resolve these errors

thank you
 
But that's the same problem as you asked here:

Add the missing INTENTs in the declaration of DERIVS
Code:
....
      SUBROUTINE DERIVS(NEQ,T,Y,YDOT)
!       Define the system derivatives.
        IMPLICIT NONE
        INTEGER NEQ
        DOUBLE PRECISION T, Y, YDOT
        DIMENSION Y(NEQ), YDOT(NEQ)
[highlight #FCE94F]        intent(in) :: NEQ, T, Y
        intent(out) :: YDOT        
[/highlight]        CALL FCN(T,Y,YDOT)
        RETURN
      END SUBROUTINE DERIVS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top