Updated Home (markdown) authored by Jens Hahn's avatar Jens Hahn
...@@ -15,8 +15,10 @@ The model is inspired by the structure of a model published by [Karr et al. 2014 ...@@ -15,8 +15,10 @@ The model is inspired by the structure of a model published by [Karr et al. 2014
1. **Model**: 1. **Model**:
The model object contains the simulation routine and manages the simulation process. It registers molecules and processes to simulate a whole model and lets them communicate. The model object contains the simulation routine and manages the simulation process. It registers molecules and processes to simulate a whole model and lets them communicate.
2. **Biomolecule**: 2. **Process**:
Specific molecules are of the type Biomolecule or can get additional attributes by inheriting from this class.
3. **Process**:
Processes that happen in the cell modify Biomolecules. The class `Process` provides the basic attributes and methods needed for this. The specific processes should be derived from this class. Processes that happen in the cell modify Biomolecules. The class `Process` provides the basic attributes and methods needed for this. The specific processes should be derived from this class.
3. **Molecules**:
Specific molecules are of the type Biomolecule or can get additional attributes by inheriting from this class.
[[pics/inheritance.png]]