|
@@ -25,6 +25,7 @@ Use windows terminal (ie. cmd.exe)
|
|
|
Follow `cDiazepam.json`. Basic instructions:
|
|
|
- `runSolver.main(setup,model,parameters,jobDir,srcDir)`
|
|
|
This constructs a model from the model file, sets it up with parameters from parameters file, uses the setup to drive calculation which it stores in jobDir. If srcDir is not a string NONE, it takes the solution from srcDir and continues it until tmax in setup is reached.
|
|
|
+ `setup['mode']` will select computation method. Typical value is `'IVP'`, which will use `LSODA` or a similar method, set through `setup['method']` to perofrm adaptable step solution of an inital value problem. Selecting `'solveMatrix'` as mode and `'solveSequential'` as method will calculate solution using matrix equation, which should be faster.
|
|
|
|
|
|
- `runSolver.loadSolutionFromDir(jobDir,True)`
|
|
|
Read solution from dir jobDir. Returns a dict with fields
|