Skip to content

Process Calculations in NeqSim

Even Solbraa edited this page Dec 16, 2021 · 5 revisions

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

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();

Clone this wiki locally