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 difference in between u-wind levels dzu 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.
Variables
Type
Visibility
Attributes
Name
Initial
integer,
private
::
k
Source Code
pure function dzu_of_dzw_real32(dzw)result(dzu)use,intrinsic::iso_fortran_env,only:real32real(real32),intent(in)::dzw(:)real(real32)::dzu(size(dzw)-1)integer::kdo k=1,size(dzu)dzu(k)=0.5_real32*(dzw(k)+dzw(k+1))end do end function dzu_of_dzw_real32