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.
Compute the coordinates at w-wind levels zw from the difference in between w-wind levels dzw,
where is the vertical coordinate, and w-wind levels are synonymous with layer interfaces in MPAS.
(KCW, 2025-10-20)
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.
Variables
Type
Visibility
Attributes
Name
Initial
integer,
private
::
k
Source Code
pure function zw_of_dzw_real64(dzw)result(zw)use,intrinsic::iso_fortran_env,only:real64real(real64),intent(in)::dzw(:)real(real64)::zw(size(dzw)+1)integer::kdo k=1,size(zw)zw(k)=sum(dzw(1:k-1))end do end function zw_of_dzw_real64