10#include "scaleFElib.h"
29 integer,
allocatable :: list(:)
30 real(rp),
allocatable :: val(:)
31 character(len=H_SHORT) :: tag
33 procedure :: init => meshbndinfo_init
34 procedure :: final => meshbndinfo_final
35 procedure,
private :: set_by_id => meshbndinfo_set_by_id
36 procedure,
private :: set_by_name => meshbndinfo_set_by_name
37 generic :: set => set_by_id, set_by_name
67 subroutine meshbndinfo_init(this, list_size, tag)
68 use scale_const,
only: &
69 undef8 => const_undef8
72 integer,
intent(in) :: list_size
73 character(*),
optional,
intent(in) :: tag
78 allocate( this%list(list_size) )
79 allocate( this%val(list_size) )
87 if (
present(tag))
then
94 end subroutine meshbndinfo_init
97 subroutine meshbndinfo_final(this)
102 if (
allocated(this%list))
deallocate(this%list)
103 if (
allocated(this%val))
deallocate(this%val)
106 end subroutine meshbndinfo_final
109 subroutine meshbndinfo_set_by_id(this, is, ie, bnd_type_id, val)
112 integer,
intent(in) :: is
113 integer,
intent(in) :: ie
114 integer,
intent(in) :: bnd_type_id
115 real(rp),
intent(in),
optional :: val
118 this%list(is:ie) = bnd_type_id
119 if (
present(val) )
then
120 this%val(is:ie) = val
124 end subroutine meshbndinfo_set_by_id
127 subroutine meshbndinfo_set_by_name(this, is, ie, bnd_type_name, val)
130 integer,
intent(in) :: is
131 integer,
intent(in) :: ie
132 character(*),
intent(in) :: bnd_type_name
133 real(rp),
intent(in),
optional :: val
135 integer :: bnd_type_id
138 call meshbndinfo_set_by_id(this, is, ie, bnd_type_id, val)
141 end subroutine meshbndinfo_set_by_name
146 character(*),
intent(in) :: bnd_type_name
148 integer :: bnd_type_id
151 select case(trim(bnd_type_name))
165 log_error(
'BndType_NameToID ',*) trim(bnd_type_name) //
' is not supported. Check!'
172end module scale_mesh_bndinfo
module FElib / Mesh / Boundary information
integer, parameter, public bnd_type_slip_id
character(len= *), parameter, public bnd_type_fixval_name
character(len= *), parameter, public bnd_type_slip_name
character(len= *), parameter, public bnd_type_adiabat_name
character(len= *), parameter, public bnd_type_nospec_name
integer, parameter, public bnd_type_fixval_id
integer function, public bndtype_nametoid(bnd_type_name)
integer, parameter, public bnd_type_periodic_id
character(len= *), parameter, public bnd_type_noslip_name
character(len= *), parameter, public bnd_type_periodic_name
integer, parameter, public bnd_type_nospec_id
integer, parameter, public bnd_type_adiabat_id
integer, parameter, public bnd_type_noslip_id