Process Calculations in NeqSim - equinor/neqsim GitHub Wiki

Examples of process simulations using NeqSim are given in these examples and the process tests.

A stream is created using the stream object:

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

A separartor is added using the following method

Separator separator = new Separator("Separator 1", stream_1);

More unit operations can be seen in the process equipment package.

To run a process simulation, all uit operations are added to a process operations object

neqsim.processSimulation.processSystem.ProcessSystem operations = new neqsim.processSimulation.processSystem.ProcessSystem(); operations.add(stream_1);

Finally to run the calculations we call:

operations.run();

to display the results we call:

operations.displayResult();