| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| type(holder_bcs), | public, | allocatable | :: | bc(:) | |||
| integer(kind=int32), | public | :: | num_boundaries |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_bc), | intent(inout) | :: | self | |||
| character(len=*), | intent(in) | :: | boundary_target | |||
| real(kind=real64), | intent(in) | :: | current_time | |||
| type(type_crs), | intent(inout), | optional | :: | A | ||
| real(kind=real64), | intent(inout) | :: | b(:) | |||
| type(type_domain), | intent(inout) | :: | domain | |||
| integer(kind=int32), | intent(in), | optional | :: | mode |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_bc), | intent(inout) | :: | self | |||
| type(type_input), | intent(in) | :: | input | |||
| type(type_domain), | intent(inout) | :: | domain |
type :: type_bc integer(int32) :: num_boundaries type(holder_bcs), allocatable :: bc(:) contains procedure :: initialize => initialize_type_bc procedure :: apply_crs => apply_type_bc_crs ! generic :: apply => apply_crs end type type_bc