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.

Members of the Model class

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()

Returns the random number generator of the given model.

Example of usage.

CellDefinition getCellDefinition(String name)

name - name of the cell type.

Returns the cell type named name.

Example of usage.

Microenvironment getMicroenvironment()

Returns the model environment.

Example of usage.

double getParameterDouble(String name)

name - name of the model parameter.

Returns the value of the name parameter.

Example of usage.

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.