OOPS
qg_interp_mod Module Reference

Functions/Subroutines

subroutine, public qg_interp_trilinear (geom, lon, lat, z, field, val)
 Trilinear interpolation. More...
 
subroutine, public qg_interp_trilinear_ad (geom, lon, lat, z, val, field)
 Interpolation - adjoint. More...
 
subroutine, public qg_interp_bicubic (geom, x, y, gfld2dext, val)
 Bicubic horizontal interpolation. More...
 
subroutine, public qg_interp_bicubic_tl (geom, x, y, gfld2dext_traj, dx, dy, gfld2dext, val)
 Bicubic horizontal interpolation - tangent linear. More...
 
subroutine, public qg_interp_bicubic_ad (geom, x, y, gfld2dext_traj, val, dx, dy, gfld2dext)
 Bicubic horizontal interpolation - adjoint. More...
 
subroutine, public find_x_indices (geom, x, jxm1, jxo, jxp1, jxp2, ax)
 Find x indices. More...
 
subroutine, public find_y_indices (geom, y, jym1, jyo, jyp1, jyp2, ay)
 Find y indices. More...
 
subroutine find_z_indices (geom, z, jzo, jzp1, az)
 Find z indices. More...
 
subroutine cubic (a, m1, o, p1, p2, res)
 Cubic interpolation. More...
 
subroutine cubic_tl (a_traj, m1_traj, o_traj, p1_traj, p2_traj, a, m1, o, p1, p2, res)
 Cubic interpolation - tangent linear. More...
 
subroutine cubic_ad (a_traj, m1_traj, o_traj, p1_traj, p2_traj, res, a, m1, o, p1, p2)
 Cubic interpolation - adjoint. More...
 

Function/Subroutine Documentation

◆ cubic()

subroutine qg_interp_mod::cubic ( real(kind_real), intent(in)  a,
real(kind_real), intent(in)  m1,
real(kind_real), intent(in)  o,
real(kind_real), intent(in)  p1,
real(kind_real), intent(in)  p2,
real(kind_real), intent(out)  res 
)
private

Cubic interpolation.

Parameters
[in]aCoefficient
[in]m1Minus 1 value
[in]oOrigin value
[in]p1Plus 1 value
[in]p2Plus 2 value
[out]resResult

Definition at line 413 of file qg_interp_mod.F90.

Here is the caller graph for this function:

◆ cubic_ad()

subroutine qg_interp_mod::cubic_ad ( real(kind_real), intent(in)  a_traj,
real(kind_real), intent(in)  m1_traj,
real(kind_real), intent(in)  o_traj,
real(kind_real), intent(in)  p1_traj,
real(kind_real), intent(in)  p2_traj,
real(kind_real), intent(in)  res,
real(kind_real), intent(inout)  a,
real(kind_real), intent(inout)  m1,
real(kind_real), intent(inout)  o,
real(kind_real), intent(inout)  p1,
real(kind_real), intent(inout)  p2 
)
private

Cubic interpolation - adjoint.

Parameters
[in]a_trajCoefficient trajectory
[in]m1_trajMinus 1 trajectory
[in]o_trajOrigin value
[in]p1_trajPlus 1 value
[in]p2_trajPlus 2 value
[in]resResult
[in,out]aCoefficient perturbation
[in,out]m1Minus perturbation
[in,out]oOrigin perturbation
[in,out]p1Plus 1 perturbation
[in,out]p2Plus 2 perturbation

Definition at line 466 of file qg_interp_mod.F90.

Here is the caller graph for this function:

◆ cubic_tl()

subroutine qg_interp_mod::cubic_tl ( real(kind_real), intent(in)  a_traj,
real(kind_real), intent(in)  m1_traj,
real(kind_real), intent(in)  o_traj,
real(kind_real), intent(in)  p1_traj,
real(kind_real), intent(in)  p2_traj,
real(kind_real), intent(in)  a,
real(kind_real), intent(in)  m1,
real(kind_real), intent(in)  o,
real(kind_real), intent(in)  p1,
real(kind_real), intent(in)  p2,
real(kind_real), intent(out)  res 
)
private

Cubic interpolation - tangent linear.

Parameters
[in]a_trajCoefficient trajectory
[in]m1_trajMinus 1 trajectory
[in]o_trajOrigin value
[in]p1_trajPlus 1 value
[in]p2_trajPlus 2 value
[in]aCoefficient perturbation
[in]m1Minus perturbation
[in]oOrigin perturbation
[in]p1Plus 1 perturbation
[in]p2Plus 2 perturbation
[out]resResult

Definition at line 431 of file qg_interp_mod.F90.

Here is the caller graph for this function:

◆ find_x_indices()

subroutine, public qg_interp_mod::find_x_indices ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  x,
integer, intent(out)  jxm1,
integer, intent(out)  jxo,
integer, intent(out)  jxp1,
integer, intent(out)  jxp2,
real(kind_real), intent(out)  ax 
)

Find x indices.

Parameters
[in]geomGeometry
[in]xX value
[out]jxm1Minus 1 index
[out]jxoOrigin index
[out]jxp1Plus 1 index
[out]jxp2Plus 2 index
[out]axCoefficient

Definition at line 275 of file qg_interp_mod.F90.

Here is the caller graph for this function:

◆ find_y_indices()

subroutine, public qg_interp_mod::find_y_indices ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  y,
integer, intent(out)  jym1,
integer, intent(out)  jyo,
integer, intent(out)  jyp1,
integer, intent(out)  jyp2,
real(kind_real), intent(out)  ay 
)

Find y indices.

Parameters
[in]geomGeometry
[in]yY value
[out]jym1Minus 1 index
[out]jyoOrigin index
[out]jyp1Plus 1 index
[out]jyp2Plus 2 index
[out]ayCoefficient

Definition at line 329 of file qg_interp_mod.F90.

Here is the caller graph for this function:

◆ find_z_indices()

subroutine qg_interp_mod::find_z_indices ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  z,
integer, intent(out)  jzo,
integer, intent(out)  jzp1,
real(kind_real), intent(out)  az 
)
private

Find z indices.

Parameters
[in]geomGeometry
[in]zZ value
[out]jzoOrigin index
[out]jzp1Plus 1 index
[out]azCoefficient

Definition at line 374 of file qg_interp_mod.F90.

Here is the caller graph for this function:

◆ qg_interp_bicubic()

subroutine, public qg_interp_mod::qg_interp_bicubic ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  x,
real(kind_real), intent(in)  y,
real(kind_real), dimension(geom%nx,-1:geom%ny+2), intent(in)  gfld2dext,
real(kind_real), intent(out)  val 
)

Bicubic horizontal interpolation.

Parameters
[in]geomGeometry
[in]xX value
[in]yY value
[in]gfld2dextExtended 2D field
[out]valValue

Definition at line 143 of file qg_interp_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_interp_bicubic_ad()

subroutine, public qg_interp_mod::qg_interp_bicubic_ad ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  x,
real(kind_real), intent(in)  y,
real(kind_real), dimension(geom%nx,-1:geom%ny+2), intent(in)  gfld2dext_traj,
real(kind_real), intent(in)  val,
real(kind_real), intent(inout)  dx,
real(kind_real), intent(inout)  dy,
real(kind_real), dimension(geom%nx,-1:geom%ny+2), intent(inout)  gfld2dext 
)

Bicubic horizontal interpolation - adjoint.

Parameters
[in]geomGeometry
[in]xX value
[in]yY value
[in]gfld2dext_trajExtended 2D trajectory
[in]valValue
[in,out]dxX perturbation
[in,out]dyY perturbation
[in,out]gfld2dextExtended 2D perturbation

Definition at line 220 of file qg_interp_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_interp_bicubic_tl()

subroutine, public qg_interp_mod::qg_interp_bicubic_tl ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  x,
real(kind_real), intent(in)  y,
real(kind_real), dimension(geom%nx,-1:geom%ny+2), intent(in)  gfld2dext_traj,
real(kind_real), intent(in)  dx,
real(kind_real), intent(in)  dy,
real(kind_real), dimension(geom%nx,-1:geom%ny+2), intent(in)  gfld2dext,
real(kind_real), intent(out)  val 
)

Bicubic horizontal interpolation - tangent linear.

Parameters
[in]geomGeometry
[in]xX value
[in]yY value
[in]gfld2dext_trajExtended 2D trajectory
[in]dxX perturbation
[in]dyY perturbation
[in]gfld2dextExtended 2D perturbation
[out]valValue

Definition at line 173 of file qg_interp_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_interp_trilinear()

subroutine, public qg_interp_mod::qg_interp_trilinear ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  lon,
real(kind_real), intent(in)  lat,
real(kind_real), intent(in)  z,
real(kind_real), dimension(geom%nx,geom%ny,geom%nz), intent(in)  field,
real(kind_real), intent(out)  val 
)

Trilinear interpolation.

Parameters
[in]geomGeometry
[in]lonLongitude
[in]latLatitude
[in]zAltitude
[out]valValue

Definition at line 28 of file qg_interp_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ qg_interp_trilinear_ad()

subroutine, public qg_interp_mod::qg_interp_trilinear_ad ( type(qg_geom), intent(in)  geom,
real(kind_real), intent(in)  lon,
real(kind_real), intent(in)  lat,
real(kind_real), intent(in)  z,
real(kind_real), intent(in)  val,
real(kind_real), dimension(geom%nx,geom%ny,geom%nz), intent(inout)  field 
)

Interpolation - adjoint.

Parameters
[in]geomGeometry
[in]lonLongitude
[in]latLatitude
[in]zAltitude
[in]valValue

Definition at line 82 of file qg_interp_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function: