get_step Function

private pure function get_step(self) result(step)

Type Bound

type_iteration

Arguments

Type IntentOptional Attributes Name
class(type_iteration), intent(in) :: self

Return Value integer(kind=int32)


Called by

proc~~get_step~~CalledByGraph proc~get_step type_iteration%get_step proc~compute_type_hydraulic_crs compute_type_hydraulic_crs proc~compute_type_hydraulic_crs->proc~get_step proc~compute_type_thermal_crs compute_type_thermal_crs proc~compute_type_thermal_crs->proc~get_step interface~compute_type_hydraulic_crs type_hydraulic_crs%compute_type_hydraulic_crs interface~compute_type_hydraulic_crs->proc~compute_type_hydraulic_crs interface~compute_type_thermal_crs type_thermal_crs%compute_type_thermal_crs interface~compute_type_thermal_crs->proc~compute_type_thermal_crs

Source Code

    pure function get_step(self) result(step)
        implicit none
        class(type_iteration), intent(in) :: self
        integer(int32) :: step

        step = self%step
    end function get_step