Skip to content

Releases: copasi/COPASI.js

Release 0.0.4

12 Aug 20:30
Compare
Choose a tag to compare

This release adds methods adds access to the jacobian and eigenvalues as properties:

    // run steady state
    console.log(instance.steadyState());

    // print jacobian
    console.log(instance.jacobian);

    // print jacobian
    console.log(instance.jacobian2D);

    // print eigenvalues
    console.log(instance.eigenValues2D);

    // print jacobian
    console.log(instance.reducedJacobian);

    // print jacobian
    console.log(instance.reducedJacobian2D);

    // print eigenvalues
    console.log(instance.eigenValuesReduced2D);    

Release 0.0.3

10 May 09:01
Compare
Choose a tag to compare

This release fixes an issue, where StepSize would take precedent over StepNumber when simulating. It also changes reset->resetAll (implying that all initial values are set back to their initial state), while a new reset method now resets only elements controlled by ODEs or Reactions back to initial state.

Release 0.0.2

02 May 11:06
Compare
Choose a tag to compare

This release adds get/setValue and method overloads that allow to retrieve elements using SBML ids. Additionally it is compiled with exceptions enabled that solves the issue with loading some SBML files. simulate now returns a proper JSON object in case of failure.

Release 0.0.1

21 Jan 14:33
Compare
Choose a tag to compare

First release of the basic simulation api. You'll find javascript attached to this release, one to use for node, one to use in web environments.