The part that does not depend on the coefficients
| 33 | } |
| 34 | /// The part that does not depend on the coefficients |
| 35 | double PressureDataPoint::a_0() { |
| 36 | double rhoRT = this->rho * EOS->R * this->T; |
| 37 | return this->p / rhoRT - 1; |
| 38 | } |
| 39 | /// The part that multiplies the coefficients |
| 40 | double PressureDataPoint::a_i(int i) { |
| 41 | return delta * EOS->dA_dDelta(log_tau, log_delta, delta, i); |
no test coverage detected