Asynchronous multi-implicit sweeper type (old style)
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | npieces | ||||
logical, | public | :: | use_LUq | ||||
real(kind=pfdp), | public, | allocatable | :: | SdiffE(:,:) | |||
real(kind=pfdp), | public, | allocatable | :: | SdiffI(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_sweeper_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | Lev | |||
real(kind=pfdp), | intent(in) | :: | t0 | Time at beginning of step; if flags == 2, time at end of step |
||
integer, | intent(in), | optional | :: | flags | ||
integer, | intent(in), | optional | :: | step |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_encap_t), | intent(in) | :: | y | |||
real(kind=pfdp), | intent(in) | :: | t | |||
integer, | intent(in) | :: | level | |||
class(pf_encap_t), | intent(inout) | :: | f1 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_encap_t), | intent(in) | :: | y | |||
real(kind=pfdp), | intent(in) | :: | t | |||
integer, | intent(in) | :: | level | |||
class(pf_encap_t), | intent(inout) | :: | f2 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_encap_t), | intent(inout) | :: | y | |||
real(kind=pfdp), | intent(in) | :: | t | |||
real(kind=pfdp), | intent(in) | :: | dt | |||
class(pf_encap_t), | intent(in) | :: | rhs | |||
integer, | intent(in) | :: | level | |||
class(pf_encap_t), | intent(inout) | :: | f2 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_encap_t), | intent(in) | :: | y | |||
real(kind=pfdp), | intent(in) | :: | t | |||
integer, | intent(in) | :: | level | |||
class(pf_encap_t), | intent(inout) | :: | f3 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_encap_t), | intent(inout) | :: | y | |||
real(kind=pfdp), | intent(in) | :: | t | |||
real(kind=pfdp), | intent(in) | :: | dt | |||
class(pf_encap_t), | intent(in) | :: | rhs | |||
integer, | intent(in) | :: | level | |||
class(pf_encap_t), | intent(inout) | :: | f3 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
type(pf_pfasst_t), | intent(inout) | :: | pf | |||
class(pf_level_t), | intent(inout) | :: | lev | |||
real(kind=pfdp), | intent(in) | :: | t0 | |||
real(kind=pfdp), | intent(in) | :: | dt |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | lev |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | lev | |||
real(kind=pfdp), | intent(in) | :: | t | |||
integer, | intent(in) | :: | m |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(in) | :: | lev | |||
class(pf_encap_t), | intent(in) | :: | qSDC(:) | |||
class(pf_encap_t), | intent(in) | :: | fSDC(:,:) | |||
real(kind=pfdp), | intent(in) | :: | dt | |||
class(pf_encap_t), | intent(inout) | :: | fintSDC(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | lev | |||
real(kind=pfdp), | intent(in) | :: | dt |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | lev | |||
real(kind=pfdp), | intent(in) | :: | t(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | lev |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pf_amisdc_t), | intent(inout) | :: | this | |||
class(pf_level_t), | intent(inout) | :: | lev |
type, extends(pf_sweeper_t), abstract :: pf_amisdc_t
real(pfdp), allocatable :: SdiffE(:,:)
real(pfdp), allocatable :: SdiffI(:,:)
contains
procedure(pf_f1eval_p), deferred :: f1eval
procedure(pf_f2eval_p), deferred :: f2eval
procedure(pf_f2comp_p), deferred :: f2comp
procedure(pf_f3eval_p), deferred :: f3eval
procedure(pf_f3comp_p), deferred :: f3comp
procedure :: sweep => amisdc_sweep
procedure :: initialize => amisdc_initialize
procedure :: evaluate => amisdc_evaluate
procedure :: integrate => amisdc_integrate
procedure :: residual => amisdc_residual
procedure :: evaluate_all => amisdc_evaluate_all
procedure :: destroy => amisdc_destroy
procedure :: amisdc_destroy
end type pf_amisdc_t