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.
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 intqH!time integration of heat and latent heat from facetsuse modglobal,only:nfcts,dt,rk3step,lEBuse initfac,only:faccth,fachfsum,fachf,fachfi,facef,facefi,facefsumuse modmpi,only:nprocs,myid,comm3d,mpierr,mpi_sum,my_realreal::dummyinteger::nif(.not.lEB)return if(rk3step.eq.3)then!sum over all processors since a facet can be split onto more than one processorfachfsum=0.facefsum=0.call MPI_ALLREDUCE(fachf(1:nfcts),fachfsum(1:nfcts),nfcts,MY_REAL,MPI_SUM,comm3d,mpierr)call MPI_ALLREDUCE(facef(1:nfcts),facefsum(1:nfcts),nfcts,MY_REAL,MPI_SUM,comm3d,mpierr)if(myid==0)then!time summation of total facet heatlux (will be divided by dtEB in EB to get time mean flux)do n=1,nfctsfachfi(n)=fachfi(n)+dt*fachfsum(n)!sum up the fluxes over timefacefi(n)=facefi(n)+dt*facefsum(n)end do end if end iffachf=0.fachfsum=0.facefsum=0.facef=0.end subroutine intqH