Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
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 calclw!calculate the longwave exchange between facetsuse modglobal,only:nfcts,boltz,skyLW,nnzuse initfac,only:facem,vf,svf,faca,facT,facLWin,facets,vfsparse,ivfsparse,jvfsparseinteger::n,m,i,jreal::ltemp=0.if(lvfsparse)thenfacLWin=svf*skyLW*facemdo n=1,nnzi=ivfsparse(n)j=jvfsparse(n)facLWin(i)=facLWin(i)+vfsparse(n)*facem(i)*facem(j)*boltz*facT(j,1)**4end do else do n=1,nfcts!if (facets(n) < -100) cycleltemp=0.do m=1,nfcts!for n, sum over all other m facets!ltemp = ltemp + vf(m, n)*faca(m)/faca(n)*facem(m)*boltz*facT(m, 1)**4 ![W/m2]ltemp=ltemp+vf(n,m)*facem(m)*boltz*facT(m,1)**4![W/m2]end dofacLWin(n)=(ltemp+svf(n)*skyLW)*facem(n)end do end if end subroutine calclw