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 vegetation_s_curve(x1,x2,x3,x4)!**** PURPOSE: THIS SUBROUTINE COMPUTES S CURVE PARAMETERS x1 & x2! GIVEN 2 (X, Y) POINTS!**** CALLED IN: CRPMD!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~real(dp)x1,x2,x3,x4,xxxx=log(x3/x1-x3)x2=(xx-log(x4/x2-x4))/(x4-x3)x1=xx+x3*x2return end subroutine vegetation_s_curve