get_num_nodes Function

private function get_num_nodes(self) result(num_nodea)

Type Bound

type_domain

Arguments

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

Return Value integer(kind=int32)


Called by

proc~~get_num_nodes~~CalledByGraph proc~get_num_nodes type_domain%get_num_nodes proc~construct_type_hydraulic_crs construct_type_hydraulic_crs proc~construct_type_hydraulic_crs->proc~get_num_nodes proc~construct_type_thermal_crs construct_type_thermal_crs proc~construct_type_thermal_crs->proc~get_num_nodes proc~update_type_thermal_crs update_type_thermal_crs proc~update_type_thermal_crs->proc~get_num_nodes interface~construct_type_hydraulic_crs construct_type_hydraulic_crs interface~construct_type_hydraulic_crs->proc~construct_type_hydraulic_crs interface~construct_type_thermal_crs construct_type_thermal_crs interface~construct_type_thermal_crs->proc~construct_type_thermal_crs interface~update_type_thermal_crs type_thermal_crs%update_type_thermal_crs interface~update_type_thermal_crs->proc~update_type_thermal_crs interface~type_hydraulic_crs type_hydraulic_crs interface~type_hydraulic_crs->interface~construct_type_hydraulic_crs interface~type_thermal_crs type_thermal_crs interface~type_thermal_crs->interface~construct_type_thermal_crs

Source Code

    function get_num_nodes(self) result(num_nodea)
        implicit none
        class(type_domain), intent(in) :: self
        integer(int32) :: num_nodea

        num_nodea = self%num_nodes

    end function get_num_nodes