Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
subroutine river_travel_time_coefficients(qq1,q2,tt1,tt2,p1,pp2)!**** PURPOSE: THIS SUBROUTINE CALCULATES coefficients p1 and pp2!**** CALLED IN: TTCOEFI!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!**** Include common parametersreal(dp)qq1,q2,tt1,tt2,p1,pp2pp2=log(tt1/tt2)/log(qq1/q2)if(pp2.lt.-1.)pp2=-1.if(pp2.gt.1.5)pp2=1.5p1=tt1/(qq1**pp2)return end subroutine river_travel_time_coefficients