Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/standard/SIDS/particles.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The physical coordinates of the particle centers are described by the

List( Descriptor_t Descriptor1 ... DescriptorN ) ; (o)

List( DataArray_t<DataType, ParticleSize>
List( DataArray_t<DataType, 1, ParticleSize>
DataArray1 ... DataArrayN ) ; (o)

DataClass_t DataClass ; (o)
Expand Down Expand Up @@ -177,10 +177,10 @@ and correspond to the solution for the entire particle.
{
List( Descriptor_t Descriptor1 ... DescriptorN ) ; (o)

IndexRange PointRange ; (o)
IndexArray<DataSize[], int> PointList ; (o)
IndexRange_t<1> PointRange ; (o)
IndexArray_t<1, DataSize[], int> PointList ; (o)

List( DataArray_t<DataType, DataSize[]>
List( DataArray_t<DataType, 1, DataSize[]>
DataArray1 ... DataArrayN ) ; (o)

DataClass_t DataClass ; (o)
Expand Down
Loading