compute_Xg Interface

private interface compute_Xg

Calls

interface~~compute_xg~~CallsGraph interface~compute_xg compute_Xg proc~compute_xg_bspline_3d compute_Xg_bspline_3d interface~compute_xg->proc~compute_xg_bspline_3d proc~compute_xg_bspline_3d_1point compute_Xg_bspline_3d_1point interface~compute_xg->proc~compute_xg_bspline_3d_1point proc~compute_xg_nurbs_3d compute_Xg_nurbs_3d interface~compute_xg->proc~compute_xg_nurbs_3d proc~compute_xg_nurbs_3d_1point compute_Xg_nurbs_3d_1point interface~compute_xg->proc~compute_xg_nurbs_3d_1point interface~kron kron proc~compute_xg_bspline_3d->interface~kron proc~basis_bspline basis_bspline proc~compute_xg_bspline_3d->proc~basis_bspline proc~compute_xg_bspline_3d_1point->interface~kron proc~compute_xg_bspline_3d_1point->proc~basis_bspline proc~cmp_tgc_3d cmp_Tgc_3d proc~compute_xg_nurbs_3d->proc~cmp_tgc_3d proc~compute_xg_nurbs_3d_1point->interface~kron proc~compute_xg_nurbs_3d_1point->proc~basis_bspline proc~kron3 kron3 interface~kron->proc~kron3 proc~kron_t1_t1 kron_t1_t1 interface~kron->proc~kron_t1_t1 proc~kron_t1_t2 kron_t1_t2 interface~kron->proc~kron_t1_t2 proc~cmp_tgc_3d->interface~kron proc~cmp_tgc_3d->proc~basis_bspline

Called by

interface~~compute_xg~~CalledByGraph interface~compute_xg compute_Xg proc~cmp_xg nurbs_volume%cmp_Xg proc~cmp_xg->interface~compute_xg proc~create nurbs_volume%create proc~create->interface~compute_xg proc~export_xth_in_xg nurbs_volume%export_Xth_in_Xg proc~export_xth_in_xg->interface~compute_xg proc~put_to_nurbs nurbs_volume%put_to_nurbs proc~put_to_nurbs->interface~compute_xg proc~nearest_point2 nurbs_volume%nearest_point2 proc~nearest_point2->proc~cmp_xg proc~nearest_point2->proc~create program~example3_volume example3_volume program~example3_volume->proc~create program~example_bend_pipe example_bend_pipe program~example_bend_pipe->proc~create program~example_bend_pipe->proc~export_xth_in_xg program~example_helix_pipe example_helix_pipe program~example_helix_pipe->proc~create program~example_helix_pipe->proc~export_xth_in_xg program~example_nurbs_volume example_nurbs_volume program~example_nurbs_volume->proc~create program~example_nurbs_volume->proc~export_xth_in_xg program~example_plate_hole_1_3d example_plate_hole_1_3d program~example_plate_hole_1_3d->proc~create program~example_plate_hole_1_3d->proc~export_xth_in_xg program~example_plate_hole_2_3d example_plate_hole_2_3d program~example_plate_hole_2_3d->proc~create program~example_plate_hole_2_3d->proc~export_xth_in_xg program~example_plate_hole_4_3d example_plate_hole_4_3d program~example_plate_hole_4_3d->proc~create program~example_plate_hole_4_3d->proc~export_xth_in_xg program~example_put_to_nurbs example_put_to_nurbs program~example_put_to_nurbs->proc~put_to_nurbs program~example_toroidal_pipe example_toroidal_pipe program~example_toroidal_pipe->proc~create program~example_toroidal_pipe->proc~export_xth_in_xg program~example_twist_taper example_twist_taper program~example_twist_taper->proc~create program~example_twist_taper->proc~export_xth_in_xg program~fdm_test_volume fdm_test_volume program~fdm_test_volume->proc~create program~lsq_fit_bspline_3d lsq_fit_bspline_3d program~lsq_fit_bspline_3d->proc~create program~lsq_fit_bspline_3d->proc~export_xth_in_xg program~lsq_fit_nurbs_3d lsq_fit_nurbs_3d program~lsq_fit_nurbs_3d->proc~create program~lsq_fit_nurbs_3d->proc~export_xth_in_xg program~nearest_point_3d nearest_point_3d program~nearest_point_3d->proc~create program~nearest_point_3d->proc~nearest_point2 program~poisson_iga_solver_3d poisson_iga_solver_3d program~poisson_iga_solver_3d->proc~create program~shape_c_3d shape_C_3d program~shape_c_3d->proc~create program~shape_half_ring_3d shape_half_ring_3d program~shape_half_ring_3d->proc~create program~shape_hexahedron shape_hexahedron program~shape_hexahedron->proc~create program~shape_ring_3d shape_ring_3d program~shape_ring_3d->proc~create program~test_nurbs_volume test_nurbs_volume program~test_nurbs_volume->proc~create program~test_nurbs_volume->proc~nearest_point2

Module Procedures

private pure function compute_Xg_nurbs_3d(Xt, knot1, knot2, knot3, degree, nc, ng, Xc, Wc) result(Xg)

Author
Seyed Ali Ghasemi
License
BSD 3-Clause

Arguments

Type IntentOptional Attributes Name
real(kind=rk), intent(in), contiguous :: Xt(:,:)
real(kind=rk), intent(in), contiguous :: knot1(:)
real(kind=rk), intent(in), contiguous :: knot2(:)
real(kind=rk), intent(in), contiguous :: knot3(:)
integer, intent(in) :: degree(3)
integer, intent(in) :: nc(3)
integer, intent(in), optional :: ng(3)
real(kind=rk), intent(in), contiguous :: Xc(:,:)
real(kind=rk), intent(in), contiguous :: Wc(:)

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

private pure function compute_Xg_bspline_3d(Xt, knot1, knot2, knot3, degree, nc, ng, Xc) result(Xg)

Author
Seyed Ali Ghasemi
License
BSD 3-Clause

Arguments

Type IntentOptional Attributes Name
real(kind=rk), intent(in), contiguous :: Xt(:,:)
real(kind=rk), intent(in), contiguous :: knot1(:)
real(kind=rk), intent(in), contiguous :: knot2(:)
real(kind=rk), intent(in), contiguous :: knot3(:)
integer, intent(in) :: degree(3)
integer, intent(in) :: nc(3)
integer, intent(in), optional :: ng(3)
real(kind=rk), intent(in), contiguous :: Xc(:,:)

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

private pure function compute_Xg_nurbs_3d_1point(Xt, knot1, knot2, knot3, degree, nc, Xc, Wc) result(Xg)

Author
Seyed Ali Ghasemi
License
BSD 3-Clause

Arguments

Type IntentOptional Attributes Name
real(kind=rk), intent(in), contiguous :: Xt(:)
real(kind=rk), intent(in), contiguous :: knot1(:)
real(kind=rk), intent(in), contiguous :: knot2(:)
real(kind=rk), intent(in), contiguous :: knot3(:)
integer, intent(in) :: degree(3)
integer, intent(in) :: nc(3)
real(kind=rk), intent(in), contiguous :: Xc(:,:)
real(kind=rk), intent(in), contiguous :: Wc(:)

Return Value real(kind=rk), (size(Xc,2))

private pure function compute_Xg_bspline_3d_1point(Xt, knot1, knot2, knot3, degree, nc, Xc) result(Xg)

Author
Seyed Ali Ghasemi
License
BSD 3-Clause

Arguments

Type IntentOptional Attributes Name
real(kind=rk), intent(in), contiguous :: Xt(:)
real(kind=rk), intent(in), contiguous :: knot1(:)
real(kind=rk), intent(in), contiguous :: knot2(:)
real(kind=rk), intent(in), contiguous :: knot3(:)
integer, intent(in) :: degree(3)
integer, intent(in) :: nc(3)
real(kind=rk), intent(in), contiguous :: Xc(:,:)

Return Value real(kind=rk), (size(Xc,2))