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.
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
subroutine calc_test_field(lon_rad,lat_rad,e,n)real(ESMF_KIND_R8)::lon_rad,lat_rad,e,nreal(ESMF_KIND_R8)::e_vec(3)real(ESMF_KIND_R8)::n_vec(3)real(ESMF_KIND_R8)::len! Get basis vectorscall calc_unit_basis_vecs(lon_rad,lat_rad,e_vec,n_vec)! Dot with a vector going along x-axis (essentially just use x component)e=e_vec(1)n=n_vec(1)! Make unit veclen=sqrt(e*e+n*n)if(len.ne.0.0)thene=e/lenn=n/lenendif end subroutine calc_test_field