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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
real(ESMF_KIND_R8)function create_uniform_coord(k,finish,start,ncells)!-----------------------------------------------------------------------------! define the coordinate for a uniform grid in terms of the global index k,! the top and bottom of the range (finish and start), and the total number! of cells.! create_uniform_coord(1) = start! create_uniform_coord(ncells) = finish!-----------------------------------------------------------------------------integer::k,ncellsreal(ESMF_KIND_R8)::finish,start!-----------------------------------------------------------------------------create_uniform_coord=(k-1)*(finish-start)/(ncells-1)+start!-----------------------------------------------------------------------------end function create_uniform_coord