termo.eos.EOS 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.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