-
Notifications
You must be signed in to change notification settings - Fork 30
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();
- Getting started with NeqSim and GitHub
- Getting started as a NeqSim developer
- The NeqSim parameter database
- Example of setting up a fluid and running simple flash calculations
- Select thermodynamic model and mixing rule
- Flash calculations and phase envelope calculations using NeqSim
- Calculation of thermodynamic and physical properties using NeqSim
- Oil Characterization in NeqSim
- Aqueous fluids and NeqSim
- Electrolytes and NeqSim
- Process Calculations in NeqSim