CoolProp  6.6.0
An open-source fluid property and humid air property database
Namespaces | Functions
Solvers.cpp File Reference
#include <vector>
#include "Solvers.h"
#include "math.h"
#include "MatrixMath.h"
#include <iostream>
#include "CoolPropTools.h"
#include <Eigen/Dense>

Go to the source code of this file.

Namespaces

 CoolProp
 Code for all the binary pairs in the mixture.
 

Functions

std::vector< double > CoolProp::NDNewtonRaphson_Jacobian (FuncWrapperND *f, const std::vector< double > &x, double tol, int maxiter, double w)
 
double CoolProp::Newton (FuncWrapper1DWithDeriv *f, double x0, double ftol, int maxiter)
 
double CoolProp::Halley (FuncWrapper1DWithTwoDerivs *f, double x0, double ftol, int maxiter, double xtol_rel)
 
double CoolProp::Householder4 (FuncWrapper1DWithThreeDerivs *f, double x0, double ftol, int maxiter, double xtol_rel)
 
double CoolProp::Secant (FuncWrapper1D *f, double x0, double dx, double tol, int maxiter)
 
double CoolProp::BoundedSecant (FuncWrapper1D *f, double x0, double xmin, double xmax, double dx, double tol, int maxiter)
 
double CoolProp::ExtrapolatingSecant (FuncWrapper1D *f, double x0, double dx, double tol, int maxiter)
 
double CoolProp::Brent (FuncWrapper1D *f, double a, double b, double macheps, double t, int maxiter)