Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=:), | public, | allocatable | :: | boundary_name | |||
integer(kind=int32), | public | :: | material_id | ||||
integer(kind=int32), | private | :: | num_target_edges | ||||
integer(kind=int32), | private, | allocatable | :: | target_edges(:,:) | |||
real(kind=real64), | private, | allocatable | :: | time_points(:) | |||
real(kind=real64), | private, | allocatable | :: | values(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_bc_thermal), | intent(in) | :: | self | |||
real(kind=real64), | intent(in) | :: | current_time | |||
type(type_crs), | intent(inout), | optional | :: | A | ||
real(kind=real64), | intent(inout) | :: | b(:) | |||
type(type_domain), | intent(in) | :: | domain | |||
integer(kind=int32), | intent(in), | optional | :: | mode |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_bc_thermal), | intent(in) | :: | self | |||
real(kind=real64), | intent(in) | :: | current_time | |||
real(kind=real64), | intent(inout), | optional | :: | A(:,:) | ||
real(kind=real64), | intent(inout) | :: | b(:) | |||
type(type_domain), | intent(in) | :: | domain | |||
integer(kind=int32), | intent(in), | optional | :: | mode |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_bc_thermal), | intent(inout) | :: | self | |||
type(type_input), | intent(in) | :: | input | |||
type(type_domain), | intent(in) | :: | domain | |||
integer(kind=int32), | intent(in) | :: | id | |||
integer(kind=int32), | intent(in) | :: | i_material | |||
real(kind=real64), | intent(in) | :: | time_conv |
type, abstract :: abst_bc_thermal integer(int32) :: material_id character(:), allocatable :: boundary_name real(real64), allocatable, private :: time_points(:) ! 時間ステップ real(real64), allocatable, private :: values(:) ! 対応する値 integer(int32), private :: num_target_edges ! 対象エッジの数 integer(int32), allocatable, private :: target_edges(:, :) ! 対象エッジの接続情報 contains procedure(abst_initialize_bc), pass(self), deferred :: initialize !& procedure(abst_apply_bc_dence), pass(self), deferred :: apply_dense !& procedure(abst_apply_bc_sparse_crs), pass(self), deferred :: apply_crs !& end type abst_bc_thermal