output_z_coord_gmsh_msh1_node Function

private elemental function output_z_coord_gmsh_msh1_node(node) result(z_coord)

Get the z_coord from the gmsh_msh1_node_type.

Arguments

Type IntentOptional Attributes Name
type(gmsh_msh1_node_type), intent(in) :: node

Return Value real(kind=real64)


Called by

proc~~output_z_coord_gmsh_msh1_node~~CalledByGraph proc~output_z_coord_gmsh_msh1_node output_z_coord_gmsh_msh1_node interface~output_z_coord output_z_coord interface~output_z_coord->proc~output_z_coord_gmsh_msh1_node

Source Code

    elemental function output_z_coord_gmsh_msh1_node(node) result(z_coord)

        type(gmsh_msh1_node_type), intent(in) :: node

        real(real64) :: z_coord



        z_coord = node%z_coord

    end function output_z_coord_gmsh_msh1_node