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

termo.eos.alpha.AlphaParameter 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.alpha;

public class AlphaParameter {
	public AlphaParameter() {
	}
	
	public AlphaParameter(double value, String name) {
		this.value = value;
		this.name = name;
	}

	private double value;
	private String name;
	
	public double getValue() {
		return value;
	}
	public void setValue(double value) {
		this.value = value;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy