termo.cp.CpEquation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materia Show documentation
Show all versions of materia Show documentation
Thermodynamics properties and
equilibria calculations for
chemical engineering.
package termo.cp;
/**
*
* @author Hugo Redon Rivera
*/
public interface CpEquation {
public double cp(double temperature);
public double Enthalpy(double temperature,double referenceTemperature, double enthalpyReference);
public double idealGasEntropy(double temperature, double referenceTemeprature,double pressure, double referencePressure, double entropyReference);
public String getMathEquation();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy