All Downloads are FREE. Search and download functionalities are using the official Maven repository.

termo.equations.Eqn10VaporPressure Maven / Gradle / Ivy

Go to download

Thermodynamics properties and equilibria calculations for chemical engineering.

There is a newer version: 3.5
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package termo.equations;

import java.io.Serializable;
import javax.persistence.Entity;
import termo.component.Compound;

/**
 *
 * @author Hugo
 */
@Entity
public class Eqn10VaporPressure extends EqnVaporPressure implements Serializable{
  
    
   
    @Override
    public double vaporPressure(double temperature){
        return Math.exp(A - B/(C + temperature));
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy