MCPcopy Create free account
hub / github.com/CoolProp/CoolProp / call

Method call

src/HumidAirProp.cpp:407–415  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

405 };
406
407 double call(double W) override {
408 input_vals[1] = W;
409 double T = _HUGE, psi_w = _HUGE;
410 _HAPropsSI_inputs(p, input_keys, input_vals, T, psi_w);
411 if (CoolProp::get_debug_level() > 0) {
412 std::cout << format("T: %g K, psi_w %g\n", T, psi_w);
413 }
414 return _HAPropsSI_outputs(OutputKey, p, T, psi_w) - TargetVal;
415 }
416 };
417
418 BrentSolverResids BSR = BrentSolverResids(OutputKey, p, In1Name, Input1, TargetVal);

Callers

nothing calls this directly

Calls 7

_HAPropsSI_inputsFunction · 0.85
_HAPropsSI_outputsFunction · 0.85
MoleFractionWaterFunction · 0.85
psub_IceFunction · 0.85
f_factorFunction · 0.85
get_debug_levelFunction · 0.70
formatFunction · 0.70

Tested by

no test coverage detected