Cell Simulator – Region Configuration
You can use a Readable Unit anywhere where you have the option of:
-
number
orstring
-
integer
orstring
📃 Corresponding configuration file: cell/regions.json
Regions
Schema describing the JSON file structure for the regional networks configuration. It is is used to extend the network with regional information, which enables the emulation of mobile networks. If configured very granular, these regions can reflect cells as used in the real world. Though for most use-cases it is sufficient to approximate the behaviour by defining larger regions.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
regions |
mobileNetworkProperties[] |
An array of regional network configruations. | No | None | None |
mobileNetworkProperties
Object to define a network with specific geograpgical extensions. It applies for all regions except the global network, which covers the remaining space. The CMobileNetworkProperties only needs to be employed, when geographic information are accessed.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
id | string |
Network-Id for identification. | No | None | None |
area |
geoRectangle |
Object to define an immutable pair of two different geoPoints. Together they form a rectangular area. | ✓ Yes | None | None |
polygon | object |
The area of the network as a polygon. | ✓ Yes | None | None |
uplink |
mobileNetworkProperties.uplink |
Object to define the uplink of a network. The uplink direction only allows point-to-point communication (unicast). It is composed of the three nested models for delay, transmission configuration and capacity. | ✓ Yes | None | None |
downlink |
mobileNetworkProperties.downlink |
Object to define the downlink of a network. The downlink supports two individual paths: Point-to-point communication (unicast) and Point-to-multipoint communication (multicast). | ✓ Yes | None | None |
geoRectangle
Object to define an immutable pair of two different geoPoints. Together they form a rectangular area.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
nw |
geoPoint |
Object to define geographical point coordinates. | ✓ Yes | None | None |
se |
geoPoint |
Object to define geographical point coordinates. | ✓ Yes | None | None |
geoPoint
Object to define geographical point coordinates.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
lon | number |
East-west position of a point on earth. | ✓ Yes | [-180, 180] | None |
lat | number |
North-south position of a point on earth. | ✓ Yes | [-$\infty$, 90] | None |
mobileNetworkProperties.uplink
Object to define the uplink of a network. The uplink direction only allows point-to-point communication (unicast). It is composed of the three nested models for delay, transmission configuration and capacity.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
delay |
delay |
Object to define a delay model. | ✓ Yes | None | None |
transmission |
transmission |
Object to define the properties of a transmission. | ✓ Yes | None | None |
capacity | integer string |
The capacity of the uplink. | ✓ Yes | None | None |
delay
Object to define a delay model.
Additionally ONE of the following property definitions apply:
gammaDelay
Object to define a model for GammaRandomDelay or GammaSpeedDelay. GammaRandomDelay bases directly on the Gamma distribution (b=2,p=2) with minimum and expected value. Due to the nature of the Gamma distribution, the resulting delays can be far higher than the expected value. GammaSpeedDelay bases on the GammaRandomDelay and includes an additional speed penalty according to the current speed of the vehicle.
Properties
Further property restrictions:
gammaDelay.type
- Allowed values:
GammaRandomDelay
GammaSpeedDelay
constantDelay
Object to define a model for constant delay, which delivers always the same delay.
Properties
Further property restrictions:
constantDelay.type
- Allowed values:
ConstantDelay
simpleRandomDelay
Object to define a model for a radnomised delay. Delivers number-of-steps different uniformly distributed delays in the interval defined by min and max (e.g. minDelay=30ms, maxDelay=60ms, steps=4 -> possible delays={30,40,50,60}ms.).
Properties
Further property restrictions:
simpleRandomDelay.type
- Allowed values:
SimpleRandomDelay
tranmission
Object to define the properties of a transmission.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
lossProbability | number |
Probability of packet retransmission (in case of configured retries > 0) or packet loss (retries = 0) for the packet retransmission/loss model. A value of 0 equals a lossfree transmission. | ✓ Yes | [0, 1] | 0 |
maxRetries | integer |
Maximum Number of retransmissions. | No | [0, +$\infty$] | None |
mobileNetworkProperties.downlink
Object to define the downlink of a network. The downlink supports two individual paths: Point-to-point communication (unicast) and Point-to-multipoint communication (multicast).
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
unicast |
unicast |
Object to define point-to-point communication. | ✓ Yes | None | None |
multicast |
multicast |
Object to define point-to-multipoint communication. | ✓ Yes | None | None |
capacity | integer string |
The capacity of the downlink. | ✓ Yes | None | None |
unicast
Object to define point-to-point communication.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
delay |
delay |
Object to define a delay model. | ✓ Yes | None | None |
transmission |
transmission |
Object to define the properties of a transmission. | ✓ Yes | None | None |
multicast
Object to define point-to-multipoint communication.
Properties
Type | Description | Required | Boundaries | Default | |
---|---|---|---|---|---|
delay |
delay |
Object to define a delay model. | ✓ Yes | None | None |
transmission |
transmission |
Object to define the properties of a transmission. | ✓ Yes | None | None |
usableCapacity | number |
The usableCapacity configures the ratio of the overall downlink capacity allowed to be used. | ✓ Yes | [0, 1] | None |