ply_fxt_header_module Module

The FXT method offers a transformation from Legendre modes to nodes by a fast multipole approach implemented in the FXTPACK library by Reiji Suda: R. Suda, "Fast Spherical Harmonic Transform Algorithm based on Generalized Fast Multiple Method", RIMS Kokyuroku vol 1606, pp. 18-29, Jun. 2008, RIMS, Kyoto University.

Besides the oversampling factor that can be used to increase the number points in the nodal representation to achieve an de-aliasing, there is only one other option to this method: The prec parameter configures the precision up to which the FXTPACK should compute the transformation. It defaults to the square root of the epsilon for the real kind. With double precision this would something around 1.4e-8.

This transformation utilizes the Gauss Legendre integration points in the nodal representation.

Thus, the configuration for a FXT projection takes the following form:

  projection = {
    kind = 'fxt',
    prec = 1.e-10
  }

Uses

  • module~~ply_fxt_header_module~~UsesGraph module~ply_fxt_header_module ply_fxt_header_module module~tem_logging_module tem_logging_module module~ply_fxt_header_module->module~tem_logging_module module~aot_out_module aot_out_module module~ply_fxt_header_module->module~aot_out_module module~ply_nodes_header_module ply_nodes_header_module module~ply_fxt_header_module->module~ply_nodes_header_module module~env_module env_module module~ply_fxt_header_module->module~env_module module~aotus_module aotus_module module~ply_fxt_header_module->module~aotus_module module~tem_float_module tem_float_module module~ply_fxt_header_module->module~tem_float_module module~tem_aux_module tem_aux_module module~ply_fxt_header_module->module~tem_aux_module module~ply_nodes_header_module->module~env_module

Used by

  • module~~ply_fxt_header_module~~UsedByGraph module~ply_fxt_header_module ply_fxt_header_module module~ply_prj_header_module ply_prj_header_module module~ply_prj_header_module->module~ply_fxt_header_module module~ply_fxt_module ply_fxt_module module~ply_fxt_module->module~ply_fxt_header_module module~ply_poly_project_module ply_poly_project_module module~ply_poly_project_module->module~ply_prj_header_module module~ply_poly_project_module->module~ply_fxt_module module~ply_dynarray_project_module ply_dynarray_project_module module~ply_poly_project_module->module~ply_dynarray_project_module module~ply_dynarray_project_module->module~ply_prj_header_module module~sdr_proto2treelm_module sdr_proto2treelm_module module~sdr_proto2treelm_module->module~ply_prj_header_module module~sdr_proto2treelm_module->module~ply_poly_project_module module~ply_oversample_module ply_oversample_module module~sdr_proto2treelm_module->module~ply_oversample_module module~sdr_config_module sdr_config_module module~sdr_proto2treelm_module->module~sdr_config_module module~sdr_subresolution_module sdr_subresolution_module module~sdr_subresolution_module->module~ply_prj_header_module module~sdr_subresolution_module->module~ply_dynarray_project_module program~seeder seeder program~seeder->module~sdr_proto2treelm_module program~seeder->module~sdr_config_module module~ply_oversample_module->module~ply_poly_project_module module~sdr_config_module->module~sdr_subresolution_module module~sdr_refinept_module sdr_refinePT_module module~sdr_refinept_module->module~sdr_config_module module~sdr_prototree_module sdr_protoTree_module module~sdr_prototree_module->module~sdr_config_module module~sdr_flooding_module sdr_flooding_module module~sdr_flooding_module->module~sdr_config_module

Contents


Interfaces

public interface assignment(=)

public interface operator(==)

  • private pure function isEqual(left, right) result(equality)

    This function provides the test for equality of two projections.

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    type(ply_fxt_header_type), intent(in) :: left

    projection to compare

    type(ply_fxt_header_type), intent(in) :: right

    projection to compare against

    Return Value logical

    is equal??

public interface operator(/=)

  • private pure function isUnequal(left, right) result(unequality)

    This function provides the test for unequality of two projections.

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    type(ply_fxt_header_type), intent(in) :: left

    projection to compare

    type(ply_fxt_header_type), intent(in) :: right

    projection to compare against

    Return Value logical

    is unequal??

public interface operator(<)

  • private pure function isSmaller(left, right) result(small)

    This function provides a < comparison of two projections.

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    type(ply_fxt_header_type), intent(in) :: left

    projection to compare

    type(ply_fxt_header_type), intent(in) :: right

    projection to compare against

    Return Value logical

    is smaller??

public interface operator(<=)

  • private pure function isSmallerOrEqual(left, right) result(small)

    This function provides a <= comparison of two projections.

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    type(ply_fxt_header_type), intent(in) :: left

    projection to compare

    type(ply_fxt_header_type), intent(in) :: right

    projection to compare against

    Return Value logical

    is smaller??

public interface operator(>)

  • private pure function isGreater(left, right) result(great)

    This function provides a > comparison of two projections.

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    type(ply_fxt_header_type), intent(in) :: left

    projection to compare

    type(ply_fxt_header_type), intent(in) :: right

    projection to compare against

    Return Value logical

    is greater??

public interface operator(>=)

  • private pure function isGreaterOrEqual(left, right) result(great)

    This function provides a >= comparison of two projections.

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    type(ply_fxt_header_type), intent(in) :: left

    projection to compare

    type(ply_fxt_header_type), intent(in) :: right

    projection to compare against

    Return Value logical

    is greater??


Derived Types

type, public :: ply_fxt_header_type

Fxt projection header type, consisting of the node header which give information about the type and number of points for the projection

Components

TypeVisibilityAttributesNameInitial
type(ply_nodes_header_type), private :: nodes_header
real(kind=rk), private :: factor =1.0
real(kind=rk), private :: prec =epsilon(1.0)

Functions

private pure function isEqual(left, right) result(equality)

This function provides the test for equality of two projections.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: left

projection to compare

type(ply_fxt_header_type), intent(in) :: right

projection to compare against

Return Value logical

is equal??

private pure function isUnequal(left, right) result(unequality)

This function provides the test for unequality of two projections.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: left

projection to compare

type(ply_fxt_header_type), intent(in) :: right

projection to compare against

Return Value logical

is unequal??

private pure function isSmaller(left, right) result(small)

This function provides a < comparison of two projections.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: left

projection to compare

type(ply_fxt_header_type), intent(in) :: right

projection to compare against

Return Value logical

is smaller??

private pure function isSmallerOrEqual(left, right) result(small)

This function provides a <= comparison of two projections.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: left

projection to compare

type(ply_fxt_header_type), intent(in) :: right

projection to compare against

Return Value logical

is smaller??

private pure function isGreater(left, right) result(great)

This function provides a > comparison of two projections.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: left

projection to compare

type(ply_fxt_header_type), intent(in) :: right

projection to compare against

Return Value logical

is greater??

private pure function isGreaterOrEqual(left, right) result(great)

This function provides a >= comparison of two projections.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: left

projection to compare

type(ply_fxt_header_type), intent(in) :: right

projection to compare against

Return Value logical

is greater??


Subroutines

public subroutine ply_fxt_header_load(me, conf, thandle)

Load settings to describe a projection method from a Lua table.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(out) :: me
type(flu_State) :: conf
integer, intent(in) :: thandle

public subroutine ply_fxt_header_out(me, conf)

Write FXT settings into a Lua table.

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: me
type(aot_out_type) :: conf

public subroutine ply_fxt_header_display(me)

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(in) :: me

private pure subroutine Copy_fxt_header(left, right)

Arguments

TypeIntentOptionalAttributesName
type(ply_fxt_header_type), intent(out) :: left

fpt to copy to

type(ply_fxt_header_type), intent(in) :: right

fpt to copy from