Abstract polynomials object.
Abstract polynomials object constructor.
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer(kind=I_P), | public | :: | S | = | 0 | Stencils dimension. |
Abstract polynomials object.
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| real(kind=R_P), | public, | allocatable | :: | poly(:,:) | Polynomial reconstructions [1:2,0:S-1]. |
| procedure, public, pass(self) :: compute | Compute polynomials. |
| procedure, public, nopass :: description | Return polynomials string-description. |
| procedure, public, pass(self) :: create | Createte polynomials. |
| procedure, public, pass(self) :: destroy | Destroy polynomials. |
Return polynomials string-description.
String-description.
Compute polynomials.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(polynomials), | intent(inout) | :: | self | Polynomials. |
||
| integer(kind=I_P), | intent(in) | :: | S | Number of stencils used. |
||
| real(kind=R_P), | intent(in) | :: | stencil(1:,1-S:) | Stencil used for the interpolation, [1:2, 1-S:-1+S]. |
||
| integer(kind=I_P), | intent(in) | :: | f1 | Faces to be computed. |
||
| integer(kind=I_P), | intent(in) | :: | f2 | Faces to be computed. |
||
| integer(kind=I_P), | intent(in) | :: | ff | Faces to be computed. |
Create polynomials.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(polynomials), | intent(inout) | :: | self | Polynomials. |
||
| class(base_object_constructor), | intent(in) | :: | constructor | Polynomials constructor. |
Destroy polynomials.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(polynomials), | intent(inout) | :: | self | Polynomials. |