sdr_transformation_module Module

This module provide datatype and routine for transformation of geometrical objects i.e translation and deformation


Uses

  • module~~sdr_transformation_module~~UsesGraph module~sdr_transformation_module sdr_transformation_module module~tem_logging_module tem_logging_module module~sdr_transformation_module->module~tem_logging_module module~tem_tools_module tem_tools_module module~sdr_transformation_module->module~tem_tools_module module~aot_table_module aot_table_module module~sdr_transformation_module->module~aot_table_module module~env_module env_module module~sdr_transformation_module->module~env_module module~aotus_module aotus_module module~sdr_transformation_module->module~aotus_module module~flu_binding flu_binding module~sdr_transformation_module->module~flu_binding module~tem_canonicalnd_module tem_canonicalND_module module~sdr_transformation_module->module~tem_canonicalnd_module module~tem_aux_module tem_aux_module module~sdr_transformation_module->module~tem_aux_module

Contents


Interfaces

public interface sdr_transformcanoND

This routine apply transformations to canonical objects

  • private subroutine transformCanoND(canoND, transform)

    This routine apply transformation to canonical objects.

    Arguments

    TypeIntentOptionalAttributesName
    type(tem_canonicalND_type), intent(inout) :: canoND(:)

    canonical geometry object type

    type(sdr_transformation_type), intent(in) :: transform

    transformation for spatial object

  • private subroutine transformCanoND_single(canoND, transform)

    This routine apply transformation to canonical objects.

    Arguments

    TypeIntentOptionalAttributesName
    type(tem_canonicalND_type), intent(inout) :: canoND

    canonical geometry object type

    type(sdr_transformation_type), intent(in) :: transform

    transformation for spatial object


Derived Types

type, public :: sdr_translation_type

Data type defines geometry translation

Components

TypeVisibilityAttributesNameInitial
logical, private :: active

Is translation defined

real(kind=rk), private :: vec(3)

vector defining translation in x,y,z direction

type, public :: sdr_deformation_type

Data type defines geometry scale and rotation

Components

TypeVisibilityAttributesNameInitial
logical, private :: active

Is deformation defined

real(kind=rk), private :: matrix(3,3)

matrix defining the deformation

type, public :: sdr_transformation_type

Data type defines geometry transformation

Components

TypeVisibilityAttributesNameInitial
logical, private :: active

is transformation active

type(sdr_translation_type), private :: translate

translation of geometry

type(sdr_deformation_type), private :: deform

deformation of geometry


Subroutines

public subroutine sdr_load_transformation(transform, conf, thandle)

This routine loads the transformation table for each spatial object table in config file

Read more…

Arguments

TypeIntentOptionalAttributesName
type(sdr_transformation_type), intent(out) :: transform

transformation for spatial object

type(flu_State) :: conf

lua state

integer, intent(in) :: thandle

spatial object parent handle

private subroutine sdr_load_translation(translate, conf, thandle)

This routine loads the translation table from transformation table

Arguments

TypeIntentOptionalAttributesName
type(sdr_translation_type), intent(out) :: translate

translate for spatial object

type(flu_State) :: conf

lua state

integer, intent(in) :: thandle

spatial object parent handle

private subroutine sdr_load_deformation(deform, conf, thandle)

This routine loads the deformation table from transformation table

Arguments

TypeIntentOptionalAttributesName
type(sdr_deformation_type), intent(out) :: deform

deform for spatial object

type(flu_State) :: conf

lua state

integer, intent(in) :: thandle

spatial object parent handle

private subroutine transformCanoND(canoND, transform)

This routine apply transformation to canonical objects.

Arguments

TypeIntentOptionalAttributesName
type(tem_canonicalND_type), intent(inout) :: canoND(:)

canonical geometry object type

type(sdr_transformation_type), intent(in) :: transform

transformation for spatial object

private subroutine transformCanoND_single(canoND, transform)

This routine apply transformation to canonical objects.

Arguments

TypeIntentOptionalAttributesName
type(tem_canonicalND_type), intent(inout) :: canoND

canonical geometry object type

type(sdr_transformation_type), intent(in) :: transform

transformation for spatial object