| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=:), | public, | allocatable | :: | friction_corr | |||
| type(c_ptr), | public | :: | frict_cfg | = | C_NULL_PTR | ||
| procedure(itf_1var), | public, | pointer, nopass | :: | frict | => | friction_correlation_not_implemented | |
| procedure(itf_1var), | public, | pointer, nopass | :: | frict_der | => | null() |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(friction_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(friction_t), | intent(inout) | :: | me | |||
| real(kind=dp), | intent(in) | :: | Re |
type friction_t character(:), allocatable :: friction_corr type(c_ptr) :: frict_cfg = C_NULL_PTR procedure(itf_1var), pointer, nopass :: frict => friction_correlation_not_implemented procedure(itf_1var), pointer, nopass :: frict_der => null() contains procedure :: friction => friction_correlation procedure :: friction_der => friction_correlation_der end type friction_t