equinor / neqsim

NeqSim is a library for calculation of fluid behavior, phase equilibrium and process simulation

Home Page:https://equinor.github.io/neqsimhome/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

add a process solver for arrays of input data

EvenSol opened this issue · comments

Is your feature request related to a problem? Please describe.
Solving multiple point in a single call would speed up process calculations.

Describe the solution you'd like
Enter arrays of input data as input to a solver.

//
// setProcessSystem(ProcessSystem inputProcess)
//
// outProcessArray[]
//
// setInputParameters(Set paramSet){

unitOperationName = "thermo";
inputSignalName = "";
unit = "C"
data = [array of data]

}

run(){

for(int i in paramSet)
getProcess.getUnit("").setTemperature()
}
//
//