InterpolCoeffs1D Derived Type

type, public :: InterpolCoeffs1D

Linear Interpolation Coefficients and indices


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
integer, public :: i =0

Index of position right before xout

real(kind=Float64), public :: b1 =0.d0

Coefficient for y(i) term

real(kind=Float64), public :: b2 =0.d0

Coefficient for y(i+1) term


Source Code

type InterpolCoeffs1D
    !+ Linear Interpolation Coefficients and indices
    integer :: i = 0
        !+ Index of position right before `xout`
    real(Float64) :: b1 = 0.d0
        !+ Coefficient for y(i) term
    real(Float64) :: b2 = 0.d0
        !+ Coefficient for y(i+1) term
end type InterpolCoeffs1D