output_number_of_elements_gmsh_msh1_file Function

private elemental function output_number_of_elements_gmsh_msh1_file(mesh_data) result(number_of_elements)

Get the number of gmsh_msh1_element_types in the gmsh_msh1_data_type.

Arguments

Type IntentOptional Attributes Name
type(gmsh_msh1_data_type), intent(in) :: mesh_data

Return Value integer


Called by

proc~~output_number_of_elements_gmsh_msh1_file~~CalledByGraph proc~output_number_of_elements_gmsh_msh1_file output_number_of_elements_gmsh_msh1_file interface~output_number_of_elements output_number_of_elements interface~output_number_of_elements->proc~output_number_of_elements_gmsh_msh1_file proc~lookup_element_by_loc_gmsh_msh1_file lookup_element_by_loc_gmsh_msh1_file proc~lookup_element_by_loc_gmsh_msh1_file->interface~output_number_of_elements interface~lookup_element lookup_element interface~lookup_element->proc~lookup_element_by_loc_gmsh_msh1_file

Source Code

    elemental function output_number_of_elements_gmsh_msh1_file(mesh_data) result(number_of_elements)

        type(gmsh_msh1_data_type), intent(in) :: mesh_data

        integer :: number_of_elements



        number_of_elements = size( mesh_data%element(:) )

    end function output_number_of_elements_gmsh_msh1_file