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.
Source Code
subroutine link_surface_swr_flux()integer rc! status variableid_surface_swr_flux=model%&get_horizontal_variable_id(standard_variables%&surface_downwelling_shortwave_flux)if(model%variable_needs_values(id_surface_swr_flux))then allocate(surface_swr_flux(imt,jmt),stat=rc)if(rc/=0)stop'link_surface_swr_flux(): & Error allocating (surface_swr_flux)'surface_swr_flux=0._rkecall model%link_horizontal_data(id_surface_swr_flux,&surface_swr_flux)end if end subroutine link_surface_swr_flux