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

chore: add test #350

Merged
merged 1 commit into from
Mar 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
*/
package neqsim.thermo.component;

import static org.junit.jupiter.api.Assertions.*;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkCPAstatoil;
import neqsim.thermodynamicOperations.ThermodynamicOperations;
Expand All @@ -28,9 +27,7 @@ static void setUpBeforeClass() throws Exception {
thermoSystem.addComponent("methane", 11.0);
thermoSystem.addComponent("CO2", 1.0);
thermoSystem.addComponent("water", 11.0);
thermoSystem.setMixingRule(10);


thermoSystem.setMixingRule(10);
}

/**
Expand Down
58 changes: 58 additions & 0 deletions src/test/java/neqsim/thermo/component/ComponentTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
package neqsim.thermo.component;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;

public class ComponentTest {
static SystemInterface thermoSystem = null;

/**
* @throws java.lang.Exception
*/
@BeforeAll
static void setUpBeforeClass() throws Exception {
thermoSystem = new SystemSrkEos(298.0, 100.0);
thermoSystem.addComponent("water", 1.0);
}

@Test
public void testGetFlowRate() {
Assertions.assertEquals(thermoSystem.getComponent("water").getFlowRate("kg/min"),
60 * thermoSystem.getComponent("water").getFlowRate("kg/sec"));
Assertions.assertEquals(thermoSystem.getComponent("water").getFlowRate("kg/hr"),
60 * thermoSystem.getComponent("water").getFlowRate("kg/min"));

Assertions.assertEquals(thermoSystem.getComponent("water").getFlowRate("m3/min"),
60 * thermoSystem.getComponent("water").getFlowRate("m3/sec"));
Assertions.assertEquals(thermoSystem.getComponent("water").getFlowRate("m3/hr"),
60 * thermoSystem.getComponent("water").getFlowRate("m3/min"));

Assertions.assertEquals(thermoSystem.getComponent("water").getFlowRate("mole/min"),
60 * thermoSystem.getComponent("water").getFlowRate("mole/sec"));
Assertions.assertEquals(thermoSystem.getComponent("water").getFlowRate("mole/hr"),
60 * thermoSystem.getComponent("water").getFlowRate("mole/min"));
// throw new RuntimeException("failed.. unit: " + flowunit + " not supported");
}

@Test
public void testGetTotalFlowRate() {
Assertions.assertEquals(thermoSystem.getComponent("water").getTotalFlowRate("kg/min"),
60 * thermoSystem.getComponent("water").getTotalFlowRate("kg/sec"));
Assertions.assertEquals(thermoSystem.getComponent("water").getTotalFlowRate("kg/hr"),
60 * thermoSystem.getComponent("water").getTotalFlowRate("kg/min"));

// Assertions.assertEquals(thermoSystem.getComponent("water").getTotalFlowRate("m3/min"),60
// * thermoSystem.getComponent("water").getTotalFlowRate("m3/sec"));
// Assertions.assertEquals(thermoSystem.getComponent("water").getTotalFlowRate("m3/hr"),60 *
// thermoSystem.getComponent("water").getTotalFlowRate("m3/min"));

Assertions.assertEquals(thermoSystem.getComponent("water").getTotalFlowRate("mole/min"),
60 * thermoSystem.getComponent("water").getTotalFlowRate("mole/sec"));
Assertions.assertEquals(thermoSystem.getComponent("water").getTotalFlowRate("mole/hr"),
60 * thermoSystem.getComponent("water").getTotalFlowRate("mole/min"));
// throw new RuntimeException("failed.. unit: " + flowunit + " not supported");
}
}