https://github.com/QTB-HHU/ModelHeatShock
Revision b96a3a278645a7de333cfa2cb4ab9335ffc6cba8 authored by Oliver Ebenhoeh on 23 February 2018, 15:23:43 UTC, committed by Oliver Ebenhoeh on 23 February 2018, 15:23:43 UTC
1 parent 634aab8
Raw File
Tip revision: b96a3a278645a7de333cfa2cb4ab9335ffc6cba8 authored by Oliver Ebenhoeh on 23 February 2018, 15:23:43 UTC
two refs. Reviewer 1 most comments included
Tip revision: b96a3a2
HSM_HSModelClass.py
from scipy.integrate import ode
import matplotlib.pyplot as plt
import numpy as np

from HSM_ODEsSystem import *
from HSM_ParametersClass import *


class HeatShockModel:
    """ Class to model the Heat shock model """

    def __init__(self, ParametersSetIC, ParametersSetRATES, ParamSetForREACTIONS):
        """ Set the values of the parameters, i.e. the rates """

        self.ParamsSetIC = ParametersSetIC
        self.ParamsSetRATES = ParametersSetRATES
        self.ParamsSetForREAC = ParamSetForREACTIONS
back to top