Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Process simulation objects shall have constructor that sets name #336

Merged
merged 18 commits into from
Feb 28, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public static void main(String args[]) {

Stream stream_1 = new Stream("Stream1", testSystem);

AdiabaticPipe pipe = new AdiabaticPipe(stream_1);
AdiabaticPipe pipe = new AdiabaticPipe("pipe", stream_1);
pipe.setDiameter(1.0);
pipe.setLength(1000.0);
pipe.getMechanicalDesign().setMaxOperationPressure(100.0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,28 +48,7 @@ public SimpleAbsorber() {
*/
@Deprecated
public SimpleAbsorber(Stream inStream1) {
outStream = new Stream[2];
inStream = new Stream[2];
this.inStream[0] = inStream1;
this.inStream[1] = inStream1;
outStream[0] = inStream1.clone();
outStream[1] = inStream1.clone();

SystemInterface systemOut1 = inStream1.getThermoSystem().clone();
outStream[0].setThermoSystem(systemOut1);

double molCO2 =
inStream1.getThermoSystem().getPhase(0).getComponent("CO2").getNumberOfmoles();
System.out.println("mol CO2 " + molCO2);
SystemInterface systemOut0 = inStream1.getThermoSystem().clone();
systemOut0.init(0);
systemOut0.addComponent("MDEA", molCO2 * absorptionEfficiency);
systemOut0.addComponent("water", molCO2 * absorptionEfficiency * 10.0);
systemOut0.chemicalReactionInit();
systemOut0.createDatabase(true);
systemOut0.setMixingRule(4);
outStream[1].setThermoSystem(systemOut0);
outStream[1].run();
this("SimpleAbsorber", inStream1);
}

/**
Expand All @@ -88,7 +67,6 @@ public SimpleAbsorber(String name) {
* @param name
* @param inStream1 a {@link neqsim.processSimulation.processEquipment.stream.Stream} object
*/
@Deprecated
public SimpleAbsorber(String name, Stream inStream1) {
this(name);
outStream = new Stream[2];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
import java.text.DecimalFormat;
import java.text.FieldPosition;
import java.util.ArrayList;

import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;

import neqsim.processSimulation.processEquipment.ProcessEquipmentInterface;
import neqsim.processSimulation.processEquipment.stream.Stream;
import neqsim.processSimulation.processEquipment.stream.StreamInterface;
Expand Down Expand Up @@ -45,6 +43,7 @@ public class SimpleTEGAbsorber extends SimpleAbsorber {
* Constructor for SimpleTEGAbsorber.
* </p>
*/
@Deprecated
public SimpleTEGAbsorber() {
}

Expand All @@ -56,8 +55,7 @@ public SimpleTEGAbsorber() {
* @param name a {@link java.lang.String} object
*/
public SimpleTEGAbsorber(String name) {
super();
setName(name);
super(name);
}

/** {@inheritDoc} */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
import java.text.DecimalFormat;
import java.text.FieldPosition;
import java.util.ArrayList;

import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;

import neqsim.processSimulation.processEquipment.stream.Stream;
import neqsim.processSimulation.processEquipment.stream.StreamInterface;
import neqsim.thermo.system.SystemInterface;
Expand Down Expand Up @@ -45,6 +43,7 @@ public class WaterStripperColumn extends SimpleAbsorber {
* Constructor for WaterStripperColumn.
* </p>
*/
@Deprecated
public WaterStripperColumn() {
}

Expand All @@ -56,7 +55,7 @@ public WaterStripperColumn() {
* @param name a {@link java.lang.String} object
*/
public WaterStripperColumn(String name) {
this.name = name;
super(name);
}

/** {@inheritDoc} */
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Compressor extends ProcessEquipmentBaseClass implements CompressorI
public StreamInterface outStream;
private double outTemperature = 298.15;
private boolean useOutTemperature = false;
private CompresorPropertyProfile propertyProfile = new CompresorPropertyProfile();
private CompressorPropertyProfile propertyProfile = new CompressorPropertyProfile();
public double dH = 0.0;
public double inletEnthalpy = 0;
public double pressure = 0.0;
Expand Down Expand Up @@ -1232,11 +1232,11 @@ public void setUseGERG2008(boolean useGERG2008) {
this.useGERG2008 = useGERG2008;
}

public CompresorPropertyProfile getPropertyProfile() {
public CompressorPropertyProfile getPropertyProfile() {
return propertyProfile;
}

public void setPropertyProfile(CompresorPropertyProfile propertyProfile) {
public void setPropertyProfile(CompressorPropertyProfile propertyProfile) {
this.propertyProfile = propertyProfile;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Objects;

import org.apache.commons.math3.analysis.polynomials.PolynomialFunction;
import org.apache.commons.math3.fitting.PolynomialCurveFitter;
import org.apache.commons.math3.fitting.WeightedObservedPoints;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import neqsim.processSimulation.processEquipment.stream.Stream;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -294,7 +292,7 @@ public static void main(String[] args) {
testFluid.setTotalFlowRate(1.0, "MSm3/day");

Stream stream_1 = new Stream("Stream1", testFluid);
Compressor comp1 = new Compressor(stream_1);
Compressor comp1 = new Compressor("cmp1", stream_1);
comp1.setUsePolytropicCalc(true);
// comp1.getAntiSurge().setActive(true);
comp1.setSpeed(11918);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

import java.util.ArrayList;
import java.util.Arrays;

import org.apache.commons.math3.analysis.interpolation.SplineInterpolator;
import org.apache.commons.math3.analysis.polynomials.PolynomialFunction;
import org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction;
import org.apache.commons.math3.fitting.WeightedObservedPoints;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import neqsim.processSimulation.processEquipment.stream.Stream;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -364,7 +362,7 @@ public static void main(String[] args) {
testFluid.setTotalFlowRate(5.4, "MSm3/day");

Stream stream_1 = new Stream("Stream1", testFluid);
Compressor comp1 = new Compressor(true);
Compressor comp1 = new Compressor("cmp1", true);
comp1.setInletStream(stream_1);
comp1.setUsePolytropicCalc(true);
// comp1.getAntiSurge().setActive(true);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package neqsim.processSimulation.processEquipment.compressor;

import java.io.Serializable;
import java.util.ArrayList;
import neqsim.thermo.system.SystemInterface;

/**
* @author ESOL
*
*/
public class CompressorPropertyProfile implements Serializable {

private ArrayList<SystemInterface> fluid = new ArrayList<SystemInterface>();
private boolean isActive = false;

public CompressorPropertyProfile() {}

public void addFluid(SystemInterface inputFLuid) {
inputFLuid.initPhysicalProperties();
fluid.add(inputFLuid);
}

public boolean isActive() {
return isActive;
}

public void setActive(boolean isActive) {
this.isActive = isActive;
fluid.clear();
}

public ArrayList<SystemInterface> getFluid() {
return fluid;
}

public void setFluid(ArrayList<SystemInterface> fluid) {
this.fluid = fluid;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class DistillationColumn extends ProcessEquipmentBaseClass implements Dis
double topTrayPressure = -1.0, bottomTrayPressure = -1.0;
int numberOfTrays = 1;
private int feedTrayNumber = 1;
StreamInterface stream_3 = new Stream(), gasOutStream = new Stream(),
liquidOutStream = new Stream(), feedStream = null;
StreamInterface stream_3 = new Stream("stream_3"), gasOutStream = new Stream("gasOutStream"),
liquidOutStream = new Stream("liquidOutStream"), feedStream = null;
boolean stream_3isset = false;
private double internalDiameter = 1.0;
neqsim.processSimulation.processSystem.ProcessSystem distoperations;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class Expander extends Compressor implements ExpanderInterface {
* Constructor for Expander.
* </p>
*/
@Deprecated
public Expander() {
super();
}
Expand All @@ -32,10 +33,20 @@ public Expander() {
* @param inletStream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface}
* object
*/
@Deprecated
public Expander(StreamInterface inletStream) {
super(inletStream);
}

/**
* Constructor for Expander.
*
* @param name
*/
public Expander(String name) {
super(name);
}

/**
* <p>
* Constructor for Expander.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,18 @@ public class CharCoalFilter extends Filter {
* @param inStream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface}
* object
*/
@Deprecated
public CharCoalFilter(StreamInterface inStream) {
super(inStream);
}

/**
* Constructor for CharCoalFilter.
*
* @param name
* @param inStream
*/
public CharCoalFilter(String name, StreamInterface inStream) {
super(name, inStream);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class Cooler extends Heater {
* Constructor for Cooler.
* </p>
*/
@Deprecated
public Cooler() {
super();
}
Expand All @@ -30,10 +31,20 @@ public Cooler() {
* @param inStream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface}
* object
*/
@Deprecated
public Cooler(StreamInterface inStream) {
super(inStream);
}

/**
* Constructor for Cooler.
*
* @param name
*/
public Cooler(String name) {
super(name);
}

/**
* <p>
* Constructor for Cooler.
Expand Down
Loading