Define a T-cell abstraction for motility simulations
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | private, | parameter | :: | positions_dimension | = | 2 |
Return a t_cell_collection_t object with rescaled position vectors and the provided time stamp
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| double precision, | intent(in) | :: | positions(:,:) | |||
| double precision, | intent(in) | :: | time |
Result is bind(C) representation of the data inside a t_cell_collection_t object
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(t_cell_collection_t), | intent(in), | target | :: | t_cell_collection |
Return the t_cell_collection_t object's position vectors
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(t_cell_collection_t), | intent(in) | :: | self |
Return the t_cell_collection_t object's time stamp
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(t_cell_collection_t), | intent(in) | :: | self |
Encapsulate the state of a collection of T cells
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| double precision, | private, | allocatable | :: | positions_(:,:) |
position vectors |
||
| double precision, | private | :: | time_ |
time stamp |
| private pure, module function construct (positions, time) | Return a t_cell_collection_t object with rescaled position vectors and the provided time stamp |
| procedure, public :: positions | |
| procedure, public :: time |
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| type(c_ptr), | public | :: | positions_ptr | ||||
| integer(kind=c_int), | public | :: | positions_shape(positions_dimension) | ||||
| real(kind=c_double), | public | :: | time |
| private elemental, module function construct_bind_C (t_cell_collection) | Result is bind(C) representation of the data inside a t_cell_collection_t object |