validate_gmsh_msh1_element_with_mesh_data_public Function

private elemental function validate_gmsh_msh1_element_with_mesh_data_public(element, mesh_data) result(is_valid)

Checks if the derived type is valid.

Arguments

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

Return Value logical


Calls

proc~~validate_gmsh_msh1_element_with_mesh_data_public~~CallsGraph proc~validate_gmsh_msh1_element_with_mesh_data_public validate_gmsh_msh1_element_with_mesh_data_public interface~is_read_successful is_read_successful proc~validate_gmsh_msh1_element_with_mesh_data_public->interface~is_read_successful proc~validate_gmsh_msh1_element_with_mesh_data_private validate_gmsh_msh1_element_with_mesh_data_private proc~validate_gmsh_msh1_element_with_mesh_data_public->proc~validate_gmsh_msh1_element_with_mesh_data_private proc~is_read_successful_gmsh_msh1_file is_read_successful_gmsh_msh1_file interface~is_read_successful->proc~is_read_successful_gmsh_msh1_file interface~validate validate proc~validate_gmsh_msh1_element_with_mesh_data_private->interface~validate interface~validate->proc~validate_gmsh_msh1_element_with_mesh_data_public proc~validate_gmsh_msh1_data validate_gmsh_msh1_data interface~validate->proc~validate_gmsh_msh1_data proc~validate_gmsh_msh1_element_without_mesh_data validate_gmsh_msh1_element_without_mesh_data interface~validate->proc~validate_gmsh_msh1_element_without_mesh_data proc~validate_gmsh_msh1_node validate_gmsh_msh1_node interface~validate->proc~validate_gmsh_msh1_node proc~validate_gmsh_msh1_number validate_gmsh_msh1_number interface~validate->proc~validate_gmsh_msh1_number proc~validate_gmsh_msh1_reg_elem validate_gmsh_msh1_reg_elem interface~validate->proc~validate_gmsh_msh1_reg_elem proc~validate_gmsh_msh1_reg_phys validate_gmsh_msh1_reg_phys interface~validate->proc~validate_gmsh_msh1_reg_phys proc~all_flag all_flag proc~is_read_successful_gmsh_msh1_file->proc~all_flag proc~is_iostat_failure is_iostat_failure proc~is_read_successful_gmsh_msh1_file->proc~is_iostat_failure proc~is_stat_failure is_stat_failure proc~is_read_successful_gmsh_msh1_file->proc~is_stat_failure proc~validate_gmsh_msh1_data->interface~is_read_successful proc~validate_gmsh_msh1_data->proc~validate_gmsh_msh1_element_with_mesh_data_private proc~validate_gmsh_msh1_data->interface~validate proc~validate_gmsh_msh1_element_without_mesh_data->interface~validate proc~validate_gmsh_msh1_node->interface~validate

Called by

proc~~validate_gmsh_msh1_element_with_mesh_data_public~~CalledByGraph proc~validate_gmsh_msh1_element_with_mesh_data_public validate_gmsh_msh1_element_with_mesh_data_public proc~validate_gmsh_msh1_element_with_mesh_data_private validate_gmsh_msh1_element_with_mesh_data_private proc~validate_gmsh_msh1_element_with_mesh_data_public->proc~validate_gmsh_msh1_element_with_mesh_data_private interface~validate validate interface~validate->proc~validate_gmsh_msh1_element_with_mesh_data_public proc~validate_gmsh_msh1_data validate_gmsh_msh1_data interface~validate->proc~validate_gmsh_msh1_data proc~validate_gmsh_msh1_element_without_mesh_data validate_gmsh_msh1_element_without_mesh_data interface~validate->proc~validate_gmsh_msh1_element_without_mesh_data proc~validate_gmsh_msh1_node validate_gmsh_msh1_node interface~validate->proc~validate_gmsh_msh1_node proc~validate_gmsh_msh1_data->interface~validate proc~validate_gmsh_msh1_data->proc~validate_gmsh_msh1_element_with_mesh_data_private proc~validate_gmsh_msh1_element_with_mesh_data_private->interface~validate proc~validate_gmsh_msh1_element_without_mesh_data->interface~validate proc~validate_gmsh_msh1_node->interface~validate

Source Code

    elemental function validate_gmsh_msh1_element_with_mesh_data_public(element, mesh_data) result(is_valid)

        type(gmsh_msh1_element_type), intent(in) :: element

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

        logical :: is_valid



        is_valid = is_read_successful(mesh_data)

        if (.not. is_valid) return



        is_valid = validate_gmsh_msh1_element_with_mesh_data_private(element, mesh_data)

    end function validate_gmsh_msh1_element_with_mesh_data_public