nurbs_surface Derived Type

type, public :: nurbs_surface


Components

Type Visibility Attributes Name Initial
real(kind=rk), private, allocatable :: Wc(:)

Weights for control points (1D array: [nc(1)*nc(2)])

real(kind=rk), private, allocatable :: Xc(:,:)

Control points (2D array: [nc(1)*nc(2), dim])

real(kind=rk), private, allocatable :: Xg(:,:)

Geometry points (2D array: [ng(1)*ng(2), dim])

real(kind=rk), private, allocatable :: Xt(:,:)

Evaluation parameter values (2D array: [ng(1)*ng(2), 2])

real(kind=rk), private, allocatable :: Xt1(:)

Evaluation parameter values in the first direction (1D array: [ng(1)])

real(kind=rk), private, allocatable :: Xt2(:)

Evaluation parameter values in the second direction (1D array: [ng(2)])

integer, private :: degree(2)

Degree (order) of the surface

integer, private, allocatable :: elemConn(:,:)

IGA element connectivity

integer, private, allocatable :: elemConn_Xc_vis(:,:)

Connectivity for visualization of control points

integer, private, allocatable :: elemConn_Xg_vis(:,:)

Connectivity for visualization of geometry points

real(kind=rk), private, allocatable :: knot1(:)

Knot vector in the first direction (1D array)

real(kind=rk), private, allocatable :: knot2(:)

Knot vector in the second direction (1D array)

integer, private :: nc(2)

Number of control points in each direction

integer, private :: ng(2)

Number of geometry points in each direction


Type-Bound Procedures

procedure, public :: basis

Compute the basis functions of the NURBS surface

  • private pure subroutine basis(this, res1, res2, Xt1, Xt2, Tgc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), optional :: res1
    integer, intent(in), optional :: res2
    real(kind=rk), intent(in), optional, contiguous :: Xt1(:)
    real(kind=rk), intent(in), optional, contiguous :: Xt2(:)
    real(kind=rk), intent(out), allocatable :: Tgc(:,:)

procedure, public :: cmp_degree

Compute degree of the NURBS surface

  • private pure subroutine cmp_degree(this, dir)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), optional :: dir

procedure, public :: cmp_elem

Generate IGA element connectivity

  • private pure function cmp_elem(this) result(elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, allocatable, (:,:)

procedure, public :: cmp_elem_Xc_vis

Generate connectivity for control points

  • private pure function cmp_elem_Xc_vis(this, p) result(elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in), optional, contiguous :: p(:)

    Return Value integer, allocatable, (:,:)

procedure, public :: cmp_elem_Xg_vis

Generate connectivity for geometry points

  • private pure function cmp_elem_Xg_vis(this, p) result(elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in), optional, contiguous :: p(:)

    Return Value integer, allocatable, (:,:)

procedure, public :: cmp_nc

Compute number of required control points

  • private pure subroutine cmp_nc(this, dir)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), optional :: dir

procedure, public :: create

Generate geometry points

  • private pure subroutine create(this, res1, res2, Xt1, Xt2, Xt)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), optional :: res1
    integer, intent(in), optional :: res2
    real(kind=rk), intent(in), optional, contiguous :: Xt1(:)
    real(kind=rk), intent(in), optional, contiguous :: Xt2(:)
    real(kind=rk), intent(in), optional, contiguous :: Xt(:,:)

procedure, public :: derivative

Compute the derivative of the NURBS surface

  • private pure subroutine derivative(this, res1, res2, Xt1, Xt2, dTgc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), optional :: res1
    integer, intent(in), optional :: res2
    real(kind=rk), intent(in), optional, contiguous :: Xt1(:)
    real(kind=rk), intent(in), optional, contiguous :: Xt2(:)
    real(kind=rk), intent(out), allocatable :: dTgc(:,:)

procedure, public :: elevate_degree

Elevate degree

  • private pure subroutine elevate_degree(this, dir, t)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in) :: dir
    integer, intent(in) :: t

procedure, public :: export_Xc

Export control points to VTK file

  • private impure subroutine export_Xc(this, filename)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    character(len=*), intent(in) :: filename

procedure, public :: export_Xg

Export geometry points to VTK file

  • private impure subroutine export_Xg(this, filename)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    character(len=*), intent(in) :: filename

procedure, public :: finalize

Finalize the NURBS surface object

  • private pure subroutine finalize(this)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

generic, public :: get_Wc => get_Wc_all, get_Wci

Get weights

  • private pure function get_Wc_all(this) result(Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value real(kind=rk), allocatable, (:)

  • private pure function get_Wci(this, n) result(Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n

    Return Value real(kind=rk)

generic, public :: get_Xc => get_Xc_all, get_Xci, get_Xcid

Get control points

  • private pure function get_Xc_all(this) result(Xc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value real(kind=rk), allocatable, (:,:)

  • private pure function get_Xci(this, n) result(Xc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n

    Return Value real(kind=rk), allocatable, (:)

  • private pure function get_Xcid(this, n, dir) result(Xc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n
    integer, intent(in) :: dir

    Return Value real(kind=rk)

generic, public :: get_Xg => get_Xg_all, get_Xgi, get_Xgid

Get geometry points

  • private pure function get_Xg_all(this) result(Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value real(kind=rk), allocatable, (:,:)

  • private pure function get_Xgi(this, n) result(Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n

    Return Value real(kind=rk), allocatable, (:)

  • private pure function get_Xgid(this, n, dir) result(Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n
    integer, intent(in) :: dir

    Return Value real(kind=rk)

procedure, public :: get_Xt

Get parameter values

  • private pure function get_Xt(this, dir) result(Xt)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value real(kind=rk), allocatable, (:)

procedure, public :: get_continuity

Compute and return the continuity of the NURBS surface

  • private pure function get_continuity(this, dir) result(c)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value integer, allocatable, (:)

generic, public :: get_degree => get_degree_all, get_degree_dir

Get degree of the NURBS surface

  • private pure function get_degree_all(this) result(degree)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, (2)

  • private pure function get_degree_dir(this, dir) result(degree)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value integer

procedure, public :: get_elem

Get IGA element connectivity

  • private pure function get_elem(this) result(elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, allocatable, (:,:)

procedure, public :: get_elem_Xc_vis

Get connectivity for control points

  • private pure function get_elem_Xc_vis(this) result(elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, allocatable, (:,:)

procedure, public :: get_elem_Xg_vis

Get connectivity for geometry points

  • private pure function get_elem_Xg_vis(this) result(elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, allocatable, (:,:)

generic, public :: get_knot => get_knoti, get_knot_all

Get knot vector

  • private pure function get_knoti(this, dir, i) result(knot)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir
    integer, intent(in) :: i

    Return Value real(kind=rk)

  • private pure function get_knot_all(this, dir) result(knot)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value real(kind=rk), allocatable, (:)

procedure, public :: get_multiplicity

Compute and return the multiplicity of the knot vector

  • private pure function get_multiplicity(this, dir) result(m)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value integer, allocatable, (:)

procedure, public :: get_nc

Get number of control points

  • private pure function get_nc(this, dir) result(nc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value integer

procedure, public :: get_ng

Get number of geometry points

  • private pure function get_ng(this) result(ng)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, (2)

procedure, public :: insert_knots

Insert knots into the knot vector

  • private pure subroutine insert_knots(this, dir, Xth, r)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in) :: dir
    real(kind=rk), intent(in), contiguous :: Xth(:)
    integer, intent(in), contiguous :: r(:)

procedure, public :: is_rational

Check if the NURBS surface is rational

  • private pure function is_rational(this) result(r)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value logical

procedure, public :: modify_Wc

Modify weights

  • private pure subroutine modify_Wc(this, W, num)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: W
    integer, intent(in) :: num

procedure, public :: modify_Xc

Modify control points

  • private pure subroutine modify_Xc(this, X, num, dir)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: X
    integer, intent(in) :: num
    integer, intent(in) :: dir

procedure, public :: nearest_point

Find the nearest point on the NURBS surface

  • private pure subroutine nearest_point(this, point_Xg, nearest_Xg, nearest_Xt, id)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    real(kind=rk), intent(in) :: point_Xg(:)
    real(kind=rk), intent(out), optional, allocatable :: nearest_Xg(:)
    real(kind=rk), intent(out), optional, allocatable :: nearest_Xt(:)
    integer, intent(out), optional :: id

procedure, public :: remove_knots

Remove knots from the knot vector

  • private pure subroutine remove_knots(this, dir, Xth, r)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in) :: dir
    real(kind=rk), intent(in), contiguous :: Xth(:)
    integer, intent(in), contiguous :: r(:)

procedure, public :: rotate_Xc

Rotate control points

  • private pure subroutine rotate_Xc(this, alpha, beta, theta)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: alpha
    real(kind=rk), intent(in) :: beta
    real(kind=rk), intent(in) :: theta

procedure, public :: rotate_Xg

Rotate geometry points

  • private pure subroutine rotate_Xg(this, alpha, beta, theta)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: alpha
    real(kind=rk), intent(in) :: beta
    real(kind=rk), intent(in) :: theta

generic, public :: set => set1, set2, set3

Set NURBS surface

  • private pure subroutine set1(this, knot1, knot2, Xc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Set knot vectors, control points and weights for the NURBS surface object.

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: knot1(:)
    real(kind=rk), intent(in), contiguous :: knot2(:)
    real(kind=rk), intent(in), contiguous :: Xc(:,:)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)
  • private pure subroutine set2(this, Xth_dir1, Xth_dir2, degree, continuity1, continuity2, Xc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Set NURBS surface using nodes of parameter space, degree, continuity, control points and weights

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: Xth_dir1(:)
    real(kind=rk), intent(in), contiguous :: Xth_dir2(:)
    integer, intent(in), contiguous :: degree(:)
    integer, intent(in), contiguous :: continuity1(:)
    integer, intent(in), contiguous :: continuity2(:)
    real(kind=rk), intent(in), contiguous :: Xc(:,:)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)
  • private pure subroutine set3(this, nc, Xc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Set Bezier or Rational Bezier surface using control points and weights.

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), contiguous :: nc(:)
    real(kind=rk), intent(in), contiguous :: Xc(:,:)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)

procedure, public :: set1

Set knot vectors, control points and weights for the NURBS surface object

  • private pure subroutine set1(this, knot1, knot2, Xc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Set knot vectors, control points and weights for the NURBS surface object.

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: knot1(:)
    real(kind=rk), intent(in), contiguous :: knot2(:)
    real(kind=rk), intent(in), contiguous :: Xc(:,:)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)

procedure, public :: set2

Set NURBS surface using nodes of parameter space, degree, continuity, control points and weights

  • private pure subroutine set2(this, Xth_dir1, Xth_dir2, degree, continuity1, continuity2, Xc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Set NURBS surface using nodes of parameter space, degree, continuity, control points and weights

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: Xth_dir1(:)
    real(kind=rk), intent(in), contiguous :: Xth_dir2(:)
    integer, intent(in), contiguous :: degree(:)
    integer, intent(in), contiguous :: continuity1(:)
    integer, intent(in), contiguous :: continuity2(:)
    real(kind=rk), intent(in), contiguous :: Xc(:,:)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)

procedure, public :: set3

Set Bezier or Rational Bezier surface using control points and weights

  • private pure subroutine set3(this, nc, Xc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Set Bezier or Rational Bezier surface using control points and weights.

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), contiguous :: nc(:)
    real(kind=rk), intent(in), contiguous :: Xc(:,:)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)

procedure, public :: set_C

Set a C-shape

  • private pure subroutine set_C(this, center, radius1, radius2)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: center(:)
    real(kind=rk), intent(in) :: radius1
    real(kind=rk), intent(in) :: radius2

procedure, public :: set_elem

Set IGA element connectivity

  • private pure subroutine set_elem(this, elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), contiguous :: elemConn(:,:)

procedure, public :: set_elem_Xc_vis

Set connectivity for control points

  • private pure subroutine set_elem_Xc_vis(this, elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), contiguous :: elemConn(:,:)

procedure, public :: set_elem_Xg_vis

Set connectivity for geometry points

  • private pure subroutine set_elem_Xg_vis(this, elemConn)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    integer, intent(in), contiguous :: elemConn(:,:)

procedure, public :: set_half_ring

Set a half ring

  • private pure subroutine set_half_ring(this, center, radius1, radius2)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: center(:)
    real(kind=rk), intent(in) :: radius1
    real(kind=rk), intent(in) :: radius2

procedure, public :: set_ring

Set a ring

  • private pure subroutine set_ring(this, center, radius1, radius2)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in), contiguous :: center(:)
    real(kind=rk), intent(in) :: radius1
    real(kind=rk), intent(in) :: radius2

procedure, public :: set_tetragon

Set a tetragon

  • private pure subroutine set_tetragon(this, L, nc, Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: L(2)
    integer, intent(in) :: nc(2)
    real(kind=rk), intent(in), optional, contiguous :: Wc(:)

procedure, public :: show

Show the NURBS object using PyVista

  • private impure subroutine show(this, vtkfile_Xc, vtkfile_Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    character(len=*), intent(in) :: vtkfile_Xc
    character(len=*), intent(in) :: vtkfile_Xg

procedure, public :: translate_Xc

Translate control points

  • private pure subroutine translate_Xc(this, vec)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: vec(:)

procedure, public :: translate_Xg

Translate geometry points

  • private pure subroutine translate_Xg(this, vec)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(inout) :: this
    real(kind=rk), intent(in) :: vec(:)

procedure, private :: get_Wc_all

Get all weights

  • private pure function get_Wc_all(this) result(Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value real(kind=rk), allocatable, (:)

procedure, private :: get_Wci

Get i-th weight

  • private pure function get_Wci(this, n) result(Wc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n

    Return Value real(kind=rk)

procedure, private :: get_Xc_all

Get all control points

  • private pure function get_Xc_all(this) result(Xc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value real(kind=rk), allocatable, (:,:)

procedure, private :: get_Xci

Get i-th control point

  • private pure function get_Xci(this, n) result(Xc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n

    Return Value real(kind=rk), allocatable, (:)

procedure, private :: get_Xcid

Get i-th control point in a specific direction

  • private pure function get_Xcid(this, n, dir) result(Xc)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n
    integer, intent(in) :: dir

    Return Value real(kind=rk)

procedure, private :: get_Xg_all

Get all geometry points

  • private pure function get_Xg_all(this) result(Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value real(kind=rk), allocatable, (:,:)

procedure, private :: get_Xgi

Get i-th geometry point

  • private pure function get_Xgi(this, n) result(Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n

    Return Value real(kind=rk), allocatable, (:)

procedure, private :: get_Xgid

Get i-th geometry point in a specific direction

  • private pure function get_Xgid(this, n, dir) result(Xg)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: n
    integer, intent(in) :: dir

    Return Value real(kind=rk)

procedure, private :: get_degree_all

Get degree of the NURBS surface in both directions

  • private pure function get_degree_all(this) result(degree)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

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

    Return Value integer, (2)

procedure, private :: get_degree_dir

Get degree of the NURBS surface in a specific direction

  • private pure function get_degree_dir(this, dir) result(degree)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value integer

procedure, private :: get_knot_all

Get all knot vectors

  • private pure function get_knot_all(this, dir) result(knot)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir

    Return Value real(kind=rk), allocatable, (:)

procedure, private :: get_knoti

Get i-th knot value

  • private pure function get_knoti(this, dir, i) result(knot)

    Author
    Seyed Ali Ghasemi
    License
    BSD 3-Clause

    Arguments

    Type IntentOptional Attributes Name
    class(nurbs_surface), intent(in) :: this
    integer, intent(in) :: dir
    integer, intent(in) :: i

    Return Value real(kind=rk)