Location: Incorporation of sarcolemmal calcium transporters into the Shorten et al. (2007) model of skeletal muscle @ 90faa5a1cd36 / Fig03(R).py

Author:
David Nickerson <david.nickerson@gmail.com>
Date:
2020-08-25 11:07:51+12:00
Desc:
adding python script to run simulations required for Fig 3 (right).
Permanent Source URI:
https://models.physiomeproject.org/workspace/5c6/rawfile/90faa5a1cd36aebd70788a921493847bfefc67e6/Fig03(R).py

# To reproduce the data needed for Figure 3 (right panel) in associated Physiome paper,
# execute this script in the Python console in OpenCOR. This can be done
# with the following commands at the prompt in the OpenCOR Python console:
#
#     In [1]: cd path/to/folder_this_file_is_in
#     In [2]: %run Fig03(R).py
#

import opencor as opencor

simulation = opencor.open_simulation("Fig03(R).sedml")

# reset everything in case we are running interactively and have existing results
simulation.reset(True)

# clear the results
simulation.clear_results()

# and run the steady-state simulation
simulation.run()

# remove the sarcolemmal calcium transporters and re-run
simulation.reset(True)
simulation.data().constants()["wal_environment/theta"] = 0.0
simulation.run()