Model
The Model class is used to work with a multicellular model for numerical calculations.
To import this class use:
import ru.biosoft.physicell.core.Model
All members of the Model class are presented below.
Class member |
Description |
|---|---|
SignalBehavior getSignals()
or
SignalBehavior signals
|
Returns (contains) an object that handles receiving signals from cells and regulating cell behavior.
Example of usage.
|
RandomGenerator getRNG() |
|
CellDefinition getCellDefinition(String name) |
|
Microenvironment getMicroenvironment() |
|
double getParameterDouble(String name) |
|
int getParameterInt(String name) |
name - name of the model parameter.
Returns the integer value of the name parameter.
Example of usage.
|
String getParameterString(String name) |
name - name of the model parameter.
Returns the string value of the name parameter.
Example of usage.
|
void setSaveFullInterval(double interval) |
interval - time interval.
Sets the time interval for saving complete model calculation results.
Example of usage.
|