computeB method

double computeB(
  1. double h
)

Computes the right hand side of the SPOOK equation

Implementation

double computeB(double h) {
  final double gw = computeGW();
  final double gq = computeGq();
  final double gimf = computeGiMf();
  return -gq * a - gw * b - gimf * h;
}