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

termo.eos.EOS Maven / Gradle / Ivy

Go to download

Thermodynamics properties and equilibria calculations for chemical engineering.

There is a newer version: 3.5
Show newest version
package termo.eos;

/**
 *
 * @author Hugo Redon Rivera
 */
public abstract class EOS {
  
   private String name;
   
   public boolean isCubic(){
       return this instanceof Cubic;
   }
   
   
    /**
     * 
     * @return The name of the equation of state as String
     */
    public String getName(){
        return this.name;
    }
    public void setName(String name){
        this.name = name;
    }
    @Override
    public String toString(){
        return this.name;
    }
    
    /**
     * 
     * @return The representation of the Equation of State as String
     */
    public abstract  String getEquation(); 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy