| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=:), | public, | allocatable | :: | nusselt_corr | |||
| type(c_ptr), | public | :: | nuss_cfg | = | C_NULL_PTR | ||
| procedure(itf_4var), | public, | pointer, nopass | :: | nuss | => | nusselt_correlation_not_implemented | |
| procedure(itf_4var), | public, | pointer, nopass | :: | nuss_der_Re | => | null() | |
| procedure(itf_4var), | public, | pointer, nopass | :: | nuss_der_Pra | => | null() | |
| procedure(itf_4var), | public, | pointer, nopass | :: | nuss_der_Tother | => | null() | |
| procedure(itf_4var), | public, | pointer, nopass | :: | nuss_der_T | => | null() |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(nusselt_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re | |||
| real(kind=dp), | intent(in) | :: | Pra | |||
| real(kind=dp), | intent(in), | optional | :: | Tother | ||
| real(kind=dp), | intent(in), | optional | :: | T |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(nusselt_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re | |||
| real(kind=dp), | intent(in) | :: | Pra | |||
| real(kind=dp), | intent(in), | optional | :: | Tother | ||
| real(kind=dp), | intent(in), | optional | :: | T |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(nusselt_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re | |||
| real(kind=dp), | intent(in) | :: | Pra | |||
| real(kind=dp), | intent(in), | optional | :: | Tother | ||
| real(kind=dp), | intent(in), | optional | :: | T |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(nusselt_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re | |||
| real(kind=dp), | intent(in) | :: | Pra | |||
| real(kind=dp), | intent(in), | optional | :: | Tother | ||
| real(kind=dp), | intent(in), | optional | :: | T |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(nusselt_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re | |||
| real(kind=dp), | intent(in) | :: | Pra | |||
| real(kind=dp), | intent(in), | optional | :: | Tother | ||
| real(kind=dp), | intent(in), | optional | :: | T |
type nusselt_t character(:), allocatable :: nusselt_corr type(c_ptr) :: nuss_cfg = C_NULL_PTR procedure(itf_4var), pointer, nopass :: nuss => nusselt_correlation_not_implemented procedure(itf_4var), pointer, nopass :: nuss_der_Re => null() procedure(itf_4var), pointer, nopass :: nuss_der_Pra => null() procedure(itf_4var), pointer, nopass :: nuss_der_Tother => null() procedure(itf_4var), pointer, nopass :: nuss_der_T => null() contains procedure :: nusselt => nusselt_correlation procedure :: nusselt_der_Re => nusselt_correlation_der_Re procedure :: nusselt_der_Pra => nusselt_correlation_der_Pra procedure :: nusselt_der_Tother => nusselt_correlation_der_Tother procedure :: nusselt_der_T => nusselt_correlation_der_T end type nusselt_t