surface_plot_data Derived Type

type, public, extends(plot_data) :: surface_plot_data

Provides a three-dimensional surface plot data set.


Contents


Type-Bound Procedures

procedure, public :: define_data => surfd_set_data_1

  • private subroutine surfd_set_data_1(this, x, y, z, err)

    Defines the data set.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(inout) :: this

    The suface_plot_data object.

    real(kind=real64), intent(in), dimension(:,:) :: x

    An M-by-N matrix containing the x-coordinate data.

    real(kind=real64), intent(in), dimension(:,:) :: y

    An M-by-N matrix containing the y-coordinate data.

    real(kind=real64), intent(in), dimension(:,:) :: z

    An M-by-N matrix containing the z-coordinate data.

    class(errors), intent(inout), optional, target :: err

    An error handling object.

procedure, public :: get_command_string => surfd_get_cmd

  • private function surfd_get_cmd(this) result(x)

    Gets the GNUPLOT command string to represent this surface_plot_data object.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    Return Value character(len=:), allocatable

    The command string.

procedure, public :: get_data_string => surfd_get_data_cmd

  • private function surfd_get_data_cmd(this) result(x)

    Gets the GNUPLOT command string containing the actual data to plot.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    Return Value character(len=:), allocatable

    The GNUPLOT command string.

procedure, public :: get_name => pd_get_name

  • private pure function pd_get_name(this) result(txt)

    Gets the name to associate with this data set.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(in) :: this

    The plot_data object.

    Return Value character(len=:), allocatable

    The name.

procedure, public :: get_size => surfd_get_size

  • private pure function surfd_get_size(this, dim) result(x)

    Gets the size of the stored data set.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: dim

    The dimension of interest. Notice, data is stored as a 2D matrix (i.e. only 1 and 2 are valid inputs).

    Return Value integer(kind=int32)

    The size of the requested dimension.

procedure, public :: get_use_wireframe => surfd_get_wireframe

  • private pure function surfd_get_wireframe(this) result(x)

    Gets a value determining if a wireframe mesh should be displayed.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    Return Value logical

    Returns true if a wireframe mesh should be displayed; else, false to display a solid surface.

procedure, public :: get_x => surfd_get_x

  • private pure function surfd_get_x(this, i, j) result(x)

    Gets the requested X data point.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: i

    The row index.

    integer(kind=int32), intent(in) :: j

    The column index.

    Return Value real(kind=real64)

    The value.

procedure, public :: get_y => surfd_get_y

  • private pure function surfd_get_y(this, i, j) result(x)

    Gets the requested Y data point.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: i

    The row index.

    integer(kind=int32), intent(in) :: j

    The column index.

    Return Value real(kind=real64)

    The value.

procedure, public :: get_z => surfd_get_z

  • private pure function surfd_get_z(this, i, j) result(x)

    Gets the requested Z data point.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(in) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: i

    The row index.

    integer(kind=int32), intent(in) :: j

    The column index.

    Return Value real(kind=real64)

    The value.

procedure, public :: set_name => pd_set_name

  • private subroutine pd_set_name(this, txt)

    Sets the name to associate with this data set.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(inout) :: this

    The plot_data object.

    character(len=*), intent(in) :: txt

    The name.

procedure, public :: set_use_wireframe => surfd_set_wireframe

  • private subroutine surfd_set_wireframe(this, x)

    Sets a value determining if a wireframe mesh should be displayed.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(inout) :: this

    The suface_plot_data object.

    logical, intent(in) :: x

    Set to true if a wireframe mesh should be displayed; else, false to display a solid surface.

procedure, public :: set_x => surfd_set_x

  • private subroutine surfd_set_x(this, i, j, x)

    Sets the requested X data point.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(inout) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: i

    The row index.

    integer(kind=int32), intent(in) :: j

    The column index.

    real(kind=real64), intent(in) :: x

    The value.

procedure, public :: set_y => surfd_set_y

  • private subroutine surfd_set_y(this, i, j, x)

    Sets the requested Y data point.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(inout) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: i

    The row index.

    integer(kind=int32), intent(in) :: j

    The column index.

    real(kind=real64), intent(in) :: x

    The value.

procedure, public :: set_z => surfd_set_z

  • private subroutine surfd_set_z(this, i, j, x)

    Sets the requested Z data point.

    Arguments

    Type IntentOptional Attributes Name
    class(surface_plot_data), intent(inout) :: this

    The suface_plot_data object.

    integer(kind=int32), intent(in) :: i

    The row index.

    integer(kind=int32), intent(in) :: j

    The column index.

    real(kind=real64), intent(in) :: x

    The value.