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 u-wind levels zu from the difference in between w-wind levels dzw,
where is the vertical coordinate, u-wind and w-wind levels are synonymous with layer midpoints and interfaces
in MPAS, respectively.
(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.
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
real(kind=real64),
private
::
zw(size(dzw)+1)
Source Code
pure function zu_of_dzw_real64(dzw)result(zu)use,intrinsic::iso_fortran_env,only:real64real(real64),intent(in)::dzw(:)real(real64)::zu(size(dzw))integer::kreal(real64)::zw(size(dzw)+1)zw(:)=zw_of_dzw(dzw)do k=1,size(zu)zu(k)=0.5_real64*(zw(k)+zw(k+1))end do end function zu_of_dzw_real64