diff --git a/CHANGELOG.md b/CHANGELOG.md index 63266a034749e98ac96f9bf4b02d4d436e3702e8..47ceb47f7d28c7184b34c993606cfe1fbf3cc66a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,60 @@ ### Added +### Removed + +### Changed + +### Fixed + +### Performance + +### Security + +### Deprecated + +### Other + + +## v2.1 (2022-03-XX) + +### Added + - Added new output processor "PedestrianTargetReachTimeProcessor" to log the time when an agent reaches its target. +- Added settings in `SettingsDialog` that allow to define opacity of aerosol clouds and agent coloring depending on their degree of exposure (`GUI`) +- Added `AbstractExposureModel` describing the exposure of healthy agents to infectious agents (`Simulator`) +* `AirTransmissionModel` as a new version of the previous `TransmisisonModel` (see section `changed`) +* `ProximityExposureModel`: Agents become exposed depending on the distance to infectious agents. +- Added `AbstractDoseResponseModel` describing the probability of infection depending on a pedestrian's individual exposure. (`Simulator`) +- `Pedestrian`: added new properties (`State`) +* Added attribute healthStatus of type T extends `ExposureModelHealthStatus` (corresponding to the new exposure model) +* Added attribute infectionStatus of type T extends `DoseResponseModelInfectionStatus` (corresponding to the new dose response model) ### Changed - In `postLoop()` of `Simulation.java`, clear the topography as very last step so that models and output processors can use it before. -- `TransmissionModel`: Reduce complexity of the transmission model (: `Simulator`, `GUI`, `State`) -* In AttributesTransmissionModel change parameter aerosolCloudInitialArea to aerosolCloudInitialRadius -* In `AttributesAerosolCloud` reduce number of parameters that describe the shape of an `AerosolCloud`. Instead of `VPolygon`, we now use `VCircle`, which can defined by a radius and a center. -* Adapt all methods and classes that were designed for both elliptical and circular clouds. -- Fix bug in `TikzGenerator`: Now, the tex file (generated with tikz snapshot) also contains aerosol clouds (29e9c937: `GUI`) +- Refactoring of the software architecture of `TransmissionModel` (`Simulator`, `GUI`, `State`): +* Renamed `TransmissionModel` to `AirTransmissionModel` to avoid confusion with transmission in the sense of communication or others. +* The previous concept of the TransmissionModel is now divided into exposure (`AbstractExposureModel`) and dose response (`AbstractDoseResponseModel`). The abstract classes allow for model enhancements or implementing alternative models. +* Adapted the model attributes so that they fit to the new exposure models and dose response models. +* Minor improvements / simplifications of the aerosol cloud model; Reduced complexity of the transmission model; Now, the model creates only circular but no elliptical clouds; +* Moved some hidden parameters to scenario file to make the model more flexible +* Move attributes that are equal for all instances of classes AerosolCloud, Droplets, and Pedestrian to the general model attributes (`AttributesAirTransmissionModel`). This is not strictly object-oriented but pragmatic and avoids redundancy. +- `TikzGenerator`: Make the transparency of aerosol clouds in the tex file depend on the pathogen concentration. (`GUI`) +- `SettingsDialog`: +* increase contrast between color of settings wheel and vadere GUI background color (2d2edad5: `GUI`) +* reduce width of color panels (`GUI`) +- Renamed + +### Fixed +- `TikzGenerator`: Now, the tex file (generated with tikz snapshot during onlinevisualization) also contains aerosol clouds (29e9c937: `GUI`) +- `SettingsDialog`: Fixed overlapping elements in postvis settings dialog. (`GUI`) +- `TopographyController`: Previously, pedestrians that were directly put into the topography (not spawned by sources) could not be accessed / manipulated by the TransmissionModel, that is one could not define a health status. These pedestrians are now handled by the TopographyController. (`Simulator`) + +## Removed +- Due to refactored architecture of the transmission model, removed... +* classes `HealthStatus`, `NumberOfPedPerInfectionStatusProcessor`, `PedestrianHealthStatusProcessor` (`State`, `Simulator`) +* enum `InfectionStatus` (`State`) ## v2.0 diff --git a/Scenarios/Demos/TransmissionModel/.gitignore b/Scenarios/Demos/AirTransmissionModel/.gitignore similarity index 100% rename from Scenarios/Demos/TransmissionModel/.gitignore rename to Scenarios/Demos/AirTransmissionModel/.gitignore diff --git a/Scenarios/Demos/TransmissionModel/scenarios/bottleneckA.scenario b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckA.scenario similarity index 85% rename from Scenarios/Demos/TransmissionModel/scenarios/bottleneckA.scenario rename to Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckA.scenario index 572ec0498c25123db9b06738ff350d71f09cb934..dba0074e1bb7dfbfc3b5c927f473ba1e3bc7610b 100644 --- a/Scenarios/Demos/TransmissionModel/scenarios/bottleneckA.scenario +++ b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckA.scenario @@ -1,8 +1,8 @@ { "name" : "bottleneckA", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -16,6 +16,10 @@ "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", "filename" : "overlapCount.txt", "processors" : [ 4 ] + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", + "filename" : "aerosolCloudData.txt", + "processors" : [ 6 ] } ], "processors" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", @@ -36,8 +40,15 @@ }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 5 + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", + "id" : 6, + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", + "attributes" : { + "sampleEveryNthSimStep" : 1 + } } ], - "isTimestamped" : true, + "isTimestamped" : false, "isWriteMetaData" : false }, "scenario" : { @@ -62,7 +73,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -95,28 +106,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : 3, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 5, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 1.0E-4, - "pedestrianMinInfectiousDose" : 1000.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 120.0, - "aerosolCloudInitialRadius" : 1, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/scenarios/bottleneckB.scenario b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckB.scenario similarity index 87% rename from Scenarios/Demos/TransmissionModel/scenarios/bottleneckB.scenario rename to Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckB.scenario index 1899d272f1e2cf7803ea59c45a907e616cb102fb..cb878390445160126123251f85a1616ca32efc48 100644 --- a/Scenarios/Demos/TransmissionModel/scenarios/bottleneckB.scenario +++ b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckB.scenario @@ -1,8 +1,8 @@ { "name" : "bottleneckB", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -20,6 +20,10 @@ "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", "filename" : "flow.txt", "processors" : [ 6 ] + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", + "filename" : "aerosolCloudData.txt", + "processors" : [ 9 ] } ], "processors" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", @@ -61,8 +65,15 @@ }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 8 + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", + "id" : 9, + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", + "attributes" : { + "sampleEveryNthSimStep" : 1 + } } ], - "isTimestamped" : true, + "isTimestamped" : false, "isWriteMetaData" : false }, "scenario" : { @@ -87,7 +98,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -120,28 +131,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : 3, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 5, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 1000.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 120.0, - "aerosolCloudInitialRadius" : 1, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/scenarios/bottleneckB_socialDistancing.scenario b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckB_socialDistancing.scenario similarity index 88% rename from Scenarios/Demos/TransmissionModel/scenarios/bottleneckB_socialDistancing.scenario rename to Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckB_socialDistancing.scenario index 2636dbfdecd950da0e5b9dac774f7f615bcc2d06..a618054937b38810a47e993a6755c6af9557bd8d 100644 --- a/Scenarios/Demos/TransmissionModel/scenarios/bottleneckB_socialDistancing.scenario +++ b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/bottleneckB_socialDistancing.scenario @@ -1,8 +1,8 @@ { "name" : "bottleneckB_socialDistancing", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -20,6 +20,10 @@ "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", "filename" : "flow.txt", "processors" : [ 6 ] + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", + "filename" : "aerosolCloudData.txt", + "processors" : [ 9 ] } ], "processors" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", @@ -61,8 +65,15 @@ }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 8 + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", + "id" : 9, + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", + "attributes" : { + "sampleEveryNthSimStep" : 1 + } } ], - "isTimestamped" : true, + "isTimestamped" : false, "isWriteMetaData" : false }, "scenario" : { @@ -87,7 +98,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -120,28 +131,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : 3, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 5, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 1000.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 120.0, - "aerosolCloudInitialRadius" : 1, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/scenarios/closeContact.scenario b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/closeContact.scenario similarity index 89% rename from Scenarios/Demos/TransmissionModel/scenarios/closeContact.scenario rename to Scenarios/Demos/AirTransmissionModel/examples/scenarios/closeContact.scenario index 1ed8efbf0d65c80bf63aac8ece4fc04b0ecfd330..56fc4c8b4f9304b26dde24dcc90b3fb85f47cff5 100644 --- a/Scenarios/Demos/TransmissionModel/scenarios/closeContact.scenario +++ b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/closeContact.scenario @@ -1,8 +1,8 @@ { "name" : "closeContact", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -26,7 +26,7 @@ "processors" : [ 6 ] }, { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", - "filename" : "aerosolCloudShapes.txt", + "filename" : "aerosolCloudData.txt", "processors" : [ 8 ] } ], "processors" : [ { @@ -46,7 +46,7 @@ "pedestrianOverlapProcessorId" : 3 } }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianPathogenLoadProcessor", + "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianDegreeOfExposureProcessor", "id" : 5 }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.PathogenConcentrationProcessor", @@ -60,9 +60,9 @@ "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 7 }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudShapeProcessor", + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", "id" : 8, - "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudShapeProcessor", + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", "attributes" : { "sampleEveryNthSimStep" : 1 } @@ -92,7 +92,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.0, @@ -125,28 +125,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : 15, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 16, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/scenarios/passageway.scenario b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/passageway.scenario similarity index 85% rename from Scenarios/Demos/TransmissionModel/scenarios/passageway.scenario rename to Scenarios/Demos/AirTransmissionModel/examples/scenarios/passageway.scenario index ebb8ecb9837a073354aad9cd7daaf55842665302..548bb374936cb729068d5a318fb3080dc815a45f 100644 --- a/Scenarios/Demos/TransmissionModel/scenarios/passageway.scenario +++ b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/passageway.scenario @@ -1,8 +1,8 @@ { "name" : "passageway", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -16,6 +16,10 @@ "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", "filename" : "overlapCount.txt", "processors" : [ 4 ] + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", + "filename" : "aerosolCloudData.txt", + "processors" : [ 6 ] } ], "processors" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", @@ -36,8 +40,15 @@ }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 5 + }, { + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", + "id" : 6, + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", + "attributes" : { + "sampleEveryNthSimStep" : 1 + } } ], - "isTimestamped" : true, + "isTimestamped" : false, "isWriteMetaData" : false }, "scenario" : { @@ -62,7 +73,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -95,28 +106,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 2, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 1000.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 120.0, - "aerosolCloudInitialRadius" : 1, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/scenarios/queueScenario_publication.scenario b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/queue.scenario similarity index 87% rename from Scenarios/Demos/TransmissionModel/scenarios/queueScenario_publication.scenario rename to Scenarios/Demos/AirTransmissionModel/examples/scenarios/queue.scenario index 132c22dafa643afd327f20bf9210367fe129cb27..8f69bcb4dcb9c8a7e3857b1337076259aca5f841 100644 --- a/Scenarios/Demos/TransmissionModel/scenarios/queueScenario_publication.scenario +++ b/Scenarios/Demos/AirTransmissionModel/examples/scenarios/queue.scenario @@ -1,8 +1,8 @@ { - "name" : "queueScenario_publication", + "name" : "queue", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -28,10 +28,6 @@ "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimeGridOutputFile", "filename" : "pathogenConcentration.txt", "processors" : [ 7 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "infectionStatusPerPedestrian.txt", - "processors" : [ 8 ] }, { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", "filename" : "pedestrianHealthStatus.txt", @@ -42,7 +38,7 @@ "processors" : [ 9 ] }, { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", - "filename" : "aerosolCloudShapes.txt", + "filename" : "aerosolCloudData.txt", "processors" : [ 12 ] } ], "processors" : [ { @@ -62,7 +58,7 @@ "pedestrianOverlapProcessorId" : 3 } }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianPathogenLoadProcessor", + "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianDegreeOfExposureProcessor", "id" : 5 }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudCountingProcessor", @@ -75,22 +71,16 @@ "gridResolution" : 0.5, "timeResolution" : 4.0 } - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 8 }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudLifeTimeProcessor", "id" : 9 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianHealthStatusProcessor", - "id" : 10 }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 11 }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudShapeProcessor", + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", "id" : 12, - "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudShapeProcessor", + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", "attributes" : { "sampleEveryNthSimStep" : 1 } @@ -120,7 +110,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel", "org.vadere.simulator.models.infection.ThresholdResponseModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -153,28 +143,37 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : 1, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 2, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } + }, + "org.vadere.state.attributes.models.infection.AttributesThresholdResponseModel" : { + "exposureToInfectedThreshold" : 1000.0 } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/vadere.project b/Scenarios/Demos/AirTransmissionModel/examples/vadere.project similarity index 100% rename from Scenarios/Demos/TransmissionModel/vadere.project rename to Scenarios/Demos/AirTransmissionModel/examples/vadere.project diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_postvis_template.scenario b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/hamner-2020-life_postvis_template.scenario similarity index 82% rename from Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_postvis_template.scenario rename to Scenarios/Demos/AirTransmissionModel/validation/scenarios/hamner-2020-life_postvis_template.scenario index beceb814de3f36cf683f394ff9c23b5a0fece373..2859f010c4373edf662e78ad9af5386d635cb39f 100644 --- a/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_postvis_template.scenario +++ b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/hamner-2020-life_postvis_template.scenario @@ -1,14 +1,10 @@ { "name" : "hamner-2020-life_postvis_template", "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "infectionStatus.txt", - "processors" : [ 1 ] - }, { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", "filename" : "postvis.traj", "processors" : [ 2, 3, 6 ] @@ -22,13 +18,10 @@ "processors" : [ 5 ] }, { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", - "filename" : "aerosolCloudShapes.txt", + "filename" : "aerosolCloudData.txt", "processors" : [ 7 ] } ], "processors" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 1 - }, { "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", "id" : 2 }, { @@ -48,9 +41,9 @@ "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", "id" : 6 }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudShapeProcessor", + "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudDataProcessor", "id" : 7, - "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudShapeProcessor", + "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudDataProcessor", "attributes" : { "sampleEveryNthSimStep" : 100 } @@ -80,7 +73,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -113,28 +106,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 1, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 172800.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 3.1536E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_template.scenario b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/hamner-2020-life_template.scenario similarity index 80% rename from Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_template.scenario rename to Scenarios/Demos/AirTransmissionModel/validation/scenarios/hamner-2020-life_template.scenario index 3376514ef43c4900fcb8a7ee5f2c5e6b30b044be..06baa65ecdc95f30facfd1bd50f362138d89d817 100644 --- a/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_template.scenario +++ b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/hamner-2020-life_template.scenario @@ -1,18 +1,11 @@ { "name" : "hamner-2020-life_template", "description" : "Superspreading event during a choir rehearsal following hamner-2020-life;\n\nL. Hamner, P. Dubbel, I. Capron, A. Ross, A. Jordan,\nJ. Lee, J. Lynn, A. Ball, S. Narwal, S. Russell, et al.\nHigh SARS-CoV-2 attack rate following exposure at a\nchoir practice — skagit county, washington, march 2020.\nMMWR. Morbidity and Mortality Weekly Report, 69\n(19):606–610, 2020. doi:10.15585/mmwr.mm6919e6.", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { - "files" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "infectionStatus.txt", - "processors" : [ 1 ] - } ], - "processors" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 1 - } ], + "files" : [ ], + "processors" : [ ], "isTimestamped" : false, "isWriteMetaData" : false }, @@ -38,7 +31,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -71,28 +64,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 1, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 172800.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 3.1536E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/lu-2020-life.scenario b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/lu-2020-life.scenario similarity index 95% rename from Scenarios/Demos/TransmissionModel/validation/scenarios/lu-2020-life.scenario rename to Scenarios/Demos/AirTransmissionModel/validation/scenarios/lu-2020-life.scenario index 0cdf52e182396092ff9bdb75649b18260c27a241..35bf98e1582311c93c35ab5f2b12a40bb13f98f0 100644 --- a/Scenarios/Demos/TransmissionModel/validation/scenarios/lu-2020-life.scenario +++ b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/lu-2020-life.scenario @@ -1,8 +1,8 @@ { "name" : "lu-2020-life", "description" : "Superspreading event in a restaurant following lu-2021-life;\n\nJ. Lu, J. Gu, K. Li, C. Xu, W. Su, Z. Lai, D. Zhou,\nC. Yu, B. Xu, and Z. Yang. COVID-19 outbreak associated\nwith air conditioning in restaurant, guangzhou,\nchina, 2020. Emerging Infectious Diseases, 26(7):1628–\n1631, 2020. doi:10.3201/eid2607.200764.", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -62,7 +62,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -95,28 +95,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 11, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 432000.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 1.296E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_targetList.csv b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/miller-2020-life_targetList.csv similarity index 100% rename from Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_targetList.csv rename to Scenarios/Demos/AirTransmissionModel/validation/scenarios/miller-2020-life_targetList.csv diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_template.scenario b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/miller-2020-life_template.scenario similarity index 81% rename from Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_template.scenario rename to Scenarios/Demos/AirTransmissionModel/validation/scenarios/miller-2020-life_template.scenario index f4d3c93cbb13fe1347547f653d5dab55484f88ae..42f6a0cbe9ef6251a27351d1d885e5e9b1dc157a 100644 --- a/Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_template.scenario +++ b/Scenarios/Demos/AirTransmissionModel/validation/scenarios/miller-2020-life_template.scenario @@ -1,23 +1,16 @@ { "name" : "miller-2020-life_template", "description" : "Superspreading event during a choir rehearsal following miller-2020-life;\n\nS. L. Miller, W. W. Nazaroff, J. L. Jimenez, A. Boerstra, G. Buonanno, S. J. Dancer, J. Kurnitski, L. C. Marr, L. Morawska, and C. Noakes. Transmission of SARSCoV-2 by inhalation of respiratory aerosol in the skagit valley chorale superspreading event. Indoor Air, 31(2): 314–323, 2020. doi:10.1111/ina.12751.", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "infectionStatus.txt", - "processors" : [ 1 ] - }, { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", "filename" : "pathogenLoad.txt", "processors" : [ 2 ] } ], "processors" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 1 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianPathogenLoadMaxProcessor", + "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianMaxDegreeOfExposureProcessor", "id" : 2 } ], "isTimestamped" : false, @@ -45,7 +38,7 @@ "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] + "submodels" : [ "org.vadere.simulator.models.infection.AirTransmissionModel" ] }, "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { "pedPotentialIntimateSpaceWidth" : 0.45, @@ -78,28 +71,34 @@ "height" : 1.0 } }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { + "org.vadere.state.attributes.models.infection.AttributesAirTransmissionModel" : { + "exposureModelSourceParameters" : [ { "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" + "infectious" : false }, { "sourceId" : 1, - "infectionStatus" : "INFECTIOUS" + "infectious" : true } ], + "infectiousPedestrianIdsNoSource" : [ ], "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 172800.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 3.1536E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 + "aerosolCloudsActive" : true, + "aerosolCloudParameters" : { + "halfLife" : 600.0, + "initialRadius" : 1.5, + "initialPathogenLoad" : 10000.0, + "airDispersionFactor" : 0.0, + "pedestrianDispersionWeight" : 0.0125, + "absorptionRate" : 5.0E-4 + }, + "dropletsActive" : false, + "dropletParameters" : { + "emissionFrequency" : 0.016666666666666666, + "distanceOfSpread" : 1.5, + "angleOfSpreadInDeg" : 30.0, + "lifeTime" : 1.5, + "pathogenLoad" : 10000.0, + "absorptionRate" : 0.1 + } } }, "attributesSimulation" : { diff --git a/Scenarios/Demos/TransmissionModel/validation/vadere.project b/Scenarios/Demos/AirTransmissionModel/validation/vadere.project similarity index 100% rename from Scenarios/Demos/TransmissionModel/validation/vadere.project rename to Scenarios/Demos/AirTransmissionModel/validation/vadere.project diff --git "a/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/01-Kaiserslautern-Gro\303\237.scenario" "b/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/01-Kaiserslautern-Gro\303\237.scenario" index 554e34404cf8fec31b7c721dbdc75899a124204c..5b5af0740b4dd337cb7b9d866dfb7972888ce7b1 100644 --- "a/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/01-Kaiserslautern-Gro\303\237.scenario" +++ "b/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/01-Kaiserslautern-Gro\303\237.scenario" @@ -1,7 +1,8 @@ { "name" : "01-Kaiserslautern-Groß", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -48966,6 +48967,8 @@ "targets" : [ ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ ], "attributesPedestrian" : { @@ -49006,4 +49009,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/02-Kaiserslautern-Mittel.scenario b/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/02-Kaiserslautern-Mittel.scenario index 4da1b8b76d9321164eee0b497f62bbe704757c65..0cb0a58d885f7fbf90c346ade850dd34fc1f0f6a 100644 --- a/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/02-Kaiserslautern-Mittel.scenario +++ b/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/02-Kaiserslautern-Mittel.scenario @@ -1,7 +1,8 @@ { "name" : "02-Kaiserslautern-Mittel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -29445,6 +29446,8 @@ "targets" : [ ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ ], "attributesPedestrian" : { @@ -29485,4 +29488,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/03-Kaiserslautern-Klein.scenario b/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/03-Kaiserslautern-Klein.scenario index 8108cadfedafce3dbb25b25d0902eb0900f13d92..7c4ba2d0a3a859826692837babf1ae64a60dc971 100644 --- a/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/03-Kaiserslautern-Klein.scenario +++ b/Scenarios/Demos/Demonstration/Kaiserslautern/scenarios/03-Kaiserslautern-Klein.scenario @@ -1,7 +1,8 @@ { "name" : "03-Kaiserslautern-Klein", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -5713,6 +5714,8 @@ "targets" : [ ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ ], "attributesPedestrian" : { @@ -5753,4 +5756,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-GNM.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-GNM.scenario index c0de57774b531f702347a56929599493a603340f..83066e3b30540eea39639e5454fdf0aff1007602 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-GNM.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-GNM.scenario @@ -1,7 +1,8 @@ { "name" : "01-NarrowedStreet-Pollichstrasse-Narrowed-GNM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -891,6 +892,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -962,4 +965,4 @@ "reactionProbability" : 1.0 } ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-OSM.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-OSM.scenario index 3886bf26164200fc180106b582eab0cf132de0e7..aa343b7bcb85fade8f9791026488ff13f9846a85 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-OSM.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-Narrowed-OSM.scenario @@ -1,7 +1,8 @@ { "name" : "01-NarrowedStreet-Pollichstrasse-Narrowed-OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -891,6 +892,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -945,4 +948,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-GNM.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-GNM.scenario index fc92e4aad721edc30b25ac95934b345ce3a3e621..e341bdba6aaf64875ace0dd4e7d8878a7b0ab719 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-GNM.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-GNM.scenario @@ -1,7 +1,8 @@ { "name" : "01-NarrowedStreet-Pollichstrasse-NotNarrowed-GNM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -819,6 +820,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -873,4 +876,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-OSM.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-OSM.scenario index 3499500abed7dc41fca9605d7f02b44b13f8bb93..0b11ad1436f0ce8d2568adfb4f86514fee58f80e 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-OSM.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/01-NarrowedStreet-Pollichstrasse-NotNarrowed-OSM.scenario @@ -1,7 +1,8 @@ { "name" : "01-NarrowedStreet-Pollichstrasse-NotNarrowed-OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -831,6 +832,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -885,4 +888,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-1200agents.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-1200agents.scenario index c90f8fc179f579379a3969ef068566db0e284973..2daea927722088d021082ffc1c44cd0646a207ff 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-1200agents.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-1200agents.scenario @@ -1,7 +1,8 @@ { "name" : "02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-1200agents", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOverlapOutputFile", @@ -2545,6 +2546,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -2590,4 +2593,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-400agents.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-400agents.scenario index 2c6758ed6a1aa1a2caac04dd323e5f3ce7de82f2..320dac50687232bab1097e344983933c4c8afe25 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-400agents.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-400agents.scenario @@ -1,7 +1,8 @@ { "name" : "02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-400agents", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -2545,6 +2546,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -2590,4 +2593,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-800agents.scenario b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-800agents.scenario index e145085af5b444647897452f1d076efb3a470235..2c08d81e3d08fd7676f4bad65a63de4c553e51b7 100644 --- a/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-800agents.scenario +++ b/Scenarios/Demos/Demonstration/OPMOPS-Project/NarrowedStreetAndVaryingPedestrianNumber/scenarios/02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-800agents.scenario @@ -1,7 +1,8 @@ { "name" : "02-VaryingPedestrianNumber-RichardWagnerStrasse-OSM-800agents", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -2545,6 +2546,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -2590,4 +2593,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/Demos/HM_stairs_ModSem_2013_14/scenarios/hm_stairs.scenario b/Scenarios/Demos/HM_stairs_ModSem_2013_14/scenarios/hm_stairs.scenario index 705d358492025c2156475039ea6b794f862905e4..dc039f27d335107f3699dc9c3c4667e59fbe7b66 100644 --- a/Scenarios/Demos/HM_stairs_ModSem_2013_14/scenarios/hm_stairs.scenario +++ b/Scenarios/Demos/HM_stairs_ModSem_2013_14/scenarios/hm_stairs.scenario @@ -1,7 +1,8 @@ { "name" : "hm_stairs", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -278,6 +279,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -1400,6 +1403,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_event.scenario b/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_event.scenario index 9afb5c068028c2a41075b207cd33d252e7f3d456..99b901763e0b7246e2ef628a6fe0a168b5a89daa 100644 --- a/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_event.scenario +++ b/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_event.scenario @@ -1,7 +1,8 @@ { "name" : "chicken_floorfield_ok_GPU_event", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -125,6 +126,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -167,6 +170,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_parallel.scenario b/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_parallel.scenario index 19f8a67c142f487828669e1f9e33fa6331def657..45814ad06e9b40cdcef8e3c5f8c330c226b74793 100644 --- a/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_parallel.scenario +++ b/Scenarios/Demos/OSM-GPU/scenarios/chicken_floorfield_ok_GPU_parallel.scenario @@ -1,7 +1,8 @@ { "name" : "chicken_floorfield_ok_GPU_parallel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -125,6 +126,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -167,6 +170,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd.scenario index 3165b65d6b5c0fd29f332f0d12b5537dd1f19030..c137628dca14280fc13e68e51dde76f1b5f6fef1 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -351,6 +352,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -417,11 +420,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -468,11 +477,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -519,11 +534,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -570,11 +591,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -621,11 +648,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -672,11 +705,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -723,11 +762,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -774,11 +819,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -825,11 +876,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -876,11 +933,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -927,11 +990,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -978,11 +1047,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1029,11 +1104,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1056,6 +1137,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups.scenario index b2baf66d36db90722eba0f7fbda5d0ac551827b4..ff73444b12910bb2db34efaf226555d2f21f69ef 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -351,6 +352,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -417,11 +420,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -468,11 +477,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -519,11 +534,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -570,11 +591,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -621,11 +648,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -672,11 +705,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -723,11 +762,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -774,11 +819,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -825,11 +876,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -876,11 +933,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -927,11 +990,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -978,11 +1047,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1029,11 +1104,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1056,6 +1137,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_fineTargetGrid.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_fineTargetGrid.scenario index 59af3fd470fda8375eb800ce0176847f23f01472..7040ea89001bfabebe4ca76ee4f0e6c11e536e4c 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_fineTargetGrid.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_fineTargetGrid.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_fineTargetGrid", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -283,6 +284,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -349,11 +352,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -400,11 +409,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -451,11 +466,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -502,11 +523,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -553,11 +580,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -604,11 +637,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -655,11 +694,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -706,11 +751,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -757,11 +808,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -808,11 +865,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -859,11 +922,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -910,11 +979,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -961,11 +1036,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -988,6 +1069,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets.scenario index e5077359b6eed3359f448054b9f4f0a897ae2f7e..3f0e8ee5c1c3231402e06dd932ef6163411d6c68 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_largeTargets", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -232,6 +233,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -298,11 +301,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -349,11 +358,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -400,11 +415,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -451,11 +472,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -502,11 +529,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -553,11 +586,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -604,11 +643,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -655,11 +700,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -706,11 +757,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -757,11 +814,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -808,11 +871,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -859,11 +928,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -910,11 +985,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -937,6 +1018,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets_2_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets_2_waiting.scenario index 6e683abce7b5b263e83d27164b97be34ef32259c..df70b55418f921a874487cc2592a35e47a3407cb 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets_2_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_largeTargets_2_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_largeTargets_2_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -232,6 +233,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -298,11 +301,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -349,11 +358,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -400,11 +415,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -427,6 +448,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets.scenario index 75ffb1181c2d7f6464b3dee52a4605c87aff5b75..32862aa6bc8b8bcd41e061857e1871ee897091e1 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_moreTargets", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -334,6 +335,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -400,11 +403,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -451,11 +460,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -502,11 +517,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -553,11 +574,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -604,11 +631,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -655,11 +688,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -706,11 +745,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -757,11 +802,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -808,11 +859,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -859,11 +916,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -910,11 +973,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -961,11 +1030,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1012,11 +1087,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1039,6 +1120,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_1_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_1_waiting.scenario index cd27f71857feb67941d8c4a4fe7813f4c7e53362..e48f9027f768b93aba2d72e442772a8622cdd475 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_1_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_1_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_moreTargets_1_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -334,6 +335,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -400,11 +403,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -427,6 +436,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_3_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_3_waiting.scenario index 3a998078d7c8aaa3eaa9d16ebae80a41102cad9f..9c5a126bc7c4e8787d2c7dd37b2af5fd7f09bc3b 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_3_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_3_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_moreTargets_3_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -334,6 +335,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -400,11 +403,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -451,11 +460,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -502,11 +517,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -529,6 +550,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_6_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_6_waiting.scenario index 6f7acccf2266e42e547d3b871c344777a0f601f0..4201bfc52bf3e1a1048cacaf157dbfdd353bc959 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_6_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/DenseCrowd_withoutGroups_moreTargets_6_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "DenseCrowd_withoutGroups_moreTargets_6_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -343,6 +344,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -409,11 +412,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -460,11 +469,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -511,11 +526,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -562,11 +583,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -613,11 +640,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -664,11 +697,17 @@ "selfCategory" : null, "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -691,6 +730,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_1_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_1_waiting.scenario index 5e07df4b9c6f168873535901d64a9f9901136336..b1c52267211d55e1c7db22cca4a2d1bf198b6ef4 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_1_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_1_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "NarrowCorridor_3_targets_1_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -208,6 +209,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -274,11 +277,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -301,6 +310,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_2_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_2_waiting.scenario index 5c5e402fb79e2ae23364213e90cfe0636241ecbe..2d6d20f7cb4ce0e7f7a313fca163d50906070db7 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_2_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/NarrowCorridor_3_targets_2_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "NarrowCorridor_3_targets_2_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -209,6 +210,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -275,11 +278,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -326,11 +335,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -353,6 +368,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting.scenario index 070acdd262a4690c7e362945e0fd19b7973c4ca1..3c27dd65dd2a793f01e289222fc01228442feab9 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "SimpleCoordinationTask_3_targets_2_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -173,6 +174,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -239,11 +242,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -290,11 +299,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -317,6 +332,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting_with_runner.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting_with_runner.scenario index 6698dd76cb3a89803b0b3ad1b4b779e7d2d8e96e..386e702a9a9e0fef0b46a048db9c68111e0d00ac 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting_with_runner.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/SimpleCoordinationTask_3_targets_2_waiting_with_runner.scenario @@ -1,7 +1,8 @@ { "name" : "SimpleCoordinationTask_3_targets_2_waiting_with_runner", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -173,6 +174,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -239,11 +242,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -290,11 +299,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -317,6 +332,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/ReinforcementLearning/scenarios/test.scenario b/Scenarios/Demos/ReinforcementLearning/scenarios/test.scenario index 4163f529f74e301b645c3513665722eab9b5266e..a5a2f41b3c2e8753d1680653213345124aafc17a 100644 --- a/Scenarios/Demos/ReinforcementLearning/scenarios/test.scenario +++ b/Scenarios/Demos/ReinforcementLearning/scenarios/test.scenario @@ -1,7 +1,8 @@ { "name" : "test", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -164,6 +165,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -230,11 +233,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -281,11 +290,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -332,11 +347,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -383,11 +404,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -434,11 +461,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -485,11 +518,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -536,11 +575,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -587,11 +632,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -638,11 +689,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -689,11 +746,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -740,11 +803,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -791,11 +860,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -842,11 +917,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -893,11 +974,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -944,11 +1031,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -995,11 +1088,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1046,11 +1145,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1097,11 +1202,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1148,11 +1259,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1199,11 +1316,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1250,11 +1373,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1301,11 +1430,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1352,11 +1487,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1403,11 +1544,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1454,11 +1601,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1505,11 +1658,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1551,6 +1710,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/MWE_groups_target_changer.scenario b/Scenarios/Demos/S2UCRE/scenarios/MWE_groups_target_changer.scenario index f7d3cd04f0cf018a4387e05d5493708ae971116b..39952209c139aea4386b028a0d1f71088541b2e8 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/MWE_groups_target_changer.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/MWE_groups_target_changer.scenario @@ -1,7 +1,8 @@ { "name" : "MWE_groups_target_changer", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -189,6 +190,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -250,6 +253,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/bridge_coordinates_kai.scenario b/Scenarios/Demos/S2UCRE/scenarios/bridge_coordinates_kai.scenario index b99fbce001441fac0a06bce514c8483da883a7aa..7fe2c79436edef87b9e283efb60cc53f56109660 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/bridge_coordinates_kai.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/bridge_coordinates_kai.scenario @@ -1,7 +1,8 @@ { "name" : "bridge_coordinates_kai", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -230,6 +231,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 4, "shape" : { @@ -272,6 +275,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_groups.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_groups.scenario index 5738d2fe59e92323ab6d1e9c1ec3c1483187ae5c..d5e5dfafd0cebbebdc60cf6be750d9f2292606d8 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_groups.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_groups.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_dynamic_groups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -361,6 +362,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -412,6 +415,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting.scenario index f1ff5a3c9f7bc0430a1108f83445cc44dd784659..d2608db0b972840d815673c03dcfa9e02e3c8a8a 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_dynamic_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -927,6 +928,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -978,6 +981,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets.scenario index 749867999518b027a3ac178590ddd67f52ce0771..1ea3cd8e8ff8786b48fc5f03e91711d023c469ee 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_dynamic_waiting_less_targets", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -615,6 +616,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -666,6 +669,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets_groups.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets_groups.scenario index dbfebdbfd36327c8e1f8f88f8d359d0d4b58eebe..d2b0b92db3984df21da6245b31ec9b15a2f16f79 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets_groups.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_dynamic_waiting_less_targets_groups.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_dynamic_waiting_less_targets_groups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -615,6 +616,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -666,6 +669,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_groups.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_groups.scenario index a9d5e76cec9022d60254c8bb2a04471a24eba3d3..92c707261ef90884d51b45851786dd89bc0a9d37 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_groups.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_groups.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_static_groups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -361,6 +362,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -445,6 +448,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_simple.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_simple.scenario index 41acd286f1e53176707078e5e68c8144409f6750..446833dffd87d116cd9cf38f7dd8f8fec55f16bb 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_simple.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_simple.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_static_simple", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -245,6 +246,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -296,6 +299,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting.scenario index abef00ac62606da5e313124563c4ddd88637411d..9b518a15788bf6d88c10496a32baef1409264014 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_static_waiting", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -927,6 +928,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -978,6 +981,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets.scenario index 1092f4e97a87f3b88f80aa332a66cead3c49d869..a7db204f20060318b13359c5ca3c93cd92351379 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_static_waiting_less_targets", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -609,6 +610,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -660,6 +663,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets_groups.scenario b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets_groups.scenario index 78b34c003f50b73d028e19bd21af6ca02186616f..cf4a1a1dcb9f6c768c357be7a5e1d9988fa82977 100644 --- a/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets_groups.scenario +++ b/Scenarios/Demos/S2UCRE/scenarios/s2ucre_static_waiting_less_targets_groups.scenario @@ -1,7 +1,8 @@ { "name" : "s2ucre_static_waiting_less_targets_groups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -615,6 +616,8 @@ "probabilityToChangeTarget" : [ 0.05 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 5, "shape" : { @@ -666,6 +669,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/SocialDistancing/SocialDistancingBottleneck/scenarios/bottleneck_2m.scenario b/Scenarios/Demos/SocialDistancing/SocialDistancingBottleneck/scenarios/bottleneck_2m.scenario index 76d3e6ec14709169bc21034b42afa4c46760c3b7..100494e26c05d26bca9f8b2786b46cbe041dee2c 100644 --- a/Scenarios/Demos/SocialDistancing/SocialDistancingBottleneck/scenarios/bottleneck_2m.scenario +++ b/Scenarios/Demos/SocialDistancing/SocialDistancingBottleneck/scenarios/bottleneck_2m.scenario @@ -1,7 +1,8 @@ { "name" : "bottleneck_2m", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -245,6 +246,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -306,6 +309,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior_no_groups.scenario b/Scenarios/Demos/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior_no_groups.scenario index 06dabc3fe23ee700b5180e126721f01d688cc114..705279fb022ca5b9915de135e5fe9b955c3ece85 100644 --- a/Scenarios/Demos/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior_no_groups.scenario +++ b/Scenarios/Demos/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior_no_groups.scenario @@ -1,7 +1,8 @@ { "name" : "VadereSimulation-GroupBehavior_no_groups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -174,6 +175,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -240,6 +243,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source1Place_noGroup.scenario b/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source1Place_noGroup.scenario index b8325634eaea0abe12d0632d3ca8c95f7e85625b..7000531dd7653247157695e8cbff49cbad94fa95 100644 --- a/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source1Place_noGroup.scenario +++ b/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source1Place_noGroup.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_1Source1Place_noGroup", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -128,6 +129,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -170,6 +173,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source2Places_noGroups.scenario b/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source2Places_noGroups.scenario index fc0682b62bd9b63993af3b0a86c837e72eda7c89..0b6349a6d3d38d72b83e37d43b4590d7ae38e9bc 100644 --- a/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source2Places_noGroups.scenario +++ b/Scenarios/Demos/TestOSMGroup/scenarios/group_OSM_1Source2Places_noGroups.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_1Source2Places_noGroups", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -182,6 +183,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -248,6 +251,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_postvis_template_seed_000_100fr.scenario b/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_postvis_template_seed_000_100fr.scenario deleted file mode 100644 index d6ff7e203ae3efabdc1731736587485b833e63ce..0000000000000000000000000000000000000000 --- a/Scenarios/Demos/TransmissionModel/validation/scenarios/hamner-2020-life_postvis_template_seed_000_100fr.scenario +++ /dev/null @@ -1,4516 +0,0 @@ -{ - "name" : "hamner-2020-life_postvis_template_seed_000_100fr", - "description" : "", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", - "processWriters" : { - "files" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "infectionStatus.txt", - "processors" : [ 1 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", - "filename" : "postvis.traj", - "processors" : [ 2, 3, 6 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOverlapOutputFile", - "filename" : "overlaps.csv", - "processors" : [ 4 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", - "filename" : "overlapCount.txt", - "processors" : [ 5 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepIdDataOutputFile", - "filename" : "aerosolCloudShapes.txt", - "processors" : [ 7 ] - } ], - "processors" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 1 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", - "id" : 2 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepTargetIDProcessor", - "id" : 3 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianOverlapProcessor", - "id" : 4 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOverlapsProcessor", - "id" : 5, - "attributesType" : "org.vadere.state.attributes.processor.AttributesNumberOverlapsProcessor", - "attributes" : { - "pedestrianOverlapProcessorId" : 4 - } - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepHealthStatusProcessor", - "id" : 6 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.AerosolCloudShapeProcessor", - "id" : 7, - "attributesType" : "org.vadere.state.attributes.processor.AttributesAerosolCloudShapeProcessor", - "attributes" : { - "sampleEveryNthSimStep" : 100 - } - } ], - "isTimestamped" : false, - "isWriteMetaData" : false - }, - "scenario" : { - "mainModel" : "org.vadere.simulator.models.osm.OptimalStepsModel", - "attributesModel" : { - "org.vadere.state.attributes.models.AttributesOSM" : { - "stepCircleResolution" : 4, - "numberOfCircles" : 1, - "optimizationType" : "NELDER_MEAD", - "varyStepDirection" : true, - "movementType" : "ARBITRARY", - "stepLengthIntercept" : 0.4625, - "stepLengthSlopeSpeed" : 0.2345, - "stepLengthSD" : 0.036, - "movementThreshold" : 0.0, - "minStepLength" : 0.1, - "minimumStepLength" : true, - "maxStepDuration" : 1.7976931348623157E308, - "dynamicStepLength" : true, - "updateType" : "EVENT_DRIVEN", - "seeSmallWalls" : false, - "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", - "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", - "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] - }, - "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { - "pedPotentialIntimateSpaceWidth" : 0.45, - "pedPotentialPersonalSpaceWidth" : 1.2, - "pedPotentialHeight" : 5.0, - "obstPotentialWidth" : 0.8, - "obstPotentialHeight" : 6.0, - "intimateSpaceFactor" : 1.2, - "personalSpacePower" : 1, - "intimateSpacePower" : 1 - }, - "org.vadere.state.attributes.models.AttributesFloorField" : { - "createMethod" : "HIGH_ACCURACY_FAST_MARCHING", - "potentialFieldResolution" : 0.1, - "obstacleGridPenalty" : 0.1, - "targetAttractionStrength" : 1.0, - "cacheType" : "NO_CACHE", - "cacheDir" : "", - "timeCostAttributes" : { - "standardDeviation" : 0.7, - "type" : "UNIT", - "obstacleDensityWeight" : 3.5, - "pedestrianSameTargetDensityWeight" : 3.5, - "pedestrianOtherTargetDensityWeight" : 3.5, - "pedestrianWeight" : 3.5, - "queueWidthLoading" : 1.0, - "pedestrianDynamicWeight" : 6.0, - "loadingType" : "CONSTANT", - "width" : 0.2, - "height" : 1.0 - } - }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { - "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" - }, { - "sourceId" : 1, - "infectionStatus" : "INFECTIOUS" - } ], - "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 172800.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 3.1536E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 - } - }, - "attributesSimulation" : { - "finishTime" : 9300.0, - "simTimeStepLength" : 0.4, - "realTimeSimTimeRatio" : 0.0, - "writeSimulationData" : true, - "visualizationEnabled" : true, - "printFPS" : false, - "digitsPerCoordinate" : 2, - "useFixedSeed" : true, - "fixedSeed" : -2054058476485033808, - "simulationSeed" : 0 - }, - "attributesPsychology" : { - "usePsychologyLayer" : false, - "psychologyLayer" : { - "perception" : "SimplePerceptionModel", - "cognition" : "SimpleCognitionModel" - } - }, - "topography" : { - "attributes" : { - "bounds" : { - "x" : 0.0, - "y" : 0.0, - "width" : 39.05, - "height" : 19.4 - }, - "boundingBoxWidth" : 0.5, - "bounded" : true, - "referenceCoordinateSystem" : null - }, - "obstacles" : [ { - "shape" : { - "x" : 6.15, - "y" : 0.5, - "width" : 32.400000000000006, - "height" : 0.5, - "type" : "RECTANGLE" - }, - "id" : 2001 - }, { - "shape" : { - "x" : 6.15, - "y" : 3.0, - "width" : 0.5, - "height" : 15.899999999999999, - "type" : "RECTANGLE" - }, - "id" : 2002 - }, { - "shape" : { - "x" : 6.65, - "y" : 18.4, - "width" : 31.400000000000002, - "height" : 0.5, - "type" : "RECTANGLE" - }, - "id" : 2003 - }, { - "shape" : { - "x" : 25.75, - "y" : 3.0, - "width" : 0.5, - "height" : 15.399999999999999, - "type" : "RECTANGLE" - }, - "id" : 2004 - }, { - "shape" : { - "x" : 38.05, - "y" : 1.0, - "width" : 0.5, - "height" : 17.9, - "type" : "RECTANGLE" - }, - "id" : 2005 - } ], - "measurementAreas" : [ ], - "stairs" : [ ], - "targets" : [ { - "id" : 1001, - "absorbing" : false, - "shape" : { - "x" : 9.65, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1002, - "absorbing" : false, - "shape" : { - "x" : 10.25, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1003, - "absorbing" : false, - "shape" : { - "x" : 10.85, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1004, - "absorbing" : false, - "shape" : { - "x" : 11.45, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1005, - "absorbing" : false, - "shape" : { - "x" : 12.049999999999999, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1006, - "absorbing" : false, - "shape" : { - "x" : 12.649999999999999, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1007, - "absorbing" : false, - "shape" : { - "x" : 13.249999999999998, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1008, - "absorbing" : false, - "shape" : { - "x" : 13.849999999999998, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1009, - "absorbing" : false, - "shape" : { - "x" : 14.449999999999998, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1010, - "absorbing" : false, - "shape" : { - "x" : 15.049999999999997, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1011, - "absorbing" : false, - "shape" : { - "x" : 9.65, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1012, - "absorbing" : false, - "shape" : { - "x" : 10.25, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1013, - "absorbing" : false, - "shape" : { - "x" : 10.85, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1014, - "absorbing" : false, - "shape" : { - "x" : 11.45, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1015, - "absorbing" : false, - "shape" : { - "x" : 12.049999999999999, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1016, - "absorbing" : false, - "shape" : { - "x" : 12.649999999999999, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1017, - "absorbing" : false, - "shape" : { - "x" : 13.249999999999998, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1018, - "absorbing" : false, - "shape" : { - "x" : 13.849999999999998, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1019, - "absorbing" : false, - "shape" : { - "x" : 14.449999999999998, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1020, - "absorbing" : false, - "shape" : { - "x" : 15.049999999999997, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1021, - "absorbing" : false, - "shape" : { - "x" : 9.65, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1022, - "absorbing" : false, - "shape" : { - "x" : 10.25, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1023, - "absorbing" : false, - "shape" : { - "x" : 10.85, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1024, - "absorbing" : false, - "shape" : { - "x" : 11.45, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1025, - "absorbing" : false, - "shape" : { - "x" : 12.049999999999999, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1026, - "absorbing" : false, - "shape" : { - "x" : 12.649999999999999, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1027, - "absorbing" : false, - "shape" : { - "x" : 13.249999999999998, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1028, - "absorbing" : false, - "shape" : { - "x" : 13.849999999999998, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1029, - "absorbing" : false, - "shape" : { - "x" : 14.449999999999998, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1030, - "absorbing" : false, - "shape" : { - "x" : 15.049999999999997, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1031, - "absorbing" : false, - "shape" : { - "x" : 9.65, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1032, - "absorbing" : false, - "shape" : { - "x" : 10.25, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1033, - "absorbing" : false, - "shape" : { - "x" : 10.85, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1034, - "absorbing" : false, - "shape" : { - "x" : 11.45, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1035, - "absorbing" : false, - "shape" : { - "x" : 12.049999999999999, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1036, - "absorbing" : false, - "shape" : { - "x" : 12.649999999999999, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1037, - "absorbing" : false, - "shape" : { - "x" : 13.249999999999998, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1038, - "absorbing" : false, - "shape" : { - "x" : 13.849999999999998, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1039, - "absorbing" : false, - "shape" : { - "x" : 14.449999999999998, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1040, - "absorbing" : false, - "shape" : { - "x" : 15.049999999999997, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1041, - "absorbing" : false, - "shape" : { - "x" : 9.65, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1042, - "absorbing" : false, - "shape" : { - "x" : 10.25, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1043, - "absorbing" : false, - "shape" : { - "x" : 10.85, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1044, - "absorbing" : false, - "shape" : { - "x" : 11.45, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1045, - "absorbing" : false, - "shape" : { - "x" : 12.049999999999999, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1046, - "absorbing" : false, - "shape" : { - "x" : 12.649999999999999, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1047, - "absorbing" : false, - "shape" : { - "x" : 13.249999999999998, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1048, - "absorbing" : false, - "shape" : { - "x" : 13.849999999999998, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1049, - "absorbing" : false, - "shape" : { - "x" : 14.449999999999998, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1050, - "absorbing" : false, - "shape" : { - "x" : 15.049999999999997, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1051, - "absorbing" : false, - "shape" : { - "x" : 9.65, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1052, - "absorbing" : false, - "shape" : { - "x" : 10.25, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1053, - "absorbing" : false, - "shape" : { - "x" : 10.85, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1054, - "absorbing" : false, - "shape" : { - "x" : 11.45, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1055, - "absorbing" : false, - "shape" : { - "x" : 12.049999999999999, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1056, - "absorbing" : false, - "shape" : { - "x" : 12.649999999999999, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1057, - "absorbing" : false, - "shape" : { - "x" : 13.249999999999998, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1058, - "absorbing" : false, - "shape" : { - "x" : 13.849999999999998, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1059, - "absorbing" : false, - "shape" : { - "x" : 14.449999999999998, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1060, - "absorbing" : false, - "shape" : { - "x" : 15.049999999999997, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1061, - "absorbing" : false, - "shape" : { - "x" : 16.95, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1062, - "absorbing" : false, - "shape" : { - "x" : 17.55, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1063, - "absorbing" : false, - "shape" : { - "x" : 18.150000000000002, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1064, - "absorbing" : false, - "shape" : { - "x" : 18.750000000000004, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1065, - "absorbing" : false, - "shape" : { - "x" : 19.350000000000005, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1066, - "absorbing" : false, - "shape" : { - "x" : 19.950000000000006, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1067, - "absorbing" : false, - "shape" : { - "x" : 20.550000000000008, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1068, - "absorbing" : false, - "shape" : { - "x" : 21.15000000000001, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1069, - "absorbing" : false, - "shape" : { - "x" : 21.75000000000001, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1070, - "absorbing" : false, - "shape" : { - "x" : 22.350000000000012, - "y" : 12.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1071, - "absorbing" : false, - "shape" : { - "x" : 16.95, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1072, - "absorbing" : false, - "shape" : { - "x" : 17.55, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1073, - "absorbing" : false, - "shape" : { - "x" : 18.150000000000002, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1074, - "absorbing" : false, - "shape" : { - "x" : 18.750000000000004, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1075, - "absorbing" : false, - "shape" : { - "x" : 19.350000000000005, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1076, - "absorbing" : false, - "shape" : { - "x" : 19.950000000000006, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1077, - "absorbing" : false, - "shape" : { - "x" : 20.550000000000008, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1078, - "absorbing" : false, - "shape" : { - "x" : 21.15000000000001, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1079, - "absorbing" : false, - "shape" : { - "x" : 21.75000000000001, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1080, - "absorbing" : false, - "shape" : { - "x" : 22.350000000000012, - "y" : 11.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1081, - "absorbing" : false, - "shape" : { - "x" : 16.95, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1082, - "absorbing" : false, - "shape" : { - "x" : 17.55, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1083, - "absorbing" : false, - "shape" : { - "x" : 18.150000000000002, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1084, - "absorbing" : false, - "shape" : { - "x" : 18.750000000000004, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1085, - "absorbing" : false, - "shape" : { - "x" : 19.350000000000005, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1086, - "absorbing" : false, - "shape" : { - "x" : 19.950000000000006, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1087, - "absorbing" : false, - "shape" : { - "x" : 20.550000000000008, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1088, - "absorbing" : false, - "shape" : { - "x" : 21.15000000000001, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1089, - "absorbing" : false, - "shape" : { - "x" : 21.75000000000001, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1090, - "absorbing" : false, - "shape" : { - "x" : 22.350000000000012, - "y" : 10.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1091, - "absorbing" : false, - "shape" : { - "x" : 16.95, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1092, - "absorbing" : false, - "shape" : { - "x" : 17.55, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1093, - "absorbing" : false, - "shape" : { - "x" : 18.150000000000002, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1094, - "absorbing" : false, - "shape" : { - "x" : 18.750000000000004, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1095, - "absorbing" : false, - "shape" : { - "x" : 19.350000000000005, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1096, - "absorbing" : false, - "shape" : { - "x" : 19.950000000000006, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1097, - "absorbing" : false, - "shape" : { - "x" : 20.550000000000008, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1098, - "absorbing" : false, - "shape" : { - "x" : 21.15000000000001, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1099, - "absorbing" : false, - "shape" : { - "x" : 21.75000000000001, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1100, - "absorbing" : false, - "shape" : { - "x" : 22.350000000000012, - "y" : 9.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1101, - "absorbing" : false, - "shape" : { - "x" : 16.95, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1102, - "absorbing" : false, - "shape" : { - "x" : 17.55, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1103, - "absorbing" : false, - "shape" : { - "x" : 18.150000000000002, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1104, - "absorbing" : false, - "shape" : { - "x" : 18.750000000000004, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1105, - "absorbing" : false, - "shape" : { - "x" : 19.350000000000005, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1106, - "absorbing" : false, - "shape" : { - "x" : 19.950000000000006, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1107, - "absorbing" : false, - "shape" : { - "x" : 20.550000000000008, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1108, - "absorbing" : false, - "shape" : { - "x" : 21.15000000000001, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1109, - "absorbing" : false, - "shape" : { - "x" : 21.75000000000001, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1110, - "absorbing" : false, - "shape" : { - "x" : 22.350000000000012, - "y" : 8.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1111, - "absorbing" : false, - "shape" : { - "x" : 16.95, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1112, - "absorbing" : false, - "shape" : { - "x" : 17.55, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1113, - "absorbing" : false, - "shape" : { - "x" : 18.150000000000002, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1114, - "absorbing" : false, - "shape" : { - "x" : 18.750000000000004, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1115, - "absorbing" : false, - "shape" : { - "x" : 19.350000000000005, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1116, - "absorbing" : false, - "shape" : { - "x" : 19.950000000000006, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1117, - "absorbing" : false, - "shape" : { - "x" : 20.550000000000008, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1118, - "absorbing" : false, - "shape" : { - "x" : 21.15000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1119, - "absorbing" : false, - "shape" : { - "x" : 21.75000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1120, - "absorbing" : false, - "shape" : { - "x" : 22.350000000000012, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1121, - "absorbing" : false, - "shape" : { - "x" : 29.25, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1122, - "absorbing" : false, - "shape" : { - "x" : 29.85, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1123, - "absorbing" : false, - "shape" : { - "x" : 30.450000000000003, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1124, - "absorbing" : false, - "shape" : { - "x" : 31.050000000000004, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1125, - "absorbing" : false, - "shape" : { - "x" : 31.650000000000006, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1126, - "absorbing" : false, - "shape" : { - "x" : 32.25000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1127, - "absorbing" : false, - "shape" : { - "x" : 32.85000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1128, - "absorbing" : false, - "shape" : { - "x" : 33.45000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1129, - "absorbing" : false, - "shape" : { - "x" : 34.05000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1130, - "absorbing" : false, - "shape" : { - "x" : 34.65000000000001, - "y" : 7.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1131, - "absorbing" : false, - "shape" : { - "x" : 29.25, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1132, - "absorbing" : false, - "shape" : { - "x" : 29.85, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1133, - "absorbing" : false, - "shape" : { - "x" : 30.450000000000003, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1134, - "absorbing" : false, - "shape" : { - "x" : 31.050000000000004, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1135, - "absorbing" : false, - "shape" : { - "x" : 31.650000000000006, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1136, - "absorbing" : false, - "shape" : { - "x" : 32.25000000000001, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1137, - "absorbing" : false, - "shape" : { - "x" : 32.85000000000001, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1138, - "absorbing" : false, - "shape" : { - "x" : 33.45000000000001, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1139, - "absorbing" : false, - "shape" : { - "x" : 34.05000000000001, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1140, - "absorbing" : false, - "shape" : { - "x" : 34.65000000000001, - "y" : 6.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1141, - "absorbing" : false, - "shape" : { - "x" : 29.25, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1142, - "absorbing" : false, - "shape" : { - "x" : 29.85, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1143, - "absorbing" : false, - "shape" : { - "x" : 30.450000000000003, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1144, - "absorbing" : false, - "shape" : { - "x" : 31.050000000000004, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1145, - "absorbing" : false, - "shape" : { - "x" : 31.650000000000006, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1146, - "absorbing" : false, - "shape" : { - "x" : 32.25000000000001, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1147, - "absorbing" : false, - "shape" : { - "x" : 32.85000000000001, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1148, - "absorbing" : false, - "shape" : { - "x" : 33.45000000000001, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1149, - "absorbing" : false, - "shape" : { - "x" : 34.05000000000001, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1150, - "absorbing" : false, - "shape" : { - "x" : 34.65000000000001, - "y" : 5.0, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1151, - "absorbing" : false, - "shape" : { - "x" : 8.521428571428572, - "y" : 15.9, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1152, - "absorbing" : false, - "shape" : { - "x" : 11.392857142857144, - "y" : 15.9, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1153, - "absorbing" : false, - "shape" : { - "x" : 14.264285714285716, - "y" : 15.9, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1154, - "absorbing" : false, - "shape" : { - "x" : 17.135714285714286, - "y" : 15.9, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1155, - "absorbing" : false, - "shape" : { - "x" : 20.00714285714286, - "y" : 15.9, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1156, - "absorbing" : false, - "shape" : { - "x" : 22.878571428571433, - "y" : 15.9, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1157, - "absorbing" : false, - "shape" : { - "x" : 8.521428571428572, - "y" : 13.028571428571428, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1158, - "absorbing" : false, - "shape" : { - "x" : 11.392857142857144, - "y" : 13.028571428571428, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1159, - "absorbing" : false, - "shape" : { - "x" : 14.264285714285716, - "y" : 13.028571428571428, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1160, - "absorbing" : false, - "shape" : { - "x" : 17.135714285714286, - "y" : 13.028571428571428, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1161, - "absorbing" : false, - "shape" : { - "x" : 20.00714285714286, - "y" : 13.028571428571428, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1162, - "absorbing" : false, - "shape" : { - "x" : 22.878571428571433, - "y" : 13.028571428571428, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 900.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1163, - "absorbing" : false, - "shape" : { - "x" : 6.65, - "y" : 17.4, - "width" : 4.775, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 0.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1164, - "absorbing" : true, - "shape" : { - "x" : 1.0, - "y" : 1.0, - "width" : 0.5, - "height" : 2.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 0.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - } ], - "targetChangers" : [ ], - "absorbingAreas" : [ ], - "aerosolClouds" : [ ], - "droplets" : [ ], - "sources" : [ { - "id" : 1, - "shape" : { - "x" : 1.5, - "y" : 17.49, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1058, 1094, 1152, 1058, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 2, - "shape" : { - "x" : 2.31, - "y" : 17.49, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1104, 1115, 1152, 1104, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 3, - "shape" : { - "x" : 3.12, - "y" : 17.49, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1100, 1147, 1160, 1100, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 4, - "shape" : { - "x" : 3.93, - "y" : 17.49, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1004, 1106, 1153, 1004, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 5, - "shape" : { - "x" : 4.74, - "y" : 17.49, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1112, 1098, 1161, 1112, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 6, - "shape" : { - "x" : 1.5, - "y" : 16.68, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1060, 1128, 1154, 1060, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 7, - "shape" : { - "x" : 2.31, - "y" : 16.68, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1074, 1122, 1155, 1074, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 8, - "shape" : { - "x" : 3.12, - "y" : 16.68, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1023, 1146, 1162, 1023, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 9, - "shape" : { - "x" : 3.93, - "y" : 16.68, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1031, 1126, 1156, 1031, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 10, - "shape" : { - "x" : 4.74, - "y" : 16.68, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1026, 1101, 1154, 1026, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 11, - "shape" : { - "x" : 1.5, - "y" : 15.87, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1048, 1123, 1158, 1048, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 12, - "shape" : { - "x" : 2.31, - "y" : 15.87, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1070, 1141, 1151, 1070, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 13, - "shape" : { - "x" : 3.12, - "y" : 15.87, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1024, 1133, 1152, 1024, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 14, - "shape" : { - "x" : 3.93, - "y" : 15.87, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1068, 1103, 1162, 1068, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 15, - "shape" : { - "x" : 4.74, - "y" : 15.87, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1076, 1143, 1156, 1076, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 16, - "shape" : { - "x" : 1.5, - "y" : 15.059999999999999, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1017, 1114, 1159, 1017, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 17, - "shape" : { - "x" : 2.31, - "y" : 15.059999999999999, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1086, 1135, 1153, 1086, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 18, - "shape" : { - "x" : 3.12, - "y" : 15.059999999999999, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1030, 1144, 1161, 1030, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 19, - "shape" : { - "x" : 3.93, - "y" : 15.059999999999999, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1003, 1119, 1156, 1003, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 20, - "shape" : { - "x" : 4.74, - "y" : 15.059999999999999, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1077, 1120, 1155, 1077, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 21, - "shape" : { - "x" : 1.5, - "y" : 14.249999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1009, 1124, 1157, 1009, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 22, - "shape" : { - "x" : 2.31, - "y" : 14.249999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1108, 1150, 1158, 1108, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 23, - "shape" : { - "x" : 3.12, - "y" : 14.249999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1044, 1125, 1154, 1044, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 24, - "shape" : { - "x" : 3.93, - "y" : 14.249999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1085, 1090, 1152, 1085, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 25, - "shape" : { - "x" : 4.74, - "y" : 14.249999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1099, 1139, 1159, 1099, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 26, - "shape" : { - "x" : 1.5, - "y" : 13.439999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1045, 1138, 1155, 1045, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 27, - "shape" : { - "x" : 2.31, - "y" : 13.439999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1047, 1109, 1151, 1047, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 28, - "shape" : { - "x" : 3.12, - "y" : 13.439999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1116, 1148, 1157, 1116, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 29, - "shape" : { - "x" : 3.93, - "y" : 13.439999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1081, 1142, 1161, 1081, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 30, - "shape" : { - "x" : 4.74, - "y" : 13.439999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1038, 1108, 1157, 1038, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 31, - "shape" : { - "x" : 1.5, - "y" : 12.629999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1011, 1116, 1158, 1011, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 32, - "shape" : { - "x" : 2.31, - "y" : 12.629999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1025, 1092, 1162, 1025, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 33, - "shape" : { - "x" : 3.12, - "y" : 12.629999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1049, 1137, 1151, 1049, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 34, - "shape" : { - "x" : 3.93, - "y" : 12.629999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1051, 1099, 1151, 1051, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 35, - "shape" : { - "x" : 4.74, - "y" : 12.629999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1105, 1096, 1156, 1105, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 36, - "shape" : { - "x" : 1.5, - "y" : 11.819999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1094, 1093, 1158, 1094, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 37, - "shape" : { - "x" : 2.31, - "y" : 11.819999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1014, 1117, 1153, 1014, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 38, - "shape" : { - "x" : 3.12, - "y" : 11.819999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1053, 1136, 1158, 1053, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 39, - "shape" : { - "x" : 3.93, - "y" : 11.819999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1022, 1100, 1160, 1022, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 40, - "shape" : { - "x" : 4.74, - "y" : 11.819999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1113, 1113, 1155, 1113, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 41, - "shape" : { - "x" : 1.5, - "y" : 11.009999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1073, 1104, 1160, 1073, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 42, - "shape" : { - "x" : 2.31, - "y" : 11.009999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1092, 1145, 1162, 1092, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 43, - "shape" : { - "x" : 3.12, - "y" : 11.009999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1036, 1107, 1152, 1036, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 44, - "shape" : { - "x" : 3.93, - "y" : 11.009999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1020, 1091, 1158, 1020, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 45, - "shape" : { - "x" : 4.74, - "y" : 11.009999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1007, 1105, 1156, 1007, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 46, - "shape" : { - "x" : 1.5, - "y" : 10.199999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1103, 1102, 1161, 1103, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 47, - "shape" : { - "x" : 2.31, - "y" : 10.199999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1096, 1111, 1151, 1096, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 48, - "shape" : { - "x" : 3.12, - "y" : 10.199999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1021, 1130, 1157, 1021, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 49, - "shape" : { - "x" : 3.93, - "y" : 10.199999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1119, 1127, 1161, 1119, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 50, - "shape" : { - "x" : 4.74, - "y" : 10.199999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1115, 1149, 1153, 1115, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 51, - "shape" : { - "x" : 1.5, - "y" : 9.389999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1029, 1097, 1155, 1029, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 52, - "shape" : { - "x" : 2.31, - "y" : 9.389999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1035, 1129, 1159, 1035, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 53, - "shape" : { - "x" : 3.12, - "y" : 9.389999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1055, 1110, 1152, 1055, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 54, - "shape" : { - "x" : 3.93, - "y" : 9.389999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1089, 1095, 1159, 1089, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 55, - "shape" : { - "x" : 4.74, - "y" : 9.389999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1095, 1112, 1157, 1095, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 56, - "shape" : { - "x" : 1.5, - "y" : 8.579999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1016, 1140, 1154, 1016, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 57, - "shape" : { - "x" : 2.31, - "y" : 8.579999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1015, 1134, 1162, 1015, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 58, - "shape" : { - "x" : 3.12, - "y" : 8.579999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1110, 1131, 1156, 1110, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 59, - "shape" : { - "x" : 3.93, - "y" : 8.579999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1059, 1132, 1159, 1059, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 60, - "shape" : { - "x" : 4.74, - "y" : 8.579999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1084, 1121, 1154, 1084, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 61, - "shape" : { - "x" : 1.5, - "y" : 7.769999999999994, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1005, 1118, 1162, 1005, 1163, 1164 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - } ], - "dynamicElements" : [ ], - "attributesPedestrian" : { - "radius" : 0.2, - "densityDependentSpeed" : false, - "speedDistributionMean" : 1.34, - "speedDistributionStandardDeviation" : 0.26, - "minimumSpeed" : 0.5, - "maximumSpeed" : 2.2, - "acceleration" : 2.0, - "footstepHistorySize" : 4, - "searchRadius" : 1.0, - "walkingDirectionCalculation" : "BY_TARGET_CENTER", - "walkingDirectionSameIfAngleLessOrEqual" : 45.0 - }, - "teleporter" : null, - "attributesCar" : { - "id" : -1, - "radius" : 0.2, - "densityDependentSpeed" : false, - "speedDistributionMean" : 1.34, - "speedDistributionStandardDeviation" : 0.26, - "minimumSpeed" : 0.5, - "maximumSpeed" : 2.2, - "acceleration" : 2.0, - "footstepHistorySize" : 4, - "searchRadius" : 1.0, - "walkingDirectionCalculation" : "BY_TARGET_CENTER", - "walkingDirectionSameIfAngleLessOrEqual" : 45.0, - "length" : 4.5, - "width" : 1.7, - "direction" : { - "x" : 1.0, - "y" : 0.0 - } - } - }, - "stimulusInfos" : [ ], - "reactionProbabilities" : [ ] - } -} \ No newline at end of file diff --git a/Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_seed_000.scenario b/Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_seed_000.scenario deleted file mode 100644 index 1fde5fcdb7e1a90017a90fd034b97c7aa6f44a7b..0000000000000000000000000000000000000000 --- a/Scenarios/Demos/TransmissionModel/validation/scenarios/miller-2020-life_seed_000.scenario +++ /dev/null @@ -1,4558 +0,0 @@ -{ - "name" : "miller-2020-life_seed_000", - "description" : "Superspreading event during a choir rehearsal following miller-2020-life;\n\nS. L. Miller, W. W. Nazaroff, J. L. Jimenez, A. Boerstra, G. Buonanno, S. J. Dancer, J. Kurnitski, L. C. Marr, L. Morawska, and C. Noakes. Transmission of SARSCoV-2 by inhalation of respiratory aerosol in the skagit valley chorale superspreading event. Indoor Air, 31(2): 314–323, 2020. doi:10.1111/ina.12751.", - "release" : "2.0", - "commithash" : "a45e488c23340a40f8809fb9abb820a7037f1d56", - "processWriters" : { - "files" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "infectionStatus.txt", - "processors" : [ 1 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", - "filename" : "pathogenLoad.txt", - "processors" : [ 2 ] - } ], - "processors" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 1 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianPathogenLoadMaxProcessor", - "id" : 2 - } ], - "isTimestamped" : false, - "isWriteMetaData" : false - }, - "scenario" : { - "mainModel" : "org.vadere.simulator.models.osm.OptimalStepsModel", - "attributesModel" : { - "org.vadere.state.attributes.models.AttributesOSM" : { - "stepCircleResolution" : 4, - "numberOfCircles" : 1, - "optimizationType" : "NELDER_MEAD", - "varyStepDirection" : true, - "movementType" : "ARBITRARY", - "stepLengthIntercept" : 0.4625, - "stepLengthSlopeSpeed" : 0.2345, - "stepLengthSD" : 0.036, - "movementThreshold" : 0.0, - "minStepLength" : 0.1, - "minimumStepLength" : true, - "maxStepDuration" : 1.7976931348623157E308, - "dynamicStepLength" : true, - "updateType" : "EVENT_DRIVEN", - "seeSmallWalls" : false, - "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", - "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", - "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] - }, - "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { - "pedPotentialIntimateSpaceWidth" : 0.45, - "pedPotentialPersonalSpaceWidth" : 1.2, - "pedPotentialHeight" : 5.0, - "obstPotentialWidth" : 0.8, - "obstPotentialHeight" : 6.0, - "intimateSpaceFactor" : 1.2, - "personalSpacePower" : 1, - "intimateSpacePower" : 1 - }, - "org.vadere.state.attributes.models.AttributesFloorField" : { - "createMethod" : "HIGH_ACCURACY_FAST_MARCHING", - "potentialFieldResolution" : 0.1, - "obstacleGridPenalty" : 0.1, - "targetAttractionStrength" : 1.0, - "cacheType" : "NO_CACHE", - "cacheDir" : "", - "timeCostAttributes" : { - "standardDeviation" : 0.7, - "type" : "UNIT", - "obstacleDensityWeight" : 3.5, - "pedestrianSameTargetDensityWeight" : 3.5, - "pedestrianOtherTargetDensityWeight" : 3.5, - "pedestrianWeight" : 3.5, - "queueWidthLoading" : 1.0, - "pedestrianDynamicWeight" : 6.0, - "loadingType" : "CONSTANT", - "width" : 0.2, - "height" : 1.0 - } - }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { - "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" - }, { - "sourceId" : 1, - "infectionStatus" : "INFECTIOUS" - } ], - "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 4.0, - "pedestrianPathogenAbsorptionRate" : 5.0E-4, - "pedestrianMinInfectiousDose" : 3200.0, - "exposedPeriod" : 172800.0, - "infectiousPeriod" : 1209600.0, - "recoveredPeriod" : 3.1536E7, - "aerosolCloudHalfLife" : 600.0, - "aerosolCloudInitialRadius" : 1.5, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 - } - }, - "attributesSimulation" : { - "finishTime" : 9300.0, - "simTimeStepLength" : 0.4, - "realTimeSimTimeRatio" : 0.0, - "writeSimulationData" : true, - "visualizationEnabled" : true, - "printFPS" : false, - "digitsPerCoordinate" : 2, - "useFixedSeed" : true, - "fixedSeed" : -2054058476485033808, - "simulationSeed" : 0 - }, - "attributesPsychology" : { - "usePsychologyLayer" : false, - "psychologyLayer" : { - "perception" : "SimplePerceptionModel", - "cognition" : "SimpleCognitionModel" - } - }, - "topography" : { - "attributes" : { - "bounds" : { - "x" : 0.0, - "y" : 0.0, - "width" : 36.41, - "height" : 12.899999999999999 - }, - "boundingBoxWidth" : 0.5, - "bounded" : true, - "referenceCoordinateSystem" : null - }, - "obstacles" : [ { - "shape" : { - "x" : 6.96, - "y" : 0.5, - "width" : 28.95, - "height" : 0.5, - "type" : "RECTANGLE" - }, - "id" : 2001 - }, { - "shape" : { - "x" : 6.96, - "y" : 3.0, - "width" : 0.5, - "height" : 9.399999999999999, - "type" : "RECTANGLE" - }, - "id" : 2002 - }, { - "shape" : { - "x" : 7.46, - "y" : 11.899999999999999, - "width" : 27.95, - "height" : 0.5, - "type" : "RECTANGLE" - }, - "id" : 2003 - }, { - "shape" : { - "x" : 25.36, - "y" : 3.0, - "width" : 0.5, - "height" : 6.899999999999999, - "type" : "RECTANGLE" - }, - "id" : 2004 - }, { - "shape" : { - "x" : 35.41, - "y" : 1.0, - "width" : 0.5, - "height" : 11.399999999999999, - "type" : "RECTANGLE" - }, - "id" : 2005 - }, { - "shape" : { - "x" : 25.86, - "y" : 7.7, - "width" : 9.55, - "height" : 0.5, - "type" : "RECTANGLE" - }, - "id" : 2006 - } ], - "measurementAreas" : [ ], - "stairs" : [ ], - "targets" : [ { - "id" : 1001, - "absorbing" : false, - "shape" : { - "x" : 8.66, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1002, - "absorbing" : false, - "shape" : { - "x" : 9.41, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1003, - "absorbing" : false, - "shape" : { - "x" : 10.16, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1004, - "absorbing" : false, - "shape" : { - "x" : 10.91, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1005, - "absorbing" : false, - "shape" : { - "x" : 11.66, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1006, - "absorbing" : false, - "shape" : { - "x" : 12.41, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1007, - "absorbing" : false, - "shape" : { - "x" : 13.16, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1008, - "absorbing" : false, - "shape" : { - "x" : 13.91, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1009, - "absorbing" : false, - "shape" : { - "x" : 14.66, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1010, - "absorbing" : false, - "shape" : { - "x" : 15.41, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1011, - "absorbing" : false, - "shape" : { - "x" : 8.66, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1012, - "absorbing" : false, - "shape" : { - "x" : 9.41, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1013, - "absorbing" : false, - "shape" : { - "x" : 10.16, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1014, - "absorbing" : false, - "shape" : { - "x" : 10.91, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1015, - "absorbing" : false, - "shape" : { - "x" : 11.66, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1016, - "absorbing" : false, - "shape" : { - "x" : 12.41, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1017, - "absorbing" : false, - "shape" : { - "x" : 13.16, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1018, - "absorbing" : false, - "shape" : { - "x" : 13.91, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1019, - "absorbing" : false, - "shape" : { - "x" : 14.66, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1020, - "absorbing" : false, - "shape" : { - "x" : 15.41, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1021, - "absorbing" : false, - "shape" : { - "x" : 8.66, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1022, - "absorbing" : false, - "shape" : { - "x" : 9.41, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1023, - "absorbing" : false, - "shape" : { - "x" : 10.16, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1024, - "absorbing" : false, - "shape" : { - "x" : 10.91, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1025, - "absorbing" : false, - "shape" : { - "x" : 11.66, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1026, - "absorbing" : false, - "shape" : { - "x" : 12.41, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1027, - "absorbing" : false, - "shape" : { - "x" : 13.16, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1028, - "absorbing" : false, - "shape" : { - "x" : 13.91, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1029, - "absorbing" : false, - "shape" : { - "x" : 14.66, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1030, - "absorbing" : false, - "shape" : { - "x" : 15.41, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1031, - "absorbing" : false, - "shape" : { - "x" : 8.66, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1032, - "absorbing" : false, - "shape" : { - "x" : 9.41, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1033, - "absorbing" : false, - "shape" : { - "x" : 10.16, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1034, - "absorbing" : false, - "shape" : { - "x" : 10.91, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1035, - "absorbing" : false, - "shape" : { - "x" : 11.66, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1036, - "absorbing" : false, - "shape" : { - "x" : 12.41, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1037, - "absorbing" : false, - "shape" : { - "x" : 13.16, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1038, - "absorbing" : false, - "shape" : { - "x" : 13.91, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1039, - "absorbing" : false, - "shape" : { - "x" : 14.66, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1040, - "absorbing" : false, - "shape" : { - "x" : 15.41, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1041, - "absorbing" : false, - "shape" : { - "x" : 8.66, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1042, - "absorbing" : false, - "shape" : { - "x" : 9.41, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1043, - "absorbing" : false, - "shape" : { - "x" : 10.16, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1044, - "absorbing" : false, - "shape" : { - "x" : 10.91, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1045, - "absorbing" : false, - "shape" : { - "x" : 11.66, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1046, - "absorbing" : false, - "shape" : { - "x" : 12.41, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1047, - "absorbing" : false, - "shape" : { - "x" : 13.16, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1048, - "absorbing" : false, - "shape" : { - "x" : 13.91, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1049, - "absorbing" : false, - "shape" : { - "x" : 14.66, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1050, - "absorbing" : false, - "shape" : { - "x" : 15.41, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1051, - "absorbing" : false, - "shape" : { - "x" : 8.66, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1052, - "absorbing" : false, - "shape" : { - "x" : 9.41, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1053, - "absorbing" : false, - "shape" : { - "x" : 10.16, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1054, - "absorbing" : false, - "shape" : { - "x" : 10.91, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1055, - "absorbing" : false, - "shape" : { - "x" : 11.66, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1056, - "absorbing" : false, - "shape" : { - "x" : 12.41, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1057, - "absorbing" : false, - "shape" : { - "x" : 13.16, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1058, - "absorbing" : false, - "shape" : { - "x" : 13.91, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1059, - "absorbing" : false, - "shape" : { - "x" : 14.66, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1060, - "absorbing" : false, - "shape" : { - "x" : 15.41, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1061, - "absorbing" : false, - "shape" : { - "x" : 17.01, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1062, - "absorbing" : false, - "shape" : { - "x" : 17.76, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1063, - "absorbing" : false, - "shape" : { - "x" : 18.51, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1064, - "absorbing" : false, - "shape" : { - "x" : 19.26, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1065, - "absorbing" : false, - "shape" : { - "x" : 20.01, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1066, - "absorbing" : false, - "shape" : { - "x" : 20.76, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1067, - "absorbing" : false, - "shape" : { - "x" : 21.51, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1068, - "absorbing" : false, - "shape" : { - "x" : 22.26, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1069, - "absorbing" : false, - "shape" : { - "x" : 23.01, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1070, - "absorbing" : false, - "shape" : { - "x" : 23.76, - "y" : 10.499999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1071, - "absorbing" : false, - "shape" : { - "x" : 17.01, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1072, - "absorbing" : false, - "shape" : { - "x" : 17.76, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1073, - "absorbing" : false, - "shape" : { - "x" : 18.51, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1074, - "absorbing" : false, - "shape" : { - "x" : 19.26, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1075, - "absorbing" : false, - "shape" : { - "x" : 20.01, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1076, - "absorbing" : false, - "shape" : { - "x" : 20.76, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1077, - "absorbing" : false, - "shape" : { - "x" : 21.51, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1078, - "absorbing" : false, - "shape" : { - "x" : 22.26, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1079, - "absorbing" : false, - "shape" : { - "x" : 23.01, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1080, - "absorbing" : false, - "shape" : { - "x" : 23.76, - "y" : 9.099999999999998, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1081, - "absorbing" : false, - "shape" : { - "x" : 17.01, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1082, - "absorbing" : false, - "shape" : { - "x" : 17.76, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1083, - "absorbing" : false, - "shape" : { - "x" : 18.51, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1084, - "absorbing" : false, - "shape" : { - "x" : 19.26, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1085, - "absorbing" : false, - "shape" : { - "x" : 20.01, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1086, - "absorbing" : false, - "shape" : { - "x" : 20.76, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1087, - "absorbing" : false, - "shape" : { - "x" : 21.51, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1088, - "absorbing" : false, - "shape" : { - "x" : 22.26, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1089, - "absorbing" : false, - "shape" : { - "x" : 23.01, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1090, - "absorbing" : false, - "shape" : { - "x" : 23.76, - "y" : 7.6999999999999975, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1091, - "absorbing" : false, - "shape" : { - "x" : 17.01, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1092, - "absorbing" : false, - "shape" : { - "x" : 17.76, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1093, - "absorbing" : false, - "shape" : { - "x" : 18.51, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1094, - "absorbing" : false, - "shape" : { - "x" : 19.26, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1095, - "absorbing" : false, - "shape" : { - "x" : 20.01, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1096, - "absorbing" : false, - "shape" : { - "x" : 20.76, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1097, - "absorbing" : false, - "shape" : { - "x" : 21.51, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1098, - "absorbing" : false, - "shape" : { - "x" : 22.26, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1099, - "absorbing" : false, - "shape" : { - "x" : 23.01, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1100, - "absorbing" : false, - "shape" : { - "x" : 23.76, - "y" : 6.299999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1101, - "absorbing" : false, - "shape" : { - "x" : 17.01, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1102, - "absorbing" : false, - "shape" : { - "x" : 17.76, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1103, - "absorbing" : false, - "shape" : { - "x" : 18.51, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1104, - "absorbing" : false, - "shape" : { - "x" : 19.26, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1105, - "absorbing" : false, - "shape" : { - "x" : 20.01, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1106, - "absorbing" : false, - "shape" : { - "x" : 20.76, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1107, - "absorbing" : false, - "shape" : { - "x" : 21.51, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1108, - "absorbing" : false, - "shape" : { - "x" : 22.26, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1109, - "absorbing" : false, - "shape" : { - "x" : 23.01, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1110, - "absorbing" : false, - "shape" : { - "x" : 23.76, - "y" : 4.899999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1111, - "absorbing" : false, - "shape" : { - "x" : 17.01, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1112, - "absorbing" : false, - "shape" : { - "x" : 17.76, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1113, - "absorbing" : false, - "shape" : { - "x" : 18.51, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1114, - "absorbing" : false, - "shape" : { - "x" : 19.26, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1115, - "absorbing" : false, - "shape" : { - "x" : 20.01, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1116, - "absorbing" : false, - "shape" : { - "x" : 20.76, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1117, - "absorbing" : false, - "shape" : { - "x" : 21.51, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1118, - "absorbing" : false, - "shape" : { - "x" : 22.26, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1119, - "absorbing" : false, - "shape" : { - "x" : 23.01, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1120, - "absorbing" : false, - "shape" : { - "x" : 23.76, - "y" : 3.499999999999997, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1121, - "absorbing" : false, - "shape" : { - "x" : 27.060000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1122, - "absorbing" : false, - "shape" : { - "x" : 27.810000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1123, - "absorbing" : false, - "shape" : { - "x" : 28.560000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1124, - "absorbing" : false, - "shape" : { - "x" : 29.310000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1125, - "absorbing" : false, - "shape" : { - "x" : 30.060000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1126, - "absorbing" : false, - "shape" : { - "x" : 30.810000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1127, - "absorbing" : false, - "shape" : { - "x" : 31.560000000000002, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1128, - "absorbing" : false, - "shape" : { - "x" : 32.31, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1129, - "absorbing" : false, - "shape" : { - "x" : 33.06, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1130, - "absorbing" : false, - "shape" : { - "x" : 33.81, - "y" : 6.299999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1131, - "absorbing" : false, - "shape" : { - "x" : 27.060000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1132, - "absorbing" : false, - "shape" : { - "x" : 27.810000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1133, - "absorbing" : false, - "shape" : { - "x" : 28.560000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1134, - "absorbing" : false, - "shape" : { - "x" : 29.310000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1135, - "absorbing" : false, - "shape" : { - "x" : 30.060000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1136, - "absorbing" : false, - "shape" : { - "x" : 30.810000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1137, - "absorbing" : false, - "shape" : { - "x" : 31.560000000000002, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1138, - "absorbing" : false, - "shape" : { - "x" : 32.31, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1139, - "absorbing" : false, - "shape" : { - "x" : 33.06, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1140, - "absorbing" : false, - "shape" : { - "x" : 33.81, - "y" : 4.899999999999999, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1141, - "absorbing" : false, - "shape" : { - "x" : 27.060000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1142, - "absorbing" : false, - "shape" : { - "x" : 27.810000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1143, - "absorbing" : false, - "shape" : { - "x" : 28.560000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1144, - "absorbing" : false, - "shape" : { - "x" : 29.310000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1145, - "absorbing" : false, - "shape" : { - "x" : 30.060000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1146, - "absorbing" : false, - "shape" : { - "x" : 30.810000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1147, - "absorbing" : false, - "shape" : { - "x" : 31.560000000000002, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1148, - "absorbing" : false, - "shape" : { - "x" : 32.31, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1149, - "absorbing" : false, - "shape" : { - "x" : 33.06, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1150, - "absorbing" : false, - "shape" : { - "x" : 33.81, - "y" : 3.4999999999999987, - "width" : 0.4, - "height" : 0.4, - "type" : "RECTANGLE" - }, - "waitingTime" : 2700.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1151, - "absorbing" : false, - "shape" : { - "x" : 9.61, - "y" : 9.499999999999996, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1152, - "absorbing" : false, - "shape" : { - "x" : 12.76, - "y" : 9.499999999999996, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1153, - "absorbing" : false, - "shape" : { - "x" : 15.91, - "y" : 9.499999999999996, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1154, - "absorbing" : false, - "shape" : { - "x" : 19.06, - "y" : 9.499999999999996, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1155, - "absorbing" : false, - "shape" : { - "x" : 22.209999999999997, - "y" : 9.499999999999996, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1156, - "absorbing" : false, - "shape" : { - "x" : 9.61, - "y" : 6.699999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1157, - "absorbing" : false, - "shape" : { - "x" : 12.76, - "y" : 6.699999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1158, - "absorbing" : false, - "shape" : { - "x" : 15.91, - "y" : 6.699999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1159, - "absorbing" : false, - "shape" : { - "x" : 19.06, - "y" : 6.699999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1160, - "absorbing" : false, - "shape" : { - "x" : 22.209999999999997, - "y" : 6.699999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1161, - "absorbing" : false, - "shape" : { - "x" : 9.61, - "y" : 3.899999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1162, - "absorbing" : false, - "shape" : { - "x" : 12.76, - "y" : 3.899999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1163, - "absorbing" : false, - "shape" : { - "x" : 15.91, - "y" : 3.899999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1164, - "absorbing" : false, - "shape" : { - "x" : 19.06, - "y" : 3.899999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1165, - "absorbing" : false, - "shape" : { - "x" : 22.209999999999997, - "y" : 3.899999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1166, - "absorbing" : false, - "shape" : { - "x" : 9.61, - "y" : 1.099999999999997, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1167, - "absorbing" : false, - "shape" : { - "x" : 30.134999999999998, - "y" : 9.499999999999996, - "width" : 1.0, - "height" : 1.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 600.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - }, { - "id" : 1168, - "absorbing" : true, - "shape" : { - "x" : 6.96, - "y" : 1.0, - "width" : 0.5, - "height" : 2.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 0.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - } ], - "targetChangers" : [ ], - "absorbingAreas" : [ ], - "aerosolClouds" : [ ], - "droplets" : [ ], - "sources" : [ { - "id" : 1, - "shape" : { - "x" : 1.5, - "y" : 10.989999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1058, 1103, 1167, 1058, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 2, - "shape" : { - "x" : 2.31, - "y" : 10.989999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1104, 1138, 1166, 1104, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 3, - "shape" : { - "x" : 3.12, - "y" : 10.989999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1100, 1094, 1155, 1100, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 4, - "shape" : { - "x" : 3.93, - "y" : 10.989999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1004, 1076, 1165, 1004, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 5, - "shape" : { - "x" : 4.74, - "y" : 10.989999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1112, 1116, 1153, 1112, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 6, - "shape" : { - "x" : 5.550000000000001, - "y" : 10.989999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1060, 1078, 1157, 1060, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 7, - "shape" : { - "x" : 1.5, - "y" : 10.179999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1074, 1080, 1154, 1074, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 8, - "shape" : { - "x" : 2.31, - "y" : 10.179999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1023, 1131, 1152, 1023, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 9, - "shape" : { - "x" : 3.12, - "y" : 10.179999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1031, 1148, 1167, 1031, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 10, - "shape" : { - "x" : 3.93, - "y" : 10.179999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1026, 1061, 1151, 1026, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 11, - "shape" : { - "x" : 4.74, - "y" : 10.179999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1048, 1126, 1162, 1048, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 12, - "shape" : { - "x" : 5.550000000000001, - "y" : 10.179999999999998, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1070, 1125, 1155, 1070, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 13, - "shape" : { - "x" : 1.5, - "y" : 9.369999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1024, 1087, 1167, 1024, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 14, - "shape" : { - "x" : 2.31, - "y" : 9.369999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1068, 1090, 1160, 1068, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 15, - "shape" : { - "x" : 3.12, - "y" : 9.369999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1076, 1132, 1167, 1076, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 16, - "shape" : { - "x" : 3.93, - "y" : 9.369999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1017, 1146, 1163, 1017, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 17, - "shape" : { - "x" : 4.74, - "y" : 9.369999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1086, 1069, 1165, 1086, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 18, - "shape" : { - "x" : 5.550000000000001, - "y" : 9.369999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1030, 1093, 1152, 1030, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 19, - "shape" : { - "x" : 1.5, - "y" : 8.559999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1003, 1141, 1158, 1003, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 20, - "shape" : { - "x" : 2.31, - "y" : 8.559999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1077, 1096, 1152, 1077, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 21, - "shape" : { - "x" : 3.12, - "y" : 8.559999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1009, 1083, 1161, 1009, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 22, - "shape" : { - "x" : 3.93, - "y" : 8.559999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1108, 1134, 1157, 1108, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 23, - "shape" : { - "x" : 4.74, - "y" : 8.559999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1044, 1137, 1156, 1044, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 24, - "shape" : { - "x" : 5.550000000000001, - "y" : 8.559999999999997, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1085, 1120, 1164, 1085, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 25, - "shape" : { - "x" : 1.5, - "y" : 7.7499999999999964, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1099, 1107, 1159, 1099, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 26, - "shape" : { - "x" : 2.31, - "y" : 7.7499999999999964, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1045, 1110, 1155, 1045, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 27, - "shape" : { - "x" : 3.12, - "y" : 7.7499999999999964, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1047, 1100, 1164, 1047, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 28, - "shape" : { - "x" : 3.93, - "y" : 7.7499999999999964, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1116, 1070, 1158, 1116, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 29, - "shape" : { - "x" : 4.74, - "y" : 7.7499999999999964, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1081, 1081, 1163, 1081, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 30, - "shape" : { - "x" : 5.550000000000001, - "y" : 7.7499999999999964, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1038, 1098, 1166, 1038, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 31, - "shape" : { - "x" : 1.5, - "y" : 6.939999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1011, 1130, 1157, 1011, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 32, - "shape" : { - "x" : 2.31, - "y" : 6.939999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1025, 1117, 1156, 1025, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 33, - "shape" : { - "x" : 3.12, - "y" : 6.939999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1049, 1077, 1158, 1049, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 34, - "shape" : { - "x" : 3.93, - "y" : 6.939999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1051, 1067, 1153, 1051, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 35, - "shape" : { - "x" : 4.74, - "y" : 6.939999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1105, 1088, 1154, 1105, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 36, - "shape" : { - "x" : 5.550000000000001, - "y" : 6.939999999999996, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1094, 1144, 1167, 1094, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 37, - "shape" : { - "x" : 1.5, - "y" : 6.1299999999999955, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1014, 1064, 1166, 1014, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 38, - "shape" : { - "x" : 2.31, - "y" : 6.1299999999999955, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1053, 1074, 1159, 1053, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 39, - "shape" : { - "x" : 3.12, - "y" : 6.1299999999999955, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1022, 1091, 1152, 1022, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 40, - "shape" : { - "x" : 3.93, - "y" : 6.1299999999999955, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1113, 1105, 1153, 1113, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 41, - "shape" : { - "x" : 4.74, - "y" : 6.1299999999999955, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1073, 1072, 1153, 1073, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 42, - "shape" : { - "x" : 5.550000000000001, - "y" : 6.1299999999999955, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1092, 1112, 1156, 1092, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 43, - "shape" : { - "x" : 1.5, - "y" : 5.319999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1036, 1129, 1156, 1036, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 44, - "shape" : { - "x" : 2.31, - "y" : 5.319999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1020, 1111, 1164, 1020, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 45, - "shape" : { - "x" : 3.12, - "y" : 5.319999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1007, 1140, 1167, 1007, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 46, - "shape" : { - "x" : 3.93, - "y" : 5.319999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1103, 1109, 1163, 1103, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 47, - "shape" : { - "x" : 4.74, - "y" : 5.319999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1096, 1084, 1154, 1096, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 48, - "shape" : { - "x" : 5.550000000000001, - "y" : 5.319999999999995, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1021, 1149, 1160, 1021, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 49, - "shape" : { - "x" : 1.5, - "y" : 4.5099999999999945, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1119, 1086, 1151, 1119, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 50, - "shape" : { - "x" : 2.31, - "y" : 4.5099999999999945, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1115, 1114, 1161, 1115, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 51, - "shape" : { - "x" : 3.12, - "y" : 4.5099999999999945, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1029, 1122, 1159, 1029, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 52, - "shape" : { - "x" : 3.93, - "y" : 4.5099999999999945, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1035, 1150, 1157, 1035, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 53, - "shape" : { - "x" : 4.74, - "y" : 4.5099999999999945, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1055, 1127, 1160, 1055, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 54, - "shape" : { - "x" : 5.550000000000001, - "y" : 4.5099999999999945, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1089, 1121, 1154, 1089, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 55, - "shape" : { - "x" : 1.5, - "y" : 3.6999999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1095, 1128, 1151, 1095, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 56, - "shape" : { - "x" : 2.31, - "y" : 3.6999999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1016, 1062, 1155, 1016, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 57, - "shape" : { - "x" : 3.12, - "y" : 3.6999999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1015, 1065, 1161, 1015, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 58, - "shape" : { - "x" : 3.93, - "y" : 3.6999999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1110, 1104, 1162, 1110, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 59, - "shape" : { - "x" : 4.74, - "y" : 3.6999999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1059, 1099, 1165, 1059, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 60, - "shape" : { - "x" : 5.550000000000001, - "y" : 3.6999999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1084, 1135, 1151, 1084, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 61, - "shape" : { - "x" : 1.5, - "y" : 2.8899999999999944, - "width" : 0.41, - "height" : 0.41, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : false, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1005, 1119, 1162, 1005, 1168 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - } ], - "dynamicElements" : [ ], - "attributesPedestrian" : { - "radius" : 0.2, - "densityDependentSpeed" : false, - "speedDistributionMean" : 1.34, - "speedDistributionStandardDeviation" : 0.26, - "minimumSpeed" : 0.5, - "maximumSpeed" : 2.2, - "acceleration" : 2.0, - "footstepHistorySize" : 4, - "searchRadius" : 1.0, - "walkingDirectionCalculation" : "BY_TARGET_CENTER", - "walkingDirectionSameIfAngleLessOrEqual" : 45.0 - }, - "teleporter" : null, - "attributesCar" : { - "id" : -1, - "radius" : 0.2, - "densityDependentSpeed" : false, - "speedDistributionMean" : 1.34, - "speedDistributionStandardDeviation" : 0.26, - "minimumSpeed" : 0.5, - "maximumSpeed" : 2.2, - "acceleration" : 2.0, - "footstepHistorySize" : 4, - "searchRadius" : 1.0, - "walkingDirectionCalculation" : "BY_TARGET_CENTER", - "walkingDirectionSameIfAngleLessOrEqual" : 45.0, - "length" : 4.5, - "width" : 1.7, - "direction" : { - "x" : 1.0, - "y" : 0.0 - } - } - }, - "stimulusInfos" : [ ], - "reactionProbabilities" : [ ] - } -} \ No newline at end of file diff --git a/Scenarios/Demos/bus_station/scenarios/bus_station.scenario b/Scenarios/Demos/bus_station/scenarios/bus_station.scenario index 116d16b856cb19d435c36e31ed0a12a00fc04a1d..f41825df6dc5195770d37de9b1070ac5bd19f2dd 100644 --- a/Scenarios/Demos/bus_station/scenarios/bus_station.scenario +++ b/Scenarios/Demos/bus_station/scenarios/bus_station.scenario @@ -1,7 +1,8 @@ { "name" : "bus_station", "description" : "Scenario used for TGF19 contribution", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", @@ -287,6 +288,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -329,6 +332,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/mf_base.scenario b/Scenarios/Demos/roVer/scenarios/mf_base.scenario index 24e98ef2d70f724bdc05ba56af763fd6cadce505..5c408650b08aabb28ba6ee9467cf8474a8fcc2d8 100644 --- a/Scenarios/Demos/roVer/scenarios/mf_base.scenario +++ b/Scenarios/Demos/roVer/scenarios/mf_base.scenario @@ -1,7 +1,8 @@ { "name" : "mf_base", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -3174,6 +3175,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1001, "shape" : { @@ -3621,6 +3624,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/mf_detailed.scenario b/Scenarios/Demos/roVer/scenarios/mf_detailed.scenario index 516c4673d4d28b4ef631eccda0239dd13e06675b..ef9a42727976824ec1c5d130cb967a809f199179 100644 --- a/Scenarios/Demos/roVer/scenarios/mf_detailed.scenario +++ b/Scenarios/Demos/roVer/scenarios/mf_detailed.scenario @@ -1,7 +1,8 @@ { "name" : "mf_detailed", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -6504,6 +6505,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 22, "shape" : { @@ -6546,6 +6549,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/mf_underground.scenario b/Scenarios/Demos/roVer/scenarios/mf_underground.scenario index 482509e3789312d451e0982bb13c1c876ae7bdaa..85ceca515609535bfd14bff3418a7755c2725aef 100644 --- a/Scenarios/Demos/roVer/scenarios/mf_underground.scenario +++ b/Scenarios/Demos/roVer/scenarios/mf_underground.scenario @@ -1,7 +1,8 @@ { "name" : "mf_underground", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -937,6 +938,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -1267,6 +1270,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/roVerTest001.scenario b/Scenarios/Demos/roVer/scenarios/roVerTest001.scenario index aef776e16cfa56328328e8c35c4d1bb69f402a0d..93064bfd81a69789200364b5d25d9195da6bbafb 100644 --- a/Scenarios/Demos/roVer/scenarios/roVerTest001.scenario +++ b/Scenarios/Demos/roVer/scenarios/roVerTest001.scenario @@ -1,7 +1,8 @@ { "name" : "roVerTest001", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -224,6 +225,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -290,11 +293,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -341,11 +350,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -392,11 +407,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -443,11 +464,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -494,11 +521,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -545,11 +578,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -596,11 +635,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -647,11 +692,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -698,11 +749,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -749,11 +806,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -800,11 +863,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -851,11 +920,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -902,11 +977,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -953,11 +1034,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1004,11 +1091,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1055,11 +1148,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1106,11 +1205,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1157,11 +1262,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1208,11 +1319,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1259,11 +1376,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1310,11 +1433,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1361,11 +1490,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1412,11 +1547,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1463,11 +1604,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1514,11 +1661,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1565,11 +1718,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1616,11 +1775,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1667,11 +1832,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1718,11 +1889,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1769,11 +1946,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1820,11 +2003,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1871,11 +2060,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1922,11 +2117,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1973,11 +2174,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2024,11 +2231,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2075,11 +2288,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2126,11 +2345,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2177,11 +2402,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2228,11 +2459,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2279,11 +2516,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2330,11 +2573,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2381,11 +2630,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2432,11 +2687,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2483,11 +2744,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2534,11 +2801,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2585,11 +2858,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2636,11 +2915,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2687,11 +2972,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2738,11 +3029,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2789,11 +3086,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2840,11 +3143,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2891,11 +3200,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2942,11 +3257,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -2993,11 +3314,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3044,11 +3371,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3095,11 +3428,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3146,11 +3485,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3197,11 +3542,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3248,11 +3599,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3299,11 +3656,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3350,11 +3713,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3401,11 +3770,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3452,11 +3827,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3503,11 +3884,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3554,11 +3941,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3605,11 +3998,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3656,11 +4055,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3707,11 +4112,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3758,11 +4169,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3809,11 +4226,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3860,11 +4283,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3911,11 +4340,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -3962,11 +4397,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4013,11 +4454,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4064,11 +4511,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4115,11 +4568,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4166,11 +4625,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4217,11 +4682,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4268,11 +4739,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4319,11 +4796,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4370,11 +4853,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4421,11 +4910,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4472,11 +4967,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4523,11 +5024,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4574,11 +5081,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4625,11 +5138,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4676,11 +5195,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4727,11 +5252,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4778,11 +5309,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4829,11 +5366,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4880,11 +5423,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4931,11 +5480,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -4982,11 +5537,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5033,11 +5594,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5084,11 +5651,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5135,11 +5708,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5186,11 +5765,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5237,11 +5822,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5288,11 +5879,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5339,11 +5936,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5390,11 +5993,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5441,11 +6050,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5492,11 +6107,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5543,11 +6164,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5594,11 +6221,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5645,11 +6278,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5696,11 +6335,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5747,11 +6392,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5798,11 +6449,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5849,11 +6506,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5900,11 +6563,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -5951,11 +6620,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6002,11 +6677,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6053,11 +6734,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6104,11 +6791,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6155,11 +6848,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6206,11 +6905,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6257,11 +6962,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6308,11 +7019,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6359,11 +7076,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6410,11 +7133,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6461,11 +7190,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6512,11 +7247,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6563,11 +7304,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6614,11 +7361,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6665,11 +7418,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6716,11 +7475,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6767,11 +7532,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6818,11 +7589,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6869,11 +7646,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6920,11 +7703,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -6971,11 +7760,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7022,11 +7817,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7073,11 +7874,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7124,11 +7931,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7175,11 +7988,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7226,11 +8045,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7277,11 +8102,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7328,11 +8159,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7379,11 +8216,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7430,11 +8273,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7481,11 +8330,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7532,11 +8387,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7583,11 +8444,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7634,11 +8501,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7685,11 +8558,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7736,11 +8615,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7787,11 +8672,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7838,11 +8729,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7889,11 +8786,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7940,11 +8843,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -7991,11 +8900,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8042,11 +8957,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8093,11 +9014,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8144,11 +9071,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8195,11 +9128,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8246,11 +9185,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8297,11 +9242,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8348,11 +9299,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8399,11 +9356,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8450,11 +9413,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8501,11 +9470,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8552,11 +9527,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8603,11 +9584,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8654,11 +9641,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8705,11 +9698,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8756,11 +9755,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8807,11 +9812,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8858,11 +9869,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8909,11 +9926,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -8960,11 +9983,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9011,11 +10040,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9062,11 +10097,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9113,11 +10154,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9164,11 +10211,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9215,11 +10268,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9266,11 +10325,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9317,11 +10382,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9368,11 +10439,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9419,11 +10496,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9470,11 +10553,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9521,11 +10610,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9572,11 +10667,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9623,11 +10724,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9674,11 +10781,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9725,11 +10838,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9776,11 +10895,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9827,11 +10952,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9878,11 +11009,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9929,11 +11066,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -9980,11 +11123,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10031,11 +11180,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10082,11 +11237,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10133,11 +11294,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10184,11 +11351,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10235,11 +11408,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10286,11 +11465,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10337,11 +11522,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10388,11 +11579,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10439,11 +11636,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -10466,6 +11669,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/roVerTest002.scenario b/Scenarios/Demos/roVer/scenarios/roVerTest002.scenario index 42d2b05a392505752fc1af780f808248f7b0a51f..6bc19742a1a3fe1ea57bf25f2c02a75e8ec0bdcd 100644 --- a/Scenarios/Demos/roVer/scenarios/roVerTest002.scenario +++ b/Scenarios/Demos/roVer/scenarios/roVerTest002.scenario @@ -1,7 +1,8 @@ { "name" : "roVerTest002", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -241,6 +242,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -331,6 +334,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/scenario001.scenario b/Scenarios/Demos/roVer/scenarios/scenario001.scenario index b82e488d13a74b76262c914ba63293fa0798e44c..affe987bf6d42366b58859ee3dc824f73ef36427 100644 --- a/Scenarios/Demos/roVer/scenarios/scenario001.scenario +++ b/Scenarios/Demos/roVer/scenarios/scenario001.scenario @@ -1,7 +1,8 @@ { "name" : "scenario001", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -171,6 +172,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -213,6 +216,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/scenario002.scenario b/Scenarios/Demos/roVer/scenarios/scenario002.scenario index 97ea0aad581dfdb1428bc947bdf0f3e1f7422247..85a45b048f22970eeddb8387ee7019c5e03c895b 100644 --- a/Scenarios/Demos/roVer/scenarios/scenario002.scenario +++ b/Scenarios/Demos/roVer/scenarios/scenario002.scenario @@ -1,7 +1,8 @@ { "name" : "scenario002", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -241,6 +242,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -283,6 +286,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/separation_slow_fast.scenario b/Scenarios/Demos/roVer/scenarios/separation_slow_fast.scenario index 6f0015fec4f6d496d9a4aefdd335dad0695c2b71..72c023d6ec8136ec82661315a915b47a6a3bb424 100644 --- a/Scenarios/Demos/roVer/scenarios/separation_slow_fast.scenario +++ b/Scenarios/Demos/roVer/scenarios/separation_slow_fast.scenario @@ -1,7 +1,8 @@ { "name" : "separation_slow_fast", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -155,6 +156,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -266,6 +269,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/roVer/scenarios/spawn_agents_time_series.scenario b/Scenarios/Demos/roVer/scenarios/spawn_agents_time_series.scenario index a57ad0ff7d286ae28fc530448a4ba931dde80eb0..2cc1bfea2cab09eb72cca0b0250e0042dd6c462f 100644 --- a/Scenarios/Demos/roVer/scenarios/spawn_agents_time_series.scenario +++ b/Scenarios/Demos/roVer/scenarios/spawn_agents_time_series.scenario @@ -1,7 +1,8 @@ { "name" : "spawn_agents_time_series", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/Demos/supermarket/scenarios/Liddle_osm_v4.scenario b/Scenarios/Demos/supermarket/scenarios/Liddle_osm_v4.scenario index 47a8824a2d5378512348073dc9d28c60a8750e9d..ae3ce58d37bb15ffb6fdca62f1c53ec0054dec56 100644 --- a/Scenarios/Demos/supermarket/scenarios/Liddle_osm_v4.scenario +++ b/Scenarios/Demos/supermarket/scenarios/Liddle_osm_v4.scenario @@ -1,7 +1,8 @@ { "name" : "Liddle_osm_v4", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -196,6 +197,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -238,6 +241,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/supermarket/scenarios/counterflow.scenario b/Scenarios/Demos/supermarket/scenarios/counterflow.scenario index 17993e756a1ec003dcf23e2ddc0a10382df98fe6..5ee0288e9501b5a6b88495bb7c17aa65cfb14de0 100644 --- a/Scenarios/Demos/supermarket/scenarios/counterflow.scenario +++ b/Scenarios/Demos/supermarket/scenarios/counterflow.scenario @@ -1,7 +1,8 @@ { "name" : "counterflow", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -261,6 +264,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/Demos/supermarket/scenarios/supermarket_basic.scenario b/Scenarios/Demos/supermarket/scenarios/supermarket_basic.scenario index 36c4090d118b5c8b47f50736be2f2c53eda16d27..4edbb9658cee51746c20243897493ca25c81843a 100644 --- a/Scenarios/Demos/supermarket/scenarios/supermarket_basic.scenario +++ b/Scenarios/Demos/supermarket/scenarios/supermarket_basic.scenario @@ -1,7 +1,8 @@ { "name" : "supermarket_basic", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -4441,6 +4442,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 77, "shape" : { @@ -4535,6 +4538,7 @@ }, "stimuli" : [ { "type" : "WaitInArea", + "id" : -1, "area" : { "x" : 0.0, "y" : 0.0, @@ -4543,6 +4547,7 @@ "type" : "RECTANGLE" } } ] - } ] + } ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/groupBaseScenario.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/groupBaseScenario.scenario index 14e29c8726e07e46e6c3f7f5c145b4cb55dec723..4a13630c76dfe7a2cb53e6cbac3b147363450167 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/groupBaseScenario.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/groupBaseScenario.scenario @@ -1,7 +1,8 @@ { "name" : "groupBaseScenario.scenario", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -348,6 +349,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -399,6 +402,7 @@ }, "stimuli" : [ { "type" : "WaitInArea", + "id" : -1, "area" : { "x" : 45.5, "y" : 0.0, @@ -407,6 +411,7 @@ "type" : "RECTANGLE" } } ] - } ] + } ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group.scenario index d14c54d44121697a52de16d7afec2a07150496f4..c605c7673ef694dd8448f3d1662c3b2f44d0187b 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_2group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group_sparse.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group_sparse.scenario index 99ecace95ee9cfcdab538bfae04b90b60a5e9f02..ac0ef5ed5ed028563e53a41c3324a7c5e4f031e7 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group_sparse.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_2group_sparse.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_2group_sparse", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group.scenario index 6f46b5886e89759895462a4b0bc7a246f6b3f190..88180eb410c2c0c29e17f127a6c14f873c9b55b4 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_3group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group_sparse.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group_sparse.scenario index 9028c3c4fa66b0dc21b2575951f5b358c7a3ef87..13eb594f80138816f9107623a33192dbba59ac04 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group_sparse.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_3group_sparse.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_3group_sparse", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group.scenario index bf8469366cdc2f05b2c7a3ddd95f1e3a2eb4e21f..840ed2a59222dc89e1af167c152802a2ff0e2102 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_4group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group_sparse.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group_sparse.scenario index 117f511ffe975321c6d5469cc27bba61e77f5106..7f147ad17cd6346eae534e8e30454d92a66530ec 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group_sparse.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_4group_sparse.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_4group_sparse", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group.scenario index dbbfdcb8e0d25bb58a132be938a5a3d8b1dfdf28..b49976206648dacae3bba9d4ba138c86f83d20d6 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_5group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -195,6 +196,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -246,6 +249,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group_sparse.scenario b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group_sparse.scenario index 3c46ab93b0a35ffb1e8335939365c49f90203658..95d901d05844316cf175530a52d0212c894e69ae 100644 --- a/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group_sparse.scenario +++ b/Scenarios/ModelCalibration/TestOSMGroup_calibration/scenarios/group_OSM_CGM_density_flow_5group_sparse.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_density_flow_5group_sparse.scenario", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -199,6 +200,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -250,6 +253,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/groupBaseScenario.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/groupBaseScenario.scenario index f1ad5d908e57e97ff7794ca1ea12a84560bf6bea..2d38454e1bf7ab4303876e047f918fcf39e8284e 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/groupBaseScenario.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/groupBaseScenario.scenario @@ -1,7 +1,8 @@ { "name" : "g2_osm_calibration_minStepSize_0_11", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -292,6 +293,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -343,6 +346,7 @@ }, "stimuli" : [ { "type" : "WaitInArea", + "id" : -1, "area" : { "x" : 45.5, "y" : 0.0, @@ -351,6 +355,7 @@ "type" : "RECTANGLE" } } ] - } ] + } ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_11_ignore_free_space.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_11_ignore_free_space.scenario index 19e7747d55cf55921bb260a9e7faf3de73889891..499d03ad23cd8ba429e508cedbb59d9e12d91294 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_11_ignore_free_space.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_11_ignore_free_space.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_11_ignore_free_space", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_17.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_17.scenario index 1b22a8822e4e682ec72acc89e87d6c8990f16fde..d287035731639b7d4376934041b849081b3611da 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_17.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_17.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_17", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_25.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_25.scenario index aad51475c9efadeec51d73ff7259b69a685e9d1f..801bae7616fde59448f671c5233314078bd123b2 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_25.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_25.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_25", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_35.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_35.scenario index 9516ed0944e78e48664f67ade3c913abd8d41d10..6cbefc689dd85995d24795887d22b9602ef35f2e 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_35.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_35.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_35", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625.scenario index 4b2d5ea93615f661566c6d39d63b55bfefd1764b..67e0fb9fcc77841ce871931a2d9128199cdc2caf 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_4625", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p18.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p18.scenario index e2c941f8769cee2ea2d1ac3116b851f50985c2d6..043c42b0f013dc9976ee9fe47f4d3505d43fc531 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p18.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p18.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_4625_p18", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p4.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p4.scenario index 0541bab71cb72d723f36f8bf29d1683ce204fd6e..98cc1c45a9ebccf837025fba96ad716206322990 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p4.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_minStepSize_0_4625_p4.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_minStepSize_0_4625_p4", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_sivers_2016b.scenario b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_sivers_2016b.scenario index 3d5d2f946f50bed26c0bc1612c66bf60f71247d3..7c9565fb02639e8c026b6c09f5ae6a8d7f5ec248 100644 --- a/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_sivers_2016b.scenario +++ b/Scenarios/ModelCalibration/TestOSM_calibration/scenarios/osm_calibration_sivers_2016b.scenario @@ -1,7 +1,8 @@ { "name" : "osm_calibration_sivers_2016b", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -242,6 +243,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -293,6 +296,7 @@ }, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180.scenario index db7cefd3ac9d643840a1e1865fa6dcb4f8a049ac..4b680c8356b6239b8a0dd8ba051f57b368fb097b 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180.scenario @@ -1,7 +1,8 @@ { "name" : "C-050-180-180", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_GNM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_GNM.scenario index 6d42fc4c9376507ee9a11056c008df07bf9f6cec..5937579939a702978eb5c110c44b962978bff4d9 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_GNM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_GNM.scenario @@ -1,7 +1,8 @@ { "name" : "C-050-180-180_GNM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -328,6 +329,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -370,6 +373,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_Q.scenario index 487ff5eea244a7f2d254d61cb09d649aa0d13aea..6cd750df57f54fc31f344ab1aa04c282258bf971 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-050-180-180_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-050-180-180_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180.scenario index 3c119f8c22f482a750e16b5a336ee26076db73bb..fb7efce9e35d4e8a26fcb550b143b803ce98ac16 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180.scenario @@ -1,7 +1,8 @@ { "name" : "C-060-180-180", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180_Q.scenario index b6f0887803eea960cdbc98cb143f6e5a253588f8..1be4b8515bd7fe0c336c728193465284111fff18 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-060-180-180_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-060-180-180_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180.scenario index 468b9ae78b886de97ea568af7bfa1c3cd8bed25c..dccf535e30e52985ccb16735dd17509edd24b28a 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180.scenario @@ -1,7 +1,8 @@ { "name" : "C-070-180-180", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180_Q.scenario index 774194010b5c320c9eae7e1ca946352bfc602448..0f904f390040fd09cfc63ec19da0890462baa306 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-070-180-180_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-070-180-180_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180.scenario index ab9d5fc0b2bb8d2ce2f026ff2a113f1430bbc171..0823105087bc990002a22aa55ed22f76a8bfcf6d 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180.scenario @@ -1,7 +1,8 @@ { "name" : "C-100-180-180", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180_Q.scenario index 5edc986c7841916166396a9dff0f190636771d81..b6d1d12531c31d5c77f60772013bed0628ec39ef 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-100-180-180_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-100-180-180_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180.scenario index f135473108ca13583729a6b304fa6d872f4a762a..63346454846186447dfab18fd6d12a0c74f21da5 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180.scenario @@ -1,7 +1,8 @@ { "name" : "C-145-180-180", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180_Q.scenario index c1482c6e32e654840d82796fb295e5a988d51f1e..7f85ab5e30c72b88b0138edf3878623b36a1aa74 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-145-180-180_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-145-180-180_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070.scenario index 91e175072b77b835a40a05e2fc16317f1ccebd18..3edf114dd696ad3a05e77be9303236c6fbeea9b1 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-070", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -380,6 +381,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -422,6 +425,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_Q.scenario index d39a2440216ad6c8354ceabbd9494f30d10848be..0ba087103fdffa41e7dd9289082a25c5780d0a84 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-070_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -380,6 +381,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -422,6 +425,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_UNIT.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_UNIT.scenario index 03ee1948ad174d798a3d8eb1ad84322ecd19af69..0f38f665f511dbb91758f4866145751f21190334 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_UNIT.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_UNIT.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-070_UNIT", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -362,6 +363,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -404,6 +407,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_default.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_default.scenario index 1341348c10a4fc6413b88bcb81f856239e86c1d8..0ae6f4728b2522e2c4384572ae2b0e56555a94d4 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_default.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_default.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-070_default", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -380,6 +381,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -422,6 +425,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_ramp.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_ramp.scenario index b40b2852ac965f5c7321a508d56fb30b57709deb..9f4116c548a644bbd0223858b03499db74918b86 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_ramp.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-070_ramp.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-070_ramp", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -392,6 +393,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -434,6 +437,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095.scenario index b4b8204bc4443132e89c2790fe56a898f17a03cb..01b3280a12d10fdc079bc3744a082f870b5af1d7 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-095", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -362,6 +363,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -404,6 +407,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095_Q.scenario index 3eb26a81e73f1785089368ffcdc51cd75ff508e9..9dd4f2f7f0ff69979d279cc25fbf8773f342cfac 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-095_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-095_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -362,6 +363,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -404,6 +407,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120.scenario index 0fa4e994a9e4c5611ed446f98afaa7597a70be7a..e739efd8bc0f1228ce640f7180ab1551ada01df6 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-120", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -362,6 +363,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -404,6 +407,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120_Q.scenario index ec0a2e2d529eb810c2310debde0e85bf3d45490c..e53be134fbc06b5bf7834204a092122e28fc3247 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-120_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-120_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -362,6 +363,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -404,6 +407,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180.scenario index 0ba80f644ebe4e70a631a4fe37e3f333b248db6a..6301dec2c696295cdae7b077ef152360eff8ca97 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-180", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180_Q.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180_Q.scenario index 7e4e2fd7ce260ae1a75956c60e6e2ceeb0a0b4f2..6698efba32dec716fa33baf1b670b51d5444b17c 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180_Q.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/C-180-180-180_Q.scenario @@ -1,7 +1,8 @@ { "name" : "C-180-180-180_Q", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -344,6 +345,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -386,6 +389,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240.scenario index d68e216a8472e4c365fc4b75c70a91b8e8ab4b55..ce0f2b882f3e509e957448ddf952c1488ad1ed4b 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-050-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -459,6 +460,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -525,6 +528,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_BHM.scenario index 9305833f234af72e39d62823973451b65aab30d4..f15027151c00049136ba2ad6807e660b627ba984 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-050-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -472,6 +473,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -538,6 +541,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_OSM.scenario index 91abbb33c89847adcee8f0e8a519ac81c4e420cb..5bf01ba6d44b161be21082f467d02ef62f36b8f3 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-050-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-050-240_OSM_", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -463,6 +464,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -529,6 +532,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240.scenario index 2f77196a8c6b02402d6a6def08c678747d9196e2..01939bbe5ce42ec5702f4436197ee1529443b8ea 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-060-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -459,6 +460,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -525,6 +528,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_BHM.scenario index 4dc46808a89f02878ae4f76ed54731dab43d73ac..4b484e95aa020cd74f7aa105c2ed89ae6de1a6f9 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-060-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -472,6 +473,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -538,6 +541,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_OSM.scenario index 83957b05c5b20650fbafcd73daf1d180f20f93d3..c57d708ac179db9c9de90fff953c7061ec5ac446 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-060-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-060-240_OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -466,6 +467,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -532,6 +535,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240.scenario index ddba0b221afdf7c4f220e926e0051cba38465ef9..a2ac6fd1be2440d32499e745dee714db312414ea 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-080-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -459,6 +460,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -525,6 +528,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_BHM.scenario index 075a4d3ae57ffc7e8ae5da1ae1f6452dec707d01..203c7d123c5c40a4deb5cedf1c2e0357eed80945 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-080-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -472,6 +473,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -538,6 +541,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_OSM.scenario index a15de052afe198777a29ba67cbe4a9a1e254569a..0b1df10e5d1ab8f08be6d589dceb353141c42bef 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-080-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-080-240_OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -466,6 +467,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -532,6 +535,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240.scenario index 26dca6304f4641748d9451f257280ad7a78de638..17192952929ecc5e17637fcc64d52e8a8ab7fed9 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-100-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -459,6 +460,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -525,6 +528,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_BHM.scenario index ac033c70da359055b5ee85f8ef1de14cac696e7c..467f7e7b097da5b56b5d2e843e5aa74658c9b0fb 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-100-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -472,6 +473,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -538,6 +541,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_OSM.scenario index 4319cfe25664969a98d03e37c3af20139e2ef554..dff99a24297157ade8ecaed1b3222f3dc73d63cb 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-100-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-100-240_OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -466,6 +467,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -532,6 +535,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240.scenario index ca445fac81008d957190bbb73cc96220b1e13f1c..c3f8e943536c5ec71953764c567fcceb7c63c1a8 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-120-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -445,6 +446,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -511,6 +514,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_BHM.scenario index 3e0860fa238ddb448c9d675c241863fc90135ed5..f59b5fff67372b7d84cf98e43ccd8270c55a1c89 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-120-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -454,6 +455,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -520,6 +523,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_OSM.scenario index 17265e46789057689a2982a22b091074587c5b3d..4545775a1d9500e6a72cb7c83c740d938fe88b38 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-120-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-120-240_OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -448,6 +449,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -514,6 +517,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240.scenario index ab2ded53c0a3a907593eb34b148baca4093ac01c..7ac113c9916ce3b56588a896584c1268b67908ed 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-150-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -441,6 +442,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -507,6 +510,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_BHM.scenario index b94ff704fcb654f17a6080964fd11930c5afd85d..447f90346bad9940ef9419243456453628da0a5b 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-150-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -454,6 +455,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -520,6 +523,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_OSM.scenario index fc87e0e3c3696aae9a65936e7f8cdb4c1a2cc039..30e2d742f81cc544b3cd27859d4177c3f8916fb6 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-150-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-150-240_OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -448,6 +449,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -514,6 +517,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240.scenario index 8f798a1693abe32d9db5de45ac288f09500101dc..6efbd87c6b8fe611e2eeab3a84cd469f9a2ec845 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-240-240", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -441,6 +442,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -507,6 +510,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_BHM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_BHM.scenario index e2fa4d19385a74d879d2f382454b0f5aa1fdbf4b..e8d59b0c29d73b87113076e6f2b8863de9a16d5b 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_BHM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_BHM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-240-240_BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -454,6 +455,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -520,6 +523,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_OSM.scenario b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_OSM.scenario index fa910458c723955160f1e30c9a81ab560730f2bf..099fcf7bc90bcc6c4c8f6064690216b06ff9744a 100644 --- a/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_OSM.scenario +++ b/Scenarios/ModelCalibration/TestOSM_zhang-2011/scenarios/T-240-240-240_OSM.scenario @@ -1,7 +1,8 @@ { "name" : "T-240-240-240_OSM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -448,6 +449,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -514,6 +517,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-Labyrinth.scenario b/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-Labyrinth.scenario index eaea60d77782757fae7c69fd773981b50e03797a..01d3d5d466ca87bcd0fefc2a59a114ded9ca2ffa 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-Labyrinth.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-Labyrinth.scenario @@ -1,7 +1,8 @@ { "name" : "BHM-FloorFieldTest-Labyrinth", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -224,6 +225,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 12, "shape" : { @@ -266,6 +269,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-TwoObstacles.scenario b/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-TwoObstacles.scenario index 8e1f8c478f85f41802b2313ac9c2f1bdfd403e5f..05cbbecbcb6e532f9959833f89f618cd97235097 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-TwoObstacles.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/BHM-FloorFieldTest-TwoObstacles.scenario @@ -1,7 +1,8 @@ { "name" : "BHM-FloorFieldTest-TwoObstacles", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -170,6 +171,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -212,6 +215,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario b/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario index 2da497b713cc8f1dc017887e3c4b50142148a1de..80da7efa1dd3c1a50e3d377364bfe32aa4d2f4c1 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario @@ -1,7 +1,8 @@ { "name" : "Corridor-BHM-Defaults-WithFloorField-CounterflowCognitionModel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -154,6 +155,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField.scenario b/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField.scenario index 3470ae0327f49b2743effff46aa04b2d45049975..1c8d931e838a71839403e921fe5ca2eae5b1bb4c 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults-WithFloorField.scenario @@ -1,7 +1,8 @@ { "name" : "Corridor-BHM-Defaults-WithFloorField", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -154,6 +155,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults.scenario b/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults.scenario index 3d5bc7d32bc882dea98fc5b2ab75254a200301bb..c8550060e95250b17fcdc71bc28001143ba1f7af 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/Corridor-BHM-Defaults.scenario @@ -1,7 +1,8 @@ { "name" : "Corridor-BHM-Defaults", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -133,6 +134,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -199,6 +202,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario b/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario index ad68b2ae531c25ff7e66a8ba0162b91d6b972de4..25252fcd408e1051fcdfcc063c61448ce3809685 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField-CounterflowCognitionModel.scenario @@ -1,7 +1,8 @@ { "name" : "CorridorKretz2006c-BHM-Defaults-WithFloorField-CounterflowCognitionModel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -154,6 +155,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField.scenario b/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField.scenario index adc3273d1689055e2441ac75f9a1a665a2fe3450..8f5a7ac56d9fcc12478b656bc772286f100bbaa7 100644 --- a/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField.scenario +++ b/Scenarios/ModelTests/TestBHM/scenarios/CorridorKretz2006c-BHM-Defaults-WithFloorField.scenario @@ -1,7 +1,8 @@ { "name" : "CorridorKretz2006c-BHM-Defaults-WithFloorField", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -154,6 +155,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/basic_2_density.scenario b/Scenarios/ModelTests/TestCA/scenarios/basic_2_density.scenario index 3edb77c1b29a47d5cc457c12df31a68d38dcd1c2..3f6962792561cb81def7ff615f8b92daa53fcb9d 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/basic_2_density.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/basic_2_density.scenario @@ -1,7 +1,8 @@ { "name" : "basic_2_density", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -200,6 +201,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -242,6 +245,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/bottleneck.scenario b/Scenarios/ModelTests/TestCA/scenarios/bottleneck.scenario index 5fe604959a2c29197a2c132f5b48a56f4abd1db3..92bdd2e5aaa554bfb44ef5fbd88d9b24cd21693b 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/bottleneck.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/bottleneck.scenario @@ -1,7 +1,8 @@ { "name" : "bottleneck", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -248,6 +251,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_displaced_fail.scenario b/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_displaced_fail.scenario index 6d6c9233bdc3574418d55f113872dfb8a9bf3402..0517f246ca0907d64661b98006fd96448c55fdf1 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_displaced_fail.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_displaced_fail.scenario @@ -1,7 +1,8 @@ { "name" : "chicken_floorfield_displaced_fail", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -193,6 +194,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -235,6 +238,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_ok.scenario b/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_ok.scenario index 58545af679df10f9fbabd462788a12685b738d24..7ff747a802bd68dd82d3007d55fb410dd9eee6e6 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_ok.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/chicken_floorfield_ok.scenario @@ -1,7 +1,8 @@ { "name" : "chicken_floorfield_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -203,6 +204,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -245,6 +248,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/corner_waiting_time_processor_test.scenario b/Scenarios/ModelTests/TestCA/scenarios/corner_waiting_time_processor_test.scenario index a914c95cb60d46939965e360e76ea5ec5934f619..62ff2613843f516b35d996a8e9b55648ca4946de 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/corner_waiting_time_processor_test.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/corner_waiting_time_processor_test.scenario @@ -1,7 +1,8 @@ { "name" : "corner_waiting_time_processor_test", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -194,6 +195,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -260,11 +263,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -287,6 +296,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/multiple_sources.scenario b/Scenarios/ModelTests/TestCA/scenarios/multiple_sources.scenario index 4d209452a74acfa0f7ff9f78b54e5e05b4ef3846..fd775423dc842af2211195b16f9666fb269f92b9 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/multiple_sources.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/multiple_sources.scenario @@ -1,7 +1,8 @@ { "name" : "multiple_sources", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -183,6 +184,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -268,6 +271,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/narrow_passage.scenario b/Scenarios/ModelTests/TestCA/scenarios/narrow_passage.scenario index b00efbbab52a5123cd08195d956ec88632f02828..cdc3cce47527d269d481f9c49f18faea970dcc4c 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/narrow_passage.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/narrow_passage.scenario @@ -1,7 +1,8 @@ { "name" : "narrow_passage", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", @@ -152,6 +153,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -218,6 +221,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/regular_wall.scenario b/Scenarios/ModelTests/TestCA/scenarios/regular_wall.scenario index 35c593fc7a469a5e95d3526bd84c3efde75b2eca..a63c816407b19e0d939e98e98944d0a32ad82ab7 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/regular_wall.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/regular_wall.scenario @@ -1,7 +1,8 @@ { "name" : "regular_wall", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -168,6 +169,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 7, "shape" : { @@ -210,6 +213,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_01_pathway.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_01_pathway.scenario index 64daa4861acc21c4587286a3e35867ff7729f5ad..fbdfe60b285cd42131fb0c87cebbb5b7dfd929b1 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_01_pathway.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_01_pathway.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_01_pathway", "description" : "numberOfCircles = 1, stepCircleResolution = 18, DISCRETE", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -188,6 +189,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 10, "shape" : { @@ -230,6 +233,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_050_h.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_050_h.scenario index a23e543e9ea1e9e1bda7185de40a70b24f4e8756..c6066a299ec60e9dda4dfdf5fff3321dd752450f 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_050_h.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_050_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_050_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -261,6 +262,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -303,6 +306,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_075_h.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_075_h.scenario index bd31e81caf5cd48591b5350ccf99c32ffdd9e27a..75585b4f28d8efb81aeb93ee8e8a02968d4fb108 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_075_h.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_075_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_075_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -257,6 +258,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -299,6 +302,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_100_h.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_100_h.scenario index 8e00370a27d53c829955dfb5bda675f4bd1d201e..3f15c9fdea7badfd238f8a1b950136463410f086 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_100_h.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_100_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_100_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -257,6 +258,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -299,6 +302,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_125_h.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_125_h.scenario index 42511e4f354c44bae62f82f46d38f56053247156..c33bbc957014c7a4e3e5e7c7f345b4ab844ffe43 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_125_h.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_125_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_125_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -257,6 +258,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -299,6 +302,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_470_h.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_470_h.scenario index 12108f7b8e7fbf6ba674e0e2c15f0ac91afff22d..aeef85cec2c90ca241baecccc058274b8e533be3 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_470_h.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_04_flow_osm1_470_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_470_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -257,6 +258,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -299,6 +302,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_05_react.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_05_react.scenario index c747125266e401cae58b5610d669c6241f5d292d..c1e98acb998a3ef4c38d79e164479d316a159cb9 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_05_react.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_05_react.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_05_react", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { @@ -143,6 +144,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 4, "shape" : { @@ -185,6 +188,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_06_corner.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_06_corner.scenario index a288f5b4a8e6c8c4de0837268ab54ce70b0db777..ff330511bdbd1b6a7522b5e5626803a9e589fb9b 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_06_corner.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_06_corner.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_06_corner", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -207,6 +208,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 4, "shape" : { @@ -273,11 +276,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -324,11 +333,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -351,6 +366,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_07_speeds.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_07_speeds.scenario index 43051686cd471437d19d43deb7c1126c1062fe36..f843376119fcc6f4c526710e84ff14fed2488680 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_07_speeds.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_07_speeds.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_07_speeds", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -163,6 +164,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -205,6 +208,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation.scenario index 8af244d7e910012e8ce78212a7cb615e987701f6..c243e760946be7941bb8d2741e1999f5d1dd2c66 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_08_parameter_variation", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { @@ -1655,6 +1656,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 168, "shape" : { @@ -3449,6 +3452,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation_part1.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation_part1.scenario index 0964d0cffb977a744773cb5b097f028e2c83b293..f57bcc4eb8a42f6da5ce61d9edf84505020c598a 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation_part1.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_08_parameter_variation_part1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_08_parameter_variation_part1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { @@ -1655,6 +1656,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 168, "shape" : { @@ -3449,6 +3452,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_2_exits.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_2_exits.scenario index f7629eb16bcc3f9b0f8b4dcc983d5e0a503b6c6c..12f7debdd7c7d0238f1f50eb7e07c19932f27a70 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_2_exits.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_2_exits.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_public_room_2_exits", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -235,6 +236,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 10, "shape" : { @@ -277,6 +280,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_4_exits.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_4_exits.scenario index 7b9f0337e950023caf9e43d2b20427fecbbfb2a3..9dedff6e5e11edb99ac0a0f72bbb404ad45799e4 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_4_exits.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_09_public_room_4_exits.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_public_room_4_exits", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -244,6 +245,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 9, "shape" : { @@ -286,6 +289,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_10_pathfinding.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_10_pathfinding.scenario index 8f6bf0b9633ff679217fa7298b6f99e142dfdc3f..7578d83a6988d7cd8548cbaaab1b15294d4f34c3 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_10_pathfinding.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_10_pathfinding.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_10_pathfinding", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -544,6 +545,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -850,6 +853,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_11_exit_selection.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_11_exit_selection.scenario index ae4642b5796d47dd84f74862d8a5bdd9083f51ac..fc8fe4d2017366453378a6db83cbc0aeb968a5d3 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_11_exit_selection.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_11_exit_selection.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_11_exit_selection", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { @@ -170,6 +171,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 10, "shape" : { @@ -212,6 +215,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_12_evacuation.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_12_evacuation.scenario index 46f09ca9d49a87d549045ccab566b5870060b193..5eeabcde8c43d27b4054c13dd31ce5ae57db0753 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_12_evacuation.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_12_evacuation.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_12_evacuation", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { @@ -161,6 +162,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 6, "shape" : { @@ -203,6 +206,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/rimea_14_select_route.scenario b/Scenarios/ModelTests/TestCA/scenarios/rimea_14_select_route.scenario index d5e4e5c324b37228db92ec301ae95796e187aee7..9891668a1fcba028be0a57e96766159511804e89 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/rimea_14_select_route.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/rimea_14_select_route.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_14_select_route", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -199,6 +200,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 8, "shape" : { @@ -241,6 +244,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/see_small_wall.scenario b/Scenarios/ModelTests/TestCA/scenarios/see_small_wall.scenario index 0ce5aa30d0f16e337bc1909b85c9cd85b7edc6e5..17bf7de33c1bdb37e70227e722809afac073e4ab 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/see_small_wall.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/see_small_wall.scenario @@ -1,7 +1,8 @@ { "name" : "see_small_wall", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -178,6 +179,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/thick_wall.scenario b/Scenarios/ModelTests/TestCA/scenarios/thick_wall.scenario index 0bf1df4debf76a514fc787642e6362d930e6696d..283d00c9e2ad8c82b5df7b4cd2d826417df35d26 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/thick_wall.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/thick_wall.scenario @@ -1,7 +1,8 @@ { "name" : "thick_wall", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -178,6 +179,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/thin_wall.scenario b/Scenarios/ModelTests/TestCA/scenarios/thin_wall.scenario index 36a2b9c909a874d973c4af157d8e246960d02e35..f1bd9b79919e4ab617f0639d18671e0b0181eac8 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/thin_wall.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/thin_wall.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -185,6 +186,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -227,6 +230,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestCA/scenarios/thin_wall_and_closer_source.scenario b/Scenarios/ModelTests/TestCA/scenarios/thin_wall_and_closer_source.scenario index 4577ea43bab19c8a84f60e27fc72c7759df59c20..77a64df23c0f0ff0843e939eb6da19598b26539a 100644 --- a/Scenarios/ModelTests/TestCA/scenarios/thin_wall_and_closer_source.scenario +++ b/Scenarios/ModelTests/TestCA/scenarios/thin_wall_and_closer_source.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_and_closer_source", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -178,6 +179,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1.scenario index 011e9153c5dc1ba92f26b992c47c20c31fafcd8d..315a1044bba442ce16764715816454a60e37cd4a 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_1_chicken_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -133,6 +134,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -175,6 +178,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1_displaced.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1_displaced.scenario index 41fefc78d10dc7feec62bf3c1e0be4473c0a4e55..22e9b6a27fca2a6a424d6062dfcf42b9a6731e7e 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1_displaced.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm1_displaced.scenario @@ -1,7 +1,8 @@ { "name" : "basic_1_chicken_gnm1_displaced", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -133,6 +134,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -175,6 +178,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm2.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm2.scenario index e8dc66b9fd144bf6064799a95ef66beef9de7db8..c6d9f4a73e18dd4ad7e87e37908d9b4d096984ca 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm2.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_1_chicken_gnm2.scenario @@ -1,7 +1,8 @@ { "name" : "basic_1_chicken_gnm2", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -133,6 +134,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -175,6 +178,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_2_density_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_2_density_gnm1.scenario index 49899347a93fbce63ff16d01c5b2b40f2246bd24..82682760ce09a65bb0e44603fbe9d9b22fa076f3 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_2_density_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_2_density_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_2_density_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -142,6 +143,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -184,6 +187,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_3_1_wall_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_3_1_wall_gnm1.scenario index 12dbc6045433a1ea7409778af11ac49a484097ea..be8698eba7600df4a87f6d92d0c639aac7996e9e 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_3_1_wall_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_3_1_wall_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_3_1_wall_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -115,6 +116,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -157,6 +160,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_3_2_wall_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_3_2_wall_gnm1.scenario index c00a19e1796fffdace52509a0ed9a340288860ce..364283265478fae83bd995e5a0951bbfac551558 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_3_2_wall_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_3_2_wall_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_3_2_wall_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -115,6 +116,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -157,6 +160,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_3_3_wall_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_3_3_wall_gnm1.scenario index b3a3e79b6cc6f16a628d7d763ef2dcfc94679fc8..a585e9a309c0b3a5883fc9b9596b0a2ffebee91c 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_3_3_wall_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_3_3_wall_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_3_3_wall_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -115,6 +116,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -157,6 +160,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_4_1_wall_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_4_1_wall_gnm1.scenario index 7ed405a9a92e3d790ceea92f2081223fe3f370b1..db7c412183dc8d1d74e3693e7032feac69bcbb2b 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_4_1_wall_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_4_1_wall_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_4_1_wall_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -115,6 +116,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -157,6 +160,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/basic_4_2_wall_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/basic_4_2_wall_gnm1.scenario index 3104ab141a52744ec2862db3345cabc8a29b6fad..7783862912516acbe5861ce8e81ae9d26afb5d31 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/basic_4_2_wall_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/basic_4_2_wall_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_4_2_wall_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -115,6 +116,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -157,6 +160,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_01_pathway_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_01_pathway_gnm1.scenario index 8ef815d9d21cf1a6e6aad24cda1dcc04d20f1321..88aa91110950ea8c8e9906c713b48fdb048ef1dc 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_01_pathway_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_01_pathway_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_01_pathway_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_025_h.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_025_h.scenario index 710698cffc894201d6c7883f6d8d59678121185d..19a9fdb8a5dd9fcfe3bfe52f55d796910b0907f5 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_025_h.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_025_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_gnm1_025_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_050_h.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_050_h.scenario index d72b4a789eda6cdf1a0db32d3554155b7982df3f..0727e6f6ab5a3957e862074483ced452420c635d 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_050_h.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_050_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_gnm1_050_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_075_h.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_075_h.scenario index a03168677d8baf352627141b85f86b350f74e838..5669d04ae645bdaacadd49dc8a8b6feb76dc4100 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_075_h.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_075_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_gnm1_075_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_100_h.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_100_h.scenario index 24de9c8987df1e4e75391ce99953ed477b8b50e4..a933e907d569067648afd124d226fd463861623a 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_100_h.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_100_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_gnm1_100_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_125_h.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_125_h.scenario index f19101f60c8f4da37bbc7028c5a120c16c3f037e..ecfbeeac8c9b65d5aec6451e8025ebdc084d75ca 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_125_h.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_04_flow_gnm1_125_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_gnm1_125_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_05_react_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_05_react_gnm1.scenario index 118e73057c434e9a1ab7b0ff1afc642b4ad9effc..ae1d37e60f5cacaebe1354e2d943b6ce6102f04d 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_05_react_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_05_react_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_05_react_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -124,6 +125,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -166,6 +169,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_06_corner_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_06_corner_gnm1.scenario index 532b6b90aca15544a493ee1331526de0541c71a6..448a9899a74afd190ed2f7e15ff3b2353199b139 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_06_corner_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_06_corner_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_06_corner_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -124,6 +125,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -166,6 +169,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_07_speeds_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_07_speeds_gnm1.scenario index 4110c2873e38754527a9403abce5dc67a0ee63e5..322aacada9d0c75b99591829de0f8be66880a017 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_07_speeds_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_07_speeds_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_07_speeds_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_2.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_2.scenario index fcc3ce4a0021347e86c49948bf429b82be78c6eb..279b078ea19cf097d27c94f4016567fc81dbb36d 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_2.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_2.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_publicRoom_gnm1_2", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -208,6 +209,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -250,6 +253,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_4.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_4.scenario index 6ab98a0f849c6860e5d9c4b17b92fae2d6c65712..90990eb6267d69abbe9ec8c0d3c8cd174716e075 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_4.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_09_publicRoom_gnm1_4.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_publicRoom_gnm1_4", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -190,6 +191,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -232,6 +235,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_10_pathfinding_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_10_pathfinding_gnm1.scenario index 5e3b39955a9c5e161b0e757e43be1e50ea2e6768..27e88efc2fe845dabbda407e39e7ddce0084cc3d 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_10_pathfinding_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_10_pathfinding_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_10_pathfinding_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -510,6 +511,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -816,6 +819,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_11_exitSelection_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_11_exitSelection_gnm1.scenario index 768633f9f66b220e38205970716bc151e2c1a56f..d534194502280fb3a25ab30a52dee3db10a00cb7 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_11_exitSelection_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_11_exitSelection_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_11_exitSelection_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -178,6 +179,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -220,6 +223,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_12_evacuation_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_12_evacuation_gnm1.scenario index 90434f389e3a32b75ce48198e3f5d9da4bdc2488..6b8dbe4a305d2dd24f6bac9b95f014b1c7b4735a 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_12_evacuation_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_12_evacuation_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_12_evacuation_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -142,6 +143,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -184,6 +187,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_13_stairs_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_13_stairs_gnm1.scenario index 67c5a9ae5083bb14d3b49da901ebd3381a3dbcc7..bd779fcb0fef7901be23f72acab77661142b9837 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_13_stairs_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_13_stairs_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_13_stairs_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -138,6 +139,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -180,6 +183,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestGNM/scenarios/rimea_14_selectRoute_gnm1.scenario b/Scenarios/ModelTests/TestGNM/scenarios/rimea_14_selectRoute_gnm1.scenario index 193fbd00d4c1babd0b07f6f5ba2d160f9a6b5397..fbcf11a2d8250bcf5f12aa8b1bcea385fdd71e0a 100644 --- a/Scenarios/ModelTests/TestGNM/scenarios/rimea_14_selectRoute_gnm1.scenario +++ b/Scenarios/ModelTests/TestGNM/scenarios/rimea_14_selectRoute_gnm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_14_selectRoute_gnm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -188,6 +189,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -230,6 +233,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_discrete_ca.scenario b/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_discrete_ca.scenario index 721ee532e04366b355950141f06c949dcc1dc6d2..b1db2e427390882237848739dbd0527aa241677c 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_discrete_ca.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_discrete_ca.scenario @@ -1,7 +1,8 @@ { "name" : "basic_2_density_discrete_ca", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_pso.scenario index 696e5a2689962ec731814e2630c393204fa87b8c..98df38d30ab6abe30c3fae2b758bb9f71cc9ac5a 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/basic_2_density_pso.scenario @@ -1,7 +1,8 @@ { "name" : "basic_2_density_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_displaced_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_displaced_ok.scenario index bf2cd6cbc6d3342fb674016edb32bf68eeba8ff5..3557a465a160d330d049cb69f0499d6a9eeb038d 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_displaced_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_displaced_ok.scenario @@ -1,7 +1,8 @@ { "name" : "chicken_floorfield_displaced_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_ok.scenario index 184b2dec93a50e73b7179a778b7c8790eae2d849..e4fd973208c99f540b633ccef628d501c1f7c414 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/chicken_floorfield_ok.scenario @@ -1,7 +1,8 @@ { "name" : "chicken_floorfield_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/corner_waiting_time_processor_test.scenario b/Scenarios/ModelTests/TestOSM/scenarios/corner_waiting_time_processor_test.scenario index f9a6c7cf9a6d2d6fadd3f5837238c8569553d565..520813e0fb6f15fcb10983e7345e31885b3ad5d6 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/corner_waiting_time_processor_test.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/corner_waiting_time_processor_test.scenario @@ -1,7 +1,8 @@ { "name" : "corner_waiting_time_processor_test", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -265,20 +266,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], diff --git a/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_discrete_CA_fail.scenario b/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_discrete_CA_fail.scenario index d9aafba5ababba0e17050c49ef3fabcb4e7900b8..330f3ecdc013dea8fecbe2a122a09992fe291aba 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_discrete_CA_fail.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_discrete_CA_fail.scenario @@ -1,7 +1,8 @@ { "name" : "narrow_passage_discrete_CA_fail", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", @@ -392,20 +393,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], @@ -461,20 +450,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], diff --git a/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_nelder_mead_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_nelder_mead_ok.scenario index 39fa4fc872874064382dc0e130175e0e890634bb..3d356672005e7e48040bdae59252e824fa2cb942 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_nelder_mead_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_nelder_mead_ok.scenario @@ -1,7 +1,8 @@ { "name" : "narrow_passage_nelder_mead_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.NoDataKeyOutputFile", @@ -336,20 +337,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], @@ -405,20 +394,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], diff --git a/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_pso_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_pso_ok.scenario index 524e3c089d7b4890f27a046d2d2efe22eaa5b04b..33733049e84aca63e3ee7241767383c3d396d972 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_pso_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/narrow_passage_pso_ok.scenario @@ -1,7 +1,8 @@ { "name" : "narrow_passage_pso_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -624,20 +625,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], @@ -693,20 +682,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], diff --git a/Scenarios/ModelTests/TestOSM/scenarios/queueing_dynamic_floorfield_visual_check.scenario b/Scenarios/ModelTests/TestOSM/scenarios/queueing_dynamic_floorfield_visual_check.scenario index 97584e1cc0e78953b226bc783b75711dfd009952..4fc34848abd36342495c26a4322cb1996bf4fc57 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/queueing_dynamic_floorfield_visual_check.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/queueing_dynamic_floorfield_visual_check.scenario @@ -1,7 +1,8 @@ { "name" : "queueing_dynamic_floorfield_visual_check", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_discrete_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_discrete_ok.scenario index 42102026475dc86f885848b342f817967bcb78bb..a6cabbc4c90106ea9fe3ed93579d9e9269214bd1 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_discrete_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_discrete_ok.scenario @@ -1,7 +1,8 @@ { "name" : "regular_wall_discrete_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_nelder_mead_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_nelder_mead_ok.scenario index cd9f1117fefdfae64de09a9833466a8d2d3f7e94..91705a6a1dc8bd872ff5e70ab48e8f4ac07bb57f 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_nelder_mead_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_nelder_mead_ok.scenario @@ -1,7 +1,8 @@ { "name" : "regular_wall_nelder_mead_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_pso_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_pso_ok.scenario index d00950454bf7c276e29639e824de903b920ad32b..73c191b86db0cefcd3858694d0aaab7e0f14f4d1 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_pso_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/regular_wall_pso_ok.scenario @@ -1,7 +1,8 @@ { "name" : "regular_wall_pso_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_brute_force.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_brute_force.scenario index 235097adf0d02374e361756742ea82389534bff6..c84bbef6f9024e3b9bc2071d82d6117b546c3eed 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_brute_force.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_brute_force.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_01_pathway_discrete_brute_force", "description" : "numberOfCircles = 4, stepCircleResolution = 30, DISCRETE", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_ca.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_ca.scenario index c400403280884e40e8c51a7276bb3a35ae5618f8..7e23196e178a7b3e6129b6d9c21b71eb2a54b92f 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_ca.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_01_pathway_discrete_ca.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_01_pathway_discrete_ca", "description" : "numberOfCircles = 1, stepCircleResolution = 18, DISCRETE", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_d.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_d.scenario index 2286a04a463f323753a7f1a6fda3766629180e8b..c5155dff8440537128641be6a3cfe924a453db8b 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_d.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_d.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_025_d", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_up.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_up.scenario index 9da03407c1f5cb67cd0770b0ea61bafe7632c165..92558cd60dcb8630eac6d16e7625e7d4c7f7821d 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_up.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_025_up.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_025_up", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_d.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_d.scenario index 456ce91ccff5a32e66100f291527c1b89a4fd7f0..474b1aa329d0da362c5f5cff6cd731163ee5b1e8 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_d.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_d.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_050_d", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_h.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_h.scenario index f447e0251b896dc6cdcc075595e00b7db88926d7..5531de450fe3de94641ed2a865e4d10f0a8d56ac 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_h.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_050_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_up.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_up.scenario index d85651ae73a614ddc9b6e3b1dc80b9c4ad529142..1139805ecfc9ba9eb3e4868153325ec44e791cb1 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_up.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_050_up.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_050_up", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_d.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_d.scenario index d583c5eb0af45050f22a4271e4ab75bd1efc25fa..35b1a354960dcdbfe5330d8bafb0d77cd897dd1d 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_d.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_d.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_075_d", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_h.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_h.scenario index 6b446573cf408a640abe16961f70edb6ae8e8daf..9a976bed7f707bdb8cd30eb796f6dbd349abc6e0 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_h.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_075_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_up.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_up.scenario index 139c01fce1c40c4a8b790276727d3059af2510ac..9b5b56c8aaf83389b9ae52ac595c43e218591636 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_up.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_075_up.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_075_up", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_d.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_d.scenario index c18a8835d6a6809e5608fe954e0f0e04c40c9193..075a1051cdcb0204b14d5172410a4c9773dc710e 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_d.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_d.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_100_d", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_h.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_h.scenario index b20f66f0a301ca1816fbb7fe9a6185a33a5b2d5b..263b48d222b50db22d07d9dc500eaf46540871d9 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_h.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_100_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_up.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_up.scenario index 94d9008179989235667c140e8454aa25689ace70..28a3aa40be6e73e01100407d4454c8af599643db 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_up.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_100_up.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_100_up", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_d.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_d.scenario index 7416cdb9cad066528f0cdf5da8a3da8924ff3b3e..6e7c28e188cd8ff033c7d2cf4d2177db1fdde5e8 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_d.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_d.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_125_d", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_h.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_h.scenario index f6f8262f990ab46136aaee0190072fd3a1dce955..8812db9b5ca5c15a9cdcd9c92d93032375248691 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_h.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_125_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_up.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_up.scenario index 2d3debbc70d1181e299db684ca1c3486b70687d2..f4a34a8c5fc05f4c309c7476d67bd596f07e06da 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_up.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_125_up.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_125_up", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_470_h.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_470_h.scenario index d263605b92284e175269ff4692816e6db2495717..fda9edfa138e37e81336234f731783feb51b0cb5 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_470_h.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_470_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_470_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_550_up.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_550_up.scenario index 4ef59b1ddaab01be8833370e7551fbe8df387b3f..1deb67887c959d03b8430dc25c85452aa4a18524 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_550_up.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_04_flow_osm1_550_up.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_osm1_550_up", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_05_react.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_05_react.scenario index 8ef18b0129b9aa012d913c421b3d412297d31d9c..dee563aba5655cc28b507e292f74d8206c7b5303 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_05_react.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_05_react.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_05_react", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_06_corner.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_06_corner.scenario index f977ddcafee35d54059ff22e6acfeeb765f6aa7c..0a4956eb4202a1d778eb47fe5b4afa0447e98236 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_06_corner.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_06_corner.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_06_corner", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -285,20 +286,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], @@ -354,20 +343,8 @@ "perceivedStimuli" : [ ], "nextPerceivedStimuli" : [ ] }, - "healthStatus" : { - "infectionStatus" : "SUSCEPTIBLE", - "lastInfectionStatusUpdateTime" : -1.0, - "pathogenAbsorbedLoad" : 0.0, - "startBreatheOutPosition" : null, - "respiratoryTimeOffset" : 0.0, - "breathingIn" : false, - "pathogenEmissionCapacity" : 4.0, - "pathogenAbsorptionRate" : 5.0E-4, - "minInfectiousDose" : 3200.0, - "exposedPeriod" : 259000.0, - "infectiousPeriod" : 346000.0, - "recoveredPeriod" : 1.56E7 - }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], "agentsInGroup" : [ ], diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_discrete_ca.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_discrete_ca.scenario index 60fe14ce90045a4a24b19b822caf6ac8c19aae4f..477415673b06be0f00a98a39e285e5da2cd685db 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_discrete_ca.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_discrete_ca.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_07_speeds_discrete_ca", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_nelder_mead.scenario index 97fc454108700782b5c108de0d3303ec838fa53b..109361d6621f202dc9646564fa233e123a428b6b 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_07_speeds_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_pso.scenario index 39cff40620e1be3664c92b6f77915fe0a31d058d..8522bdaf24be0ce8d84bc56032d9f879061e87cf 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_07_speeds_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_07_speeds_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_08_parameter_variation.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_08_parameter_variation.scenario index a768fdcc9e287d81f323287b8f203683f78b672d..1afe96455c1b3b28ca07c4dd2102523a940231de 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_08_parameter_variation.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_08_parameter_variation.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_08_parameter_variation", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_nelder_mead.scenario index 31571e4fdfc1b4c3f4ec495537156feebc8cce27..12b87f6fc6bd6a5afb99a1f4f4787f7174d9fbe3 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_public_room_2_exits_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_pso.scenario index 53c713e381eacaef4ed13c9901d3e22779260098..9a2c3f206a3ddf91ba55875bb634797397e0b8b0 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_2_exits_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_public_room_2_exits_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_nelder_mead.scenario index 5d59ae2b34bd8fb9c937f7a190d90bf408526d06..d493800120d487c795e7ad60068aeafe7bcd5a72 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_public_room_4_exits_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_pso.scenario index e60b20b6566ca0aef77297d5b59628040fe4c3f6..58d84cf3b7959c02ce089aecc0b11fec7d7d22c7 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_09_public_room_4_exits_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_09_public_room_4_exits_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_10_pathfinding.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_10_pathfinding.scenario index f497d783d85fd5ec14a0036fac3994d232752221..69289aee878a6c03c5cb232ba814af50e9d88fa6 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_10_pathfinding.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_10_pathfinding.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_10_pathfinding", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_nelder_mead.scenario index b2de24c4a2fc7bc6a0e062fc68c9344d810ab8bf..8466ab98db78699a82dcac09bd294a474006ca1b 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_11_exit_selection_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_pso.scenario index 44ea45fd1be1d4c42127a04d95896ec5e9f59446..aa9c986250eb5ba2a4e74b7594adee55100367ab 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_11_exit_selection_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_11_exit_selection_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_nelder_mead.scenario index ae904cbd7eebd15e906313816c4db784b53d8c50..b2c0b097560f6aa6064de2a104269556397c391d 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_12_evacuation_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_pso.scenario index 8eda8bfe05768e13d8d9880c4d48590da593ea7a..14e946e5f26d32b132ef8b5a5281c570a7be8ce2 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_12_evacuation_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_12_evacuation_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ { diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_nelder_mead.scenario index bcb9e798a79052cd89ce861130e9a19b94151197..04153121210c40e3db25b961c76b26c718f7710a 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_13_stairs_long_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_pso.scenario index a17055e5dfb47f9fe6ea659bf34d96bbe9919c08..ea7b0a8df58a8f82deda0621df40e2a732f2717a 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_long_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_13_stairs_long_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_nelder_mead.scenario index 64989fb803b891b30454d8d0ab451e50221a1169..e08658bf92a92204ec1edc6cd559fd642aff963e 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_13_stairs_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_pso.scenario index dec3997efc632bcbf361e64fe4216cf3e686fd42..d4c0ff4761aa9325af4d1d347dc6bc00fa3030f3 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_13_stairs_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_13_stairs_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_nelder_mead.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_nelder_mead.scenario index 181264856ef9f0ff7263ae2f9ab47bd1732e43e0..97ae5120b22cf13c605c929e1c0f445132acf363 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_nelder_mead.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_nelder_mead.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_14_select_route_nelder_mead", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_pso.scenario b/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_pso.scenario index 36a8743fa87fb5f670602b640a884c9aca9bd702..9f6de576e6b54c4bbc231010d2cbeb35e42bf887 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_pso.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/rimea_14_select_route_pso.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_14_select_route_pso", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_nelder_mead_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_nelder_mead_ok.scenario index cc84e86b3c6611692ba1a6edd49d30feb56f7ae0..a4d0d7e12f467c8facc07834c7617bd0b73c36fa 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_nelder_mead_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_nelder_mead_ok.scenario @@ -1,7 +1,8 @@ { "name" : "see_small_wall_nelder_mead_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_pso_fail.scenario b/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_pso_fail.scenario index e162725d7d3be92ac3846dff4d02ef2370e81af6..c3475a6d124de0b33d28982927a5687800a6e83a 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_pso_fail.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/see_small_wall_pso_fail.scenario @@ -1,7 +1,8 @@ { "name" : "see_small_wall_pso_fail", "description" : "The particle swarm optimizer does not use the attribute seeSmallWalls.", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_discrete_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_discrete_ok.scenario index 6f328e8880f8e89a7889d7e64004a0c95880b0c9..c1b35d253d09371a9ffdb7c7bfac22c19fdd6d05 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_discrete_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_discrete_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thick_wall_discrete_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_nelder_mead_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_nelder_mead_ok.scenario index 9965f1032a6510deac84f0ebdd61a4d4c295e751..f4f52d548d87b8431502a491867cc11e50c86e1a 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_nelder_mead_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_nelder_mead_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thick_wall_nelder_mead_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_pso_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_pso_ok.scenario index 9448a2979973a803027cdcdb09e2ac2e745f4bdf..68d7593374140396fc84687f82cc7804ca01f3f3 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_pso_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thick_wall_pso_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thick_wall_pso_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_discrete_could_fail.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_discrete_could_fail.scenario index 7f840b736fc8875b40242f0fad035b0898818987..12680c2d826bdb906ddd7f4a4d940875f5c39831 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_discrete_could_fail.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_discrete_could_fail.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_and_closer_source_discrete_could_fail", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_nelder_mead_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_nelder_mead_ok.scenario index ff3ee567ea8c8342110aa2dd661f330c9d2d6c04..b997a9e01f0e5b971398d913610d193385f3fe7c 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_nelder_mead_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_nelder_mead_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_and_closer_source_nelder_mead_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_pso_could_fail.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_pso_could_fail.scenario index fb4200e9cdd2f5d06654373ddc6d767acb27eeec..f03508cfae3727c0ea45f0977130d0c33cc36761 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_pso_could_fail.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_and_closer_source_pso_could_fail.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_and_closer_source_pso_could_fail", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_discrete_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_discrete_ok.scenario index 00293358bae773207863c4cc2bee9feb108e87b4..17e47d5bd5d4d2ee1cda81eadb315195fdf25541 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_discrete_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_discrete_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_discrete_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_nelder_mead_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_nelder_mead_ok.scenario index aacfe1a68092fa9be93a768fd0fd527a8bbee972..ca5865052f794774e7eac6edb4d79cef1284afe7 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_nelder_mead_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_nelder_mead_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_nelder_mead_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_pso_ok.scenario b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_pso_ok.scenario index c968f9d304e93534eb637db1fdebed14b5980074..acd0e5d519a8cdc0429d0be003006f76504a2980 100644 --- a/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_pso_ok.scenario +++ b/Scenarios/ModelTests/TestOSM/scenarios/thin_wall_pso_ok.scenario @@ -1,7 +1,8 @@ { "name" : "thin_wall_pso_ok", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior.scenario index 03ef56cd1be5916121e8f13913719b8fd1f74b8a..531009375eae6419ca0df07dfd7e4ccc5be948e1 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/VadereSimulation-GroupBehavior.scenario @@ -1,7 +1,8 @@ { "name" : "VadereSimulation-GroupBehavior", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -178,6 +179,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -244,6 +247,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source1Place.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source1Place.scenario index 5f632e602c05f3a1a8d2a438bb49237580a1363e..d131d0bd97000c0d722ec46c52d052d5a2e93c1b 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source1Place.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source1Place.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_1Source1Place", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -159,6 +160,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -201,6 +204,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source2Places.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source2Places.scenario index 071e491f40308a9a126a3ef647c57e69af970e2f..8e1333d813aae7060a8a71c5d3bf1a321c8eef98 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source2Places.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_1Source2Places.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_1Source2Places", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -171,6 +172,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -237,6 +240,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place.scenario index 26330acc783901f92201028b25d2cad1e201f500..0d933e8564e3c71329cba5f5b26d0d2dec31fa12 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_2Sources1Place", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -153,6 +154,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -219,6 +222,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place_2Group_and_3Group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place_2Group_and_3Group.scenario index f73fb73c2e058a3aa1fe1ecda9e32d9caab8ad2e..f3a366427b1535bc0278f2cd9bc195fcafa881ab 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place_2Group_and_3Group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_2Sources1Place_2Group_and_3Group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_2Sources1Place_2Group_and_3Group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -171,6 +172,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -237,6 +240,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_4Source4Place_SEQ_2G_3G_4G_5G.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_4Source4Place_SEQ_2G_3G_4G_5G.scenario index 95f7b7b0011e97a4988cf276ca14196aa1b13ea7..f6a068add494e1b539e704bdd374b210efc03db4 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_4Source4Place_SEQ_2G_3G_4G_5G.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_4Source4Place_SEQ_2G_3G_4G_5G.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_4Source4Place_SEQ_2G_3G_4G_5G", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -189,6 +190,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -303,6 +306,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_EVD_2G_3G_4G_5G.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_EVD_2G_3G_4G_5G.scenario index 67b755b9df501621b304f50ac84207a6f3eabef9..4d99f91ac65ab93e784e987883e9da02a829939e 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_EVD_2G_3G_4G_5G.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_EVD_2G_3G_4G_5G.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_4Source4Place_v2_EVD_2G_3G_4G_5G", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -223,6 +224,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -337,6 +340,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_SEQ_2G_3G_4G_5G.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_SEQ_2G_3G_4G_5G.scenario index 6f8fd066b4ae991f62cdfb6329ed4198b73ab76b..d86ae5ff36d3f4cf288919c8a71edd1f394e3b8a 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_SEQ_2G_3G_4G_5G.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_4Source4Place_v2_SEQ_2G_3G_4G_5G.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_4Source4Place_v2_SEQ_2G_3G_4G_5G", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -223,6 +224,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -337,6 +340,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_1group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_1group.scenario index 4f1aaf00655a06c48c51749a8fd8205a4e0215b3..8ffb341d4f83fdc021b12bffce557e4f41ae109c 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_1group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_1group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_classroom_1group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -267,6 +268,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -309,11 +312,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -360,11 +369,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -411,11 +426,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -462,11 +483,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -513,11 +540,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -564,11 +597,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -615,11 +654,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -666,11 +711,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -717,11 +768,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 9 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -768,11 +825,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 10 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -819,11 +882,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 11 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -870,11 +939,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 12 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -921,11 +996,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 13 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -972,11 +1053,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 14 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1023,11 +1110,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 15 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1074,11 +1167,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 16 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1125,11 +1224,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 17 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1176,11 +1281,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 18 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1227,11 +1338,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 19 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1278,11 +1395,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 20 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1329,11 +1452,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 21 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1380,11 +1509,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 22 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1431,11 +1566,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 23 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1482,11 +1623,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 24 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1533,11 +1680,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 25 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1584,11 +1737,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 26 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1635,11 +1794,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 27 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1686,11 +1851,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 28 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1737,11 +1908,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 29 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1788,11 +1965,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 30 ], "groupSizes" : [ 1 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1815,6 +1998,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_2group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_2group.scenario index 1296d974529881301fd8b91bfc709d5da6bd1cee..68259557cea7ab88c6f424e760c6ee60a60b990b 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_2group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_2group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_classroom_2group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -267,6 +268,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -309,11 +312,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -360,11 +369,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -411,11 +426,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -462,11 +483,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -513,11 +540,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -564,11 +597,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -615,11 +654,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -666,11 +711,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -717,11 +768,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -768,11 +825,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -819,11 +882,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -870,11 +939,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -921,11 +996,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -972,11 +1053,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1023,11 +1110,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1074,11 +1167,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1125,11 +1224,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 9 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1176,11 +1281,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 9 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1227,11 +1338,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 10 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1278,11 +1395,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 10 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1329,11 +1452,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 11 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1380,11 +1509,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 11 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1431,11 +1566,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 12 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1482,11 +1623,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 12 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1533,11 +1680,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 13 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1584,11 +1737,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 13 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1635,11 +1794,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 14 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1686,11 +1851,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 14 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1737,11 +1908,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 15 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1788,11 +1965,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 15 ], "groupSizes" : [ 2 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1815,6 +1998,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_3group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_3group.scenario index f5b05fa0f6ecce058b8e0c0389213cd5f3c75e34..895e00767cf7138adbe40932213dae17c0e6ca7b 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_3group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_3group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_classroom_3group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -267,6 +268,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -309,11 +312,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -360,11 +369,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -411,11 +426,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -462,11 +483,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -513,11 +540,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -564,11 +597,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -615,11 +654,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -666,11 +711,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -717,11 +768,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -768,11 +825,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -819,11 +882,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -870,11 +939,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -921,11 +996,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -972,11 +1053,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1023,11 +1110,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1074,11 +1167,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1125,11 +1224,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1176,11 +1281,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1227,11 +1338,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1278,11 +1395,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1329,11 +1452,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1380,11 +1509,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1431,11 +1566,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1482,11 +1623,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1533,11 +1680,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 9 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1584,11 +1737,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 9 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1635,11 +1794,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 9 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1686,11 +1851,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 10 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1737,11 +1908,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 10 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1788,11 +1965,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 10 ], "groupSizes" : [ 3 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1815,6 +1998,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_4group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_4group.scenario index a603d36aa8ca271bf60ea7473b3cf1f2bbf6f446..c41a15a5da9ade8e6ace475209c48344bd84b17b 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_4group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_classroom_4group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_classroom_4group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -267,6 +268,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -309,11 +312,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -360,11 +369,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -411,11 +426,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -462,11 +483,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 1 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -513,11 +540,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -564,11 +597,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -615,11 +654,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -666,11 +711,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 2 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -717,11 +768,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -768,11 +825,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -819,11 +882,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -870,11 +939,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 3 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -921,11 +996,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -972,11 +1053,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1023,11 +1110,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1074,11 +1167,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 4 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1125,11 +1224,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1176,11 +1281,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1227,11 +1338,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1278,11 +1395,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 5 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1329,11 +1452,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1380,11 +1509,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1431,11 +1566,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1482,11 +1623,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 6 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1533,11 +1680,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1584,11 +1737,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1635,11 +1794,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1686,11 +1851,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 7 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1737,11 +1908,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1788,11 +1965,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ 8 ], "groupSizes" : [ 4 ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1815,6 +1998,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_15group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_15group.scenario index 04a98021eb79501d72b4827c3a0c065ebd04ddb4..b16ab9fb4cb3614443090f0da046b67e39b0ff07 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_15group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_15group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_labratory_15group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -240,6 +241,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -282,6 +285,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_1group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_1group.scenario index 0d52c329a832f778b0d2a5529a76ad2d7dc94f7e..a9e825399d092415a94c53deb67b42e24a03f408 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_1group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_1group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_labratory_1group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -240,6 +241,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -282,6 +285,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_25group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_25group.scenario index 020afac58243fb895a08e752c6e225ac40a0dd4f..84c999dd970d47a08581a491376aec208560f3b6 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_25group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_25group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_labratory_25group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -240,6 +241,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -282,6 +285,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_2group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_2group.scenario index d705eb1408b3d584a01c3271c54ab2fd58813d43..6392480f4dc3e17d1a4de8a20116ecc7a526ebaf 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_2group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_2group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_labratory_2group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -240,6 +241,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -282,6 +285,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_4group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_4group.scenario index e61775b733fffa2e1960a35495e82b79930bab54..fe03c68833a32c8cbf0dce17f8de5e95e5fccc35 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_4group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_CGM_labratory_4group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_CGM_labratory_4group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -240,6 +241,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -282,6 +285,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_2Group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_2Group.scenario index 3af7c5e55391ab0c74b888b2c0620a53414cfb6c..b47f29cb11e0311a66131c04c877ef25eda4ea6e 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_2Group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_2Group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_long_corr_2Group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -150,6 +151,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -192,6 +195,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_3Group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_3Group.scenario index f60ee81b21e04230cdd57d418a5b065a260d4531..eccc7b8f09459a611600c12713a0f29642e114e3 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_3Group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_3Group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_long_corr_3Group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -138,6 +139,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -180,6 +183,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_4Group.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_4Group.scenario index 896bd3c4e73aea01509341f413ab079f4f3a233e..41901dc3f0b5627d2d867cd9e51a4b9cc0faa57e 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_4Group.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_long_corr_4Group.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_long_corr_4Group", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -138,6 +139,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -180,6 +183,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_target_changer.scenario b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_target_changer.scenario index cacfdbbbcd872bdb95e304a9068f5c42d041075f..d9e5cae04c9a35d93e33db8b2673ec6ceb0ae4de 100644 --- a/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_target_changer.scenario +++ b/Scenarios/ModelTests/TestOSMGroup/scenarios/group_OSM_target_changer.scenario @@ -1,7 +1,8 @@ { "name" : "group_OSM_target_changer", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -180,6 +181,8 @@ "probabilityToChangeTarget" : [ 1.0 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -191,7 +194,7 @@ }, "interSpawnTimeDistribution" : "constant", "distributionParameters" : { - "updateFrequency" : 3.0 + "updateFrequency" : 3.0 }, "spawnNumber" : 2, "maxSpawnNumberTotal" : 100, @@ -213,10 +216,10 @@ "height" : 1.5, "type" : "RECTANGLE" }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, + "interSpawnTimeDistribution" : "constant", + "distributionParameters" : { + "updateFrequency" : 1.0 + }, "spawnNumber" : 1, "maxSpawnNumberTotal" : -1, "startTime" : 0.0, @@ -249,4 +252,4 @@ "stimulusInfos" : [ ], "reactionProbabilities" : [ ] } -} +} \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOVM/scenarios/basic_5_1_roadReachTarget_ovm1.scenario b/Scenarios/ModelTests/TestOVM/scenarios/basic_5_1_roadReachTarget_ovm1.scenario index 95032131716f8dd7cadde973b3a1d08f594db594..d4fe9cd5dcb1d0a9e61ce8e22c717900b6aea1ef 100644 --- a/Scenarios/ModelTests/TestOVM/scenarios/basic_5_1_roadReachTarget_ovm1.scenario +++ b/Scenarios/ModelTests/TestOVM/scenarios/basic_5_1_roadReachTarget_ovm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_5_1_roadReachTarget_ovm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -103,6 +104,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -145,6 +148,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOVM/scenarios/basic_5_2_roadReachTarget_ovm1.scenario b/Scenarios/ModelTests/TestOVM/scenarios/basic_5_2_roadReachTarget_ovm1.scenario index 0a4dac7d7a66e51e9079afea5378162a3ff41b5f..9135f5097d325e50df9a16a2fc8c0279bbcb1a12 100644 --- a/Scenarios/ModelTests/TestOVM/scenarios/basic_5_2_roadReachTarget_ovm1.scenario +++ b/Scenarios/ModelTests/TestOVM/scenarios/basic_5_2_roadReachTarget_ovm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_5_2_roadReachTarget_ovm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -120,6 +121,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -162,6 +165,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestOVM/scenarios/testtrafficlight.scenario b/Scenarios/ModelTests/TestOVM/scenarios/testtrafficlight.scenario index 2d7efb1db262bdab6f2d3141ae6c0e22cb460a1f..7619fd9ba818703f15b273459260cf0c4751982b 100644 --- a/Scenarios/ModelTests/TestOVM/scenarios/testtrafficlight.scenario +++ b/Scenarios/ModelTests/TestOVM/scenarios/testtrafficlight.scenario @@ -1,7 +1,8 @@ { "name" : "testtrafficlight", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -134,6 +135,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -176,6 +179,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/01-SimplifiedExperiment-OSMEventDriven-PsychDisabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/01-SimplifiedExperiment-OSMEventDriven-PsychDisabled.scenario index 785212abdc60cbb6935ee5ed276e063401f34b68..ca22dcf822bcea467ffae64e561cc3d49f9c930a 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/01-SimplifiedExperiment-OSMEventDriven-PsychDisabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/01-SimplifiedExperiment-OSMEventDriven-PsychDisabled.scenario @@ -1,7 +1,8 @@ { "name" : "01-SimplifiedExperiment-OSMEventDriven-PsychDisabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -215,11 +218,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -266,11 +275,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -317,11 +332,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -368,11 +389,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -419,11 +446,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -470,11 +503,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -521,11 +560,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -572,11 +617,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -623,11 +674,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -674,11 +731,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -725,11 +788,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -776,11 +845,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -827,11 +902,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -854,6 +935,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/02-SimpliefiedExperiment-OSMEventDriven-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/02-SimpliefiedExperiment-OSMEventDriven-PsychEnabled.scenario index db2f748deda24900ebbcc0c7bf4556b0bebdb863..2439fcc34a87eef1ed7437b31956e5a2c4f50e2c 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/02-SimpliefiedExperiment-OSMEventDriven-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/02-SimpliefiedExperiment-OSMEventDriven-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "02-SimpliefiedExperiment-OSMEventDriven-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -215,11 +218,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -266,11 +275,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -317,11 +332,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -368,11 +389,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -419,11 +446,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -470,11 +503,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -521,11 +560,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -572,11 +617,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -623,11 +674,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -674,11 +731,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -725,11 +788,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -776,11 +845,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -827,11 +902,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -854,6 +935,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/03-SimplifiedExperiment-OSMEventDriven-PsychEnabled-PersonalSpacedAdapted.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/03-SimplifiedExperiment-OSMEventDriven-PsychEnabled-PersonalSpacedAdapted.scenario index 593b74e24b812731d2b070aceecc622fc08e88b0..1775dc58fcabaf2efc966625d77cc01df5c5f8b3 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/03-SimplifiedExperiment-OSMEventDriven-PsychEnabled-PersonalSpacedAdapted.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/03-SimplifiedExperiment-OSMEventDriven-PsychEnabled-PersonalSpacedAdapted.scenario @@ -1,7 +1,8 @@ { "name" : "03-SimplifiedExperiment-OSMEventDriven-PsychEnabled-PersonalSpacedAdapted", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -215,11 +218,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -266,11 +275,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -317,11 +332,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -368,11 +389,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -419,11 +446,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -470,11 +503,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -521,11 +560,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -572,11 +617,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -623,11 +674,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -674,11 +731,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -725,11 +788,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -776,11 +845,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -827,11 +902,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -854,6 +935,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/04-SimplifiedExperiment-OSMSequential-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/04-SimplifiedExperiment-OSMSequential-PsychEnabled.scenario index 86602116845eeec2d3334c0577023add58b33db7..68e73a3ea6790d3d126ff7d770f77f145c58bf13 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/04-SimplifiedExperiment-OSMSequential-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/04-SimplifiedExperiment-OSMSequential-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "04-SimplifiedExperiment-OSMSequential-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -215,11 +218,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -266,11 +275,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -317,11 +332,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -368,11 +389,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -419,11 +446,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -470,11 +503,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -521,11 +560,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -572,11 +617,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -623,11 +674,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -674,11 +731,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -725,11 +788,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -776,11 +845,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -827,11 +902,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -854,6 +935,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/05-SimplifiedExperiment-SFM-PsychDisabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/05-SimplifiedExperiment-SFM-PsychDisabled.scenario index c43bd4cbb290f1f66a65c174ea6d40e0064d06b5..7900f6ad322fbf6e95cf34c64d27cd45908e932b 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/05-SimplifiedExperiment-SFM-PsychDisabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/05-SimplifiedExperiment-SFM-PsychDisabled.scenario @@ -1,7 +1,8 @@ { "name" : "05-SimplifiedExperiment-SFM-PsychDisabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -154,6 +155,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -220,11 +223,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -271,11 +280,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -322,11 +337,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -373,11 +394,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -424,11 +451,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -475,11 +508,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -526,11 +565,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -577,11 +622,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -628,11 +679,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -679,11 +736,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -730,11 +793,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -781,11 +850,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -832,11 +907,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -883,11 +964,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -934,11 +1021,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -985,11 +1078,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1036,11 +1135,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -1063,6 +1168,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/06-OriginalExperiment-OSMEventDriven-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/06-OriginalExperiment-OSMEventDriven-PsychEnabled.scenario index 082a32c216d9ca8c06827eb46ec8d034f4e434d2..5846fe4b215a21c31b10eaf3890baa0220708660 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/06-OriginalExperiment-OSMEventDriven-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/06-OriginalExperiment-OSMEventDriven-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "06-OriginalExperiment-OSMEventDriven-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -194,6 +195,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -260,11 +263,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -311,11 +320,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -362,11 +377,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -413,11 +434,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -464,11 +491,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -515,11 +548,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -566,11 +605,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -617,11 +662,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -668,11 +719,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -719,11 +776,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -770,11 +833,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -821,11 +890,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -872,11 +947,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -899,6 +980,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/07-CounterFlow-OSMSequential-PsychDisabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/07-CounterFlow-OSMSequential-PsychDisabled.scenario index 0eace42ccef21c8db83a8f7436643e5b27af9537..a62157bf1fd7da9b9d2faa3d5bbd8a020c21dc97 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/07-CounterFlow-OSMSequential-PsychDisabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/07-CounterFlow-OSMSequential-PsychDisabled.scenario @@ -1,7 +1,8 @@ { "name" : "07-CounterFlow-OSMSequential-PsychDisabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -166,6 +167,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -232,6 +235,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/08-CounterFlow-OSMSequential-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/08-CounterFlow-OSMSequential-PsychEnabled.scenario index af352ba6acc344e8897ec0c4afb1c64ad0ccaf26..6db2fe8edfa3b2cddeabffc28923c19cdc188639 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/08-CounterFlow-OSMSequential-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/08-CounterFlow-OSMSequential-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "08-CounterFlow-OSMSequential-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -166,6 +167,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -232,6 +235,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/09-CounterFlow-OSMSequential-PsychEnabled-SearchRadiusAdapted.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/09-CounterFlow-OSMSequential-PsychEnabled-SearchRadiusAdapted.scenario index 876e372ed10ca6fda2acc986adff26cb4205008b..0e582bd8747062f659408da16680890b7d6ed410 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/09-CounterFlow-OSMSequential-PsychEnabled-SearchRadiusAdapted.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/09-CounterFlow-OSMSequential-PsychEnabled-SearchRadiusAdapted.scenario @@ -1,7 +1,8 @@ { "name" : "09-CounterFlow-OSMSequential-PsychEnabled-SearchRadiusAdapted", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -166,6 +167,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -232,6 +235,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/10-UnidirectionalFlow-OSMSequential-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/10-UnidirectionalFlow-OSMSequential-PsychEnabled.scenario index a31abb36fb670dae7e4690e776904e49776208b8..6077090ba4d0f7d3de2f3e60be6ea99028e164fd 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/10-UnidirectionalFlow-OSMSequential-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/10-UnidirectionalFlow-OSMSequential-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "10-UnidirectionalFlow-OSMSequential-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -191,6 +194,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/11-CounterFlowChicken-OSMEventDriven-PsychDisabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/11-CounterFlowChicken-OSMEventDriven-PsychDisabled.scenario index edacd87ae6be907cafb22949f88b746250c302c2..1724310c6542172a1c50b23ee4efa0a82831f7a9 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/11-CounterFlowChicken-OSMEventDriven-PsychDisabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/11-CounterFlowChicken-OSMEventDriven-PsychDisabled.scenario @@ -1,7 +1,8 @@ { "name" : "11-CounterFlowChicken-OSMEventDriven-PsychDisabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -202,6 +203,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -268,6 +271,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/12-CounterFlowChicken-OSMEventDriven-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/12-CounterFlowChicken-OSMEventDriven-PsychEnabled.scenario index d35c18e314f6b1ef55145ed2f90ac79eff8f40db..06d44398a1bbd5b471f05772415a6925146f4332 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/12-CounterFlowChicken-OSMEventDriven-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/12-CounterFlowChicken-OSMEventDriven-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "12-CounterFlowChicken-OSMEventDriven-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -202,6 +203,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -268,6 +271,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/13-RiMEA11-ExitSelection-OSMEventDriven-PsychDisabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/13-RiMEA11-ExitSelection-OSMEventDriven-PsychDisabled.scenario index 65f728820c693a205043691a2dc21d5ec3c0c425..5909cd7c4be692639aab6bfd1debddd775a20bc0 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/13-RiMEA11-ExitSelection-OSMEventDriven-PsychDisabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/13-RiMEA11-ExitSelection-OSMEventDriven-PsychDisabled.scenario @@ -1,7 +1,8 @@ { "name" : "13-RiMEA11-ExitSelection-OSMEventDriven-PsychDisabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -215,6 +216,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -257,6 +260,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/14-RiMEA11-ExitSelection-OSMEventDriven-PsychEnabled.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/14-RiMEA11-ExitSelection-OSMEventDriven-PsychEnabled.scenario index fdaa13458ad5aa27699b25d6f414c98058d32719..f48bc60661c10ec90f0599c051f072f38dbedaea 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/14-RiMEA11-ExitSelection-OSMEventDriven-PsychEnabled.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/14-RiMEA11-ExitSelection-OSMEventDriven-PsychEnabled.scenario @@ -1,7 +1,8 @@ { "name" : "14-RiMEA11-ExitSelection-OSMEventDriven-PsychEnabled", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -215,6 +216,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -257,6 +260,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/15-ThreatShort-SelfCatThreatModel.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/15-ThreatShort-SelfCatThreatModel.scenario index 14a8a8183926b0d4b2189edb74c126ba974c9fcb..9bf1fa2ed51905fd45a76d244d6a461188a96c1e 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/15-ThreatShort-SelfCatThreatModel.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/15-ThreatShort-SelfCatThreatModel.scenario @@ -1,7 +1,8 @@ { "name" : "15-ThreatShort-SelfCatThreatModel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -204,6 +205,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -294,11 +297,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/16-ThreatLong-SelfCatThreatModel.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/16-ThreatLong-SelfCatThreatModel.scenario index 1fb5e6aa18ec7b7dc3fe3e087f60a7ad2e9b5b0c..9568480c4418994fff5cf4b23033170c5b8598ae 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/16-ThreatLong-SelfCatThreatModel.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/16-ThreatLong-SelfCatThreatModel.scenario @@ -1,7 +1,8 @@ { "name" : "16-ThreatLong-SelfCatThreatModel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -204,6 +205,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -294,11 +297,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/17-Threat-ImitatingBehavior-SelfCatThreatModel.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/17-Threat-ImitatingBehavior-SelfCatThreatModel.scenario index af120a44b4d98630bed45c684fb636152fbb894b..dc39f0e3db70d41d239e2161dd138fd57e5f5b4c 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/17-Threat-ImitatingBehavior-SelfCatThreatModel.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/17-Threat-ImitatingBehavior-SelfCatThreatModel.scenario @@ -1,7 +1,8 @@ { "name" : "17-Threat-ImitatingBehavior-SelfCatThreatModel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -234,6 +235,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -324,11 +327,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -375,11 +384,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "IN_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -426,11 +441,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/18-ScriptAgents-ChangeTargetScriptedCognitionModel.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/18-ScriptAgents-ChangeTargetScriptedCognitionModel.scenario index 26661b4531bdc75af886d281e567dd77dfcecf2c..ec8ff97244153e3ba34bce6af2c7cf6226efb2ce 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/18-ScriptAgents-ChangeTargetScriptedCognitionModel.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/18-ScriptAgents-ChangeTargetScriptedCognitionModel.scenario @@ -1,7 +1,8 @@ { "name" : "18-ScriptAgents-ChangeTargetScriptedCognitionModel", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -200,6 +201,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/19-DistanceRecommendation-SocialDistancing-OSMEventSDriven.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/19-DistanceRecommendation-SocialDistancing-OSMEventSDriven.scenario index 657c7b5c55cc730217f821f6e368695a72a13f77..be168aecba7d57eb88f2f4e6c2a94f3d47efba6e 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/19-DistanceRecommendation-SocialDistancing-OSMEventSDriven.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/19-DistanceRecommendation-SocialDistancing-OSMEventSDriven.scenario @@ -1,7 +1,8 @@ { "name" : "19-DistanceRecommendation-SocialDistancing-OSMEventSDriven", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/20-DistanceRecommendation-SocialDistancing_clogging.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/20-DistanceRecommendation-SocialDistancing_clogging.scenario index e55c18341ade6ff77d6c59b85ab79dc3df0a7f01..ac022a044e90082624581c9f2d751bf090501c2d 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/20-DistanceRecommendation-SocialDistancing_clogging.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/20-DistanceRecommendation-SocialDistancing_clogging.scenario @@ -1,7 +1,8 @@ { "name" : "20-DistanceRecommendation-SocialDistancing_clogging", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-SocialDistancing_1.5m.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-SocialDistancing_1.5m.scenario index 15ac8b4c9a47009bf51307c485f4f52f8a5d785a..983a597eb365a32e42a85a4ac1cf4be7a40a25c2 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-SocialDistancing_1.5m.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-SocialDistancing_1.5m.scenario @@ -1,7 +1,8 @@ { "name" : "21-Ped-SocialDistancing_1.5m", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-normal_behavior.scenario b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-normal_behavior.scenario index a86f0a0b4bac1e1fd9d2d074fb233b33374391cf..acee5396bfa97fd1a2eccc35b1a068ebb774005f 100644 --- a/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-normal_behavior.scenario +++ b/Scenarios/ModelTests/TestPsychology/CognitionAndBehavior/scenarios/21-Ped-normal_behavior.scenario @@ -1,7 +1,8 @@ { "name" : "21-Ped-normal_behavior", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/01-Wait-OSMSequential.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/01-Wait-OSMSequential.scenario index 924b9e99492928366616923170c115475ff01f3e..c842e020bd32f18a14b5f18915947cf0ccae9ac2 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/01-Wait-OSMSequential.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/01-Wait-OSMSequential.scenario @@ -1,7 +1,8 @@ { "name" : "01-Wait-OSMSequential", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -148,6 +149,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/02-Wait-OSMEventDriven.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/02-Wait-OSMEventDriven.scenario index 9a6a4d62e396f700127b28873fa9a0122cc468c7..82ff539ca57228cc3a9568bcc075a0a272900f52 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/02-Wait-OSMEventDriven.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/02-Wait-OSMEventDriven.scenario @@ -1,7 +1,8 @@ { "name" : "02-Wait-OSMEventDriven", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -148,6 +149,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/03-WaitRecurring-OSMSequential.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/03-WaitRecurring-OSMSequential.scenario index 26926c5433601db8a6492f7a8f1b20a516e1660a..59849fe52d3edabe931e4a796beecc7b8035f512 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/03-WaitRecurring-OSMSequential.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/03-WaitRecurring-OSMSequential.scenario @@ -1,7 +1,8 @@ { "name" : "03-WaitRecurring-OSMSequential", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -148,6 +149,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/04-WaitInArea-OSMSequential.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/04-WaitInArea-OSMSequential.scenario index b6f2e7975664a7fb1e3786d6aa7ac89adb410fb5..82b9166895ec1fc34b61aaf83736be03b2281084 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/04-WaitInArea-OSMSequential.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/04-WaitInArea-OSMSequential.scenario @@ -1,7 +1,8 @@ { "name" : "04-WaitInArea-OSMSequential", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -148,6 +149,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/05-WaitInArea-BHM.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/05-WaitInArea-BHM.scenario index c8f2c640cfd3b3e37c1eb9053115f211f2e25583..dda2249a70500a1e8b9398d8658fc4fd0e1c5b4d 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/05-WaitInArea-BHM.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/05-WaitInArea-BHM.scenario @@ -1,7 +1,8 @@ { "name" : "05-WaitInArea-BHM", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -146,6 +147,8 @@ "probabilityToChangeTarget" : [ 1.0 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/06-Threat-OSMSequential-OneAgent.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/06-Threat-OSMSequential-OneAgent.scenario index caf40eb328caa141832b828f83e66d0dd5d4d2e3..d02c5167691dd120f6ff7b4d53b15b314053f33a 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/06-Threat-OSMSequential-OneAgent.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/06-Threat-OSMSequential-OneAgent.scenario @@ -1,7 +1,8 @@ { "name" : "06-Threat-OSMSequential-OneAgent", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -191,11 +194,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/07-Threat-OSMSequential-MultipleAgents.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/07-Threat-OSMSequential-MultipleAgents.scenario index b1618762a4477eb6429247c033a0475ddb57e346..006c395811b2b5ea478fc3843d5c510041ea6266 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/07-Threat-OSMSequential-MultipleAgents.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/07-Threat-OSMSequential-MultipleAgents.scenario @@ -1,7 +1,8 @@ { "name" : "07-Threat-OSMSequential-MultipleAgents", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -149,6 +150,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -191,11 +194,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -242,11 +251,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -293,11 +308,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, @@ -344,11 +365,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/08-Threat-OSMSequential-OneAgent-OneObstacle.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/08-Threat-OSMSequential-OneAgent-OneObstacle.scenario index da279bdf2e024c801d7e5ff8a7ce2253af6f18fd..7c0eea24acf2a4507135fb15f0e137bf4e67b0fd 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/08-Threat-OSMSequential-OneAgent-OneObstacle.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/08-Threat-OSMSequential-OneAgent-OneObstacle.scenario @@ -1,7 +1,8 @@ { "name" : "08-Threat-OSMSequential-OneAgent-OneObstacle", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -158,6 +159,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ ], "dynamicElements" : [ { "attributes" : { @@ -200,11 +203,17 @@ "selfCategory" : "TARGET_ORIENTED", "groupMembership" : "OUT_GROUP", "knowledgeBase" : { - "knowledge" : [ ] - } + "knowledge" : [ ], + "informationState" : "NO_INFORMATION" + }, + "perceivedStimuli" : [ ], + "nextPerceivedStimuli" : [ ] }, + "healthStatus" : null, + "infectionStatus" : null, "groupIds" : [ ], "groupSizes" : [ ], + "agentsInGroup" : [ ], "trajectory" : { "footSteps" : [ ] }, diff --git a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/09-Wait-Probabilistic-OSMEventDriven.scenario b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/09-Wait-Probabilistic-OSMEventDriven.scenario index 1713554c5ada3f7e910839de44eba4603d1c0166..205a8622c297a684ff4db5612029d65c364c2878 100644 --- a/Scenarios/ModelTests/TestPsychology/Perception/scenarios/09-Wait-Probabilistic-OSMEventDriven.scenario +++ b/Scenarios/ModelTests/TestPsychology/Perception/scenarios/09-Wait-Probabilistic-OSMEventDriven.scenario @@ -1,7 +1,8 @@ { "name" : "09-Wait-Probabilistic-OSMEventDriven", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -131,6 +132,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 2, "shape" : { @@ -190,4 +193,4 @@ "reactionProbability" : 1.0 } ] } -} +} \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/01-Test-TargetChanger-DoesNotChangeTargetIfProbabilityIsZero.scenario b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/01-Test-TargetChanger-DoesNotChangeTargetIfProbabilityIsZero.scenario index b4b26993a082ca67ff0f67c3a93abeac8cc64298..765824aa0afe74bcfbe6ee50e4a1cf41092d2e65 100644 --- a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/01-Test-TargetChanger-DoesNotChangeTargetIfProbabilityIsZero.scenario +++ b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/01-Test-TargetChanger-DoesNotChangeTargetIfProbabilityIsZero.scenario @@ -1,7 +1,8 @@ { "name" : "01-Test-TargetChanger-DoesNotChangeTargetIfProbabilityIsZero", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -193,6 +194,8 @@ "probabilityToChangeTarget" : [ 0.0 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -278,6 +281,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/02-Test-TargetChanger-ChangesTargetIfProbabilityIsOne.scenario b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/02-Test-TargetChanger-ChangesTargetIfProbabilityIsOne.scenario index 2d7203e362e3ad77e8f98d56bfc53695e7d660f6..c333e62662771e167737302512e54bacea685167 100644 --- a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/02-Test-TargetChanger-ChangesTargetIfProbabilityIsOne.scenario +++ b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/02-Test-TargetChanger-ChangesTargetIfProbabilityIsOne.scenario @@ -1,7 +1,8 @@ { "name" : "02-Test-TargetChanger-ChangesTargetIfProbabilityIsOne", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -193,6 +194,8 @@ "probabilityToChangeTarget" : [ 1.0 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -278,6 +281,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/03-Test-TargetChanger-ChangesTargetIfProbabilityIsAHalf.scenario b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/03-Test-TargetChanger-ChangesTargetIfProbabilityIsAHalf.scenario index 93260c52d535e2d5c2d1eddd63406adae1349aa6..03e647cf24c216a03f9743b370e3eebea023a7fb 100644 --- a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/03-Test-TargetChanger-ChangesTargetIfProbabilityIsAHalf.scenario +++ b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/03-Test-TargetChanger-ChangesTargetIfProbabilityIsAHalf.scenario @@ -1,7 +1,8 @@ { "name" : "03-Test-TargetChanger-ChangesTargetIfProbabilityIsAHalf", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -193,6 +194,8 @@ "probabilityToChangeTarget" : [ 0.5 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -278,6 +281,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/04-Test-TargetChanger-SupportsListsOfTargets.scenario b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/04-Test-TargetChanger-SupportsListsOfTargets.scenario index 1404fd1475f4df1f997db2b806990ff9a455dc32..95838a9f69b1e3e99480093e06b200df18d5868c 100644 --- a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/04-Test-TargetChanger-SupportsListsOfTargets.scenario +++ b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/04-Test-TargetChanger-SupportsListsOfTargets.scenario @@ -1,7 +1,8 @@ { "name" : "04-Test-TargetChanger-SupportsListsOfTargets", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -210,6 +211,8 @@ "probabilityToChangeTarget" : [ 1.0 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -295,6 +298,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/05-Test-TargetChanger-CanCreateAListOfTargets.scenario b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/05-Test-TargetChanger-CanCreateAListOfTargets.scenario index c2935741a55b66a05dc7291a7d8e8b415c119706..94cf45ad575d8583f821a32f59012c09c6547067 100644 --- a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/05-Test-TargetChanger-CanCreateAListOfTargets.scenario +++ b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/05-Test-TargetChanger-CanCreateAListOfTargets.scenario @@ -1,7 +1,8 @@ { "name" : "05-Test-TargetChanger-CanCreateAListOfTargets", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -210,6 +211,8 @@ "probabilityToChangeTarget" : [ 1.0, 0.5 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -295,6 +298,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/06-Test-TargetChanger-ChangesToDynamicTarget.scenario b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/06-Test-TargetChanger-ChangesToDynamicTarget.scenario index b1f61ff413352e04c3f8a1b4b1c47eed0ecb12f6..36f63d243b83bb3f60b943414852caa2ed7759a0 100644 --- a/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/06-Test-TargetChanger-ChangesToDynamicTarget.scenario +++ b/Scenarios/ModelTests/TestPsychology/ScenarioElements/scenarios/06-Test-TargetChanger-ChangesToDynamicTarget.scenario @@ -1,7 +1,8 @@ { "name" : "06-Test-TargetChanger-ChangesToDynamicTarget", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -202,6 +203,8 @@ "probabilityToChangeTarget" : [ 1.0 ] } ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 3, "shape" : { @@ -287,6 +290,7 @@ } } }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test.scenario b/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test.scenario index 8eec298366a372eb2b08897454c54cfb03cf0f83..5ad70044b7cf098f0456eac9f2dcb76e7cdfe3f9 100644 --- a/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test.scenario +++ b/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test.scenario @@ -1,7 +1,8 @@ { "name" : "Reynolds_test", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -129,6 +130,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -171,6 +174,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test_displaced.scenario b/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test_displaced.scenario index cd055a0183f6cb6b5cbef1dbd9c7da21a25339ca..bc31c292869f5f2b722e1cf0d3da231ff0a03f01 100644 --- a/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test_displaced.scenario +++ b/Scenarios/ModelTests/TestRSM/scenarios/Reynolds_test_displaced.scenario @@ -1,7 +1,8 @@ { "name" : "Reynolds_test_displaced", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -122,6 +123,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -164,6 +167,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1.scenario index bc7acf26dcaecfadc5da1722d778752557ca12b4..f93484e5c2394c4057269eab6672848aaf15f220 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_1_chicken_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1_displaced.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1_displaced.scenario index 457ee9dbe75741c10ae93b672002767bb3132fde..15b01be40a7d828d11a5f9fbf08e3a13678150bd 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1_displaced.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm1_displaced.scenario @@ -1,7 +1,8 @@ { "name" : "basic_1_chicken_sfm1_displaced", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm2.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm2.scenario index 7ef7a6c3b436035bacfb20bf9246978acfdc23b4..7957547351fadbf11c7f3bea3e1e7167e6ede64d 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm2.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_1_chicken_sfm2.scenario @@ -1,7 +1,8 @@ { "name" : "basic_1_chicken_sfm2", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_2_density_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_2_density_sfm1.scenario index d4fdb26429dac90f911781249bf70cdab52cd844..4e81b6984a60860393f2b78ecdff3fffe232a0a3 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_2_density_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_2_density_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_2_density_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", @@ -161,6 +162,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -203,6 +206,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_3_1_wall_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_3_1_wall_sfm1.scenario index 748fdb689977c38068e968dfc3c1d188bd59299e..caa0ecf3933780fe9947ebb932b1db9cd9e5cf26 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_3_1_wall_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_3_1_wall_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_3_1_wall_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_3_2_wall_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_3_2_wall_sfm1.scenario index 985a523f3845e95bfb102416382254c57a439713..9bfa9ab92a2c4256f1eb4296d6c44d45fab4d87b 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_3_2_wall_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_3_2_wall_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_3_2_wall_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_3_3_wall_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_3_3_wall_sfm1.scenario index b598877bd9be5764b427ce8302bfc882b4d79119..c66821e6f1804322d1e6bd08eb7c78c3e481d6a2 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_3_3_wall_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_3_3_wall_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_3_3_wall_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm1.scenario index e5fe3d1a1442405e5306b708f0199a287e03ec23..b2ec9be6bc8f64387982a1288da7d4ddad4daa12 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_4_1_wall_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm2.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm2.scenario index dc48257397752e87e976c6ca163e29f9583540a3..ceccecd52876982630557d74788491a27f987cef 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm2.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_1_wall_sfm2.scenario @@ -1,7 +1,8 @@ { "name" : "basic_4_1_wall_sfm2", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm1.scenario index 34e2b725637fb57198f4f4091b7440ff1e06aa7f..166de78c9f7334201de370e9559ec7bbe53b4624 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "basic_4_2_wall_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm2.scenario b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm2.scenario index 0ef8b01b1c8991a64771f413eb04aa848cb377d8..6b346b3e4d79ab3fa2400f64da1dbee55b65d8d1 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm2.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/basic_4_2_wall_sfm2.scenario @@ -1,7 +1,8 @@ { "name" : "basic_4_2_wall_sfm2", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -135,6 +136,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -177,6 +180,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm1.scenario index 9f8f3f40795ae266693fa7174c7c63b470baf429..d9f7cc21bc4cb03f5c3e0e4ff5a3e32820c02491 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_01_pathway_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -120,6 +121,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -162,6 +165,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm2.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm2.scenario index 680ce89356095abde0013a57a4d45a2b498485a5..8c5c6594e494dc3b400dca4c363d456c56d9e2f0 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm2.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_01_pathway_sfm2.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_01_pathway_sfm2", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -120,6 +121,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -162,6 +165,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_025_h.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_025_h.scenario index 0fb97cde16288c6d2693bd47eed87eb27f681997..7fb3132bde37adf919f7bd46a8aad7186e9591fe 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_025_h.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_025_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_sfm1_025_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_050_h.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_050_h.scenario index b1b5ffc278d646f1f9b41e9eb72c3c358eb075bc..d2a8db7ff06d32486b20c4daa8df1cb7c9a484ed 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_050_h.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_050_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_sfm1_050_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_075_h.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_075_h.scenario index fbdd37da73d776ed4630ff634b029d8de3cb33f2..1f5fa19bc9e3cb6b50a1d6ed83bf29a0417141a9 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_075_h.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_075_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_sfm1_075_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_100_h.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_100_h.scenario index 0e2d6c9be6989af2141ef009f4fb186c7beb64b7..8b077646c614b3751ab4c75d4582bfb194135f11 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_100_h.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_100_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_sfm1_100_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_125_h.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_125_h.scenario index 240d5bf65b1e6180d97450a93e98698e57445065..79c3bbccba67086370cc3325d0fb5d75dbe3fc2a 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_125_h.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_04_flow_sfm1_125_h.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_04_flow_sfm1_125_h", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -106,6 +107,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -148,6 +151,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_05_react_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_05_react_sfm1.scenario index e8d23336f70f3d1af5fd75becb8333271c8e0b2a..80bdde020ede589fb397c9a7c43bc0604f9e5246 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_05_react_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_05_react_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_05_react_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ ], "processors" : [ ], @@ -124,6 +125,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -166,6 +169,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_06_corner_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_06_corner_sfm1.scenario index 86cd3b3fb36740ed43777531ba2d50e392a5cf66..f8e6224633c7401c78f41a71aecac4ed63e97796 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_06_corner_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_06_corner_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_06_corner_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -165,6 +166,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -207,6 +210,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_07_speeds_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_07_speeds_sfm1.scenario index f92f75a701326ef935226035fc6fbe0dd78be0cf..afb7c145c3339fba150680e1351e87742ca9af1a 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_07_speeds_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_07_speeds_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_07_speeds_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -120,6 +121,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -162,6 +165,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestSFM/scenarios/rimea_10_pathfinding_sfm1.scenario b/Scenarios/ModelTests/TestSFM/scenarios/rimea_10_pathfinding_sfm1.scenario index 853b4c5c7a30dbb710739709ec7748892872043e..be7a6c10b332573cf08ee484467af85c7e81ec4c 100644 --- a/Scenarios/ModelTests/TestSFM/scenarios/rimea_10_pathfinding_sfm1.scenario +++ b/Scenarios/ModelTests/TestSFM/scenarios/rimea_10_pathfinding_sfm1.scenario @@ -1,7 +1,8 @@ { "name" : "rimea_10_pathfinding_sfm1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.PedestrianIdOutputFile", @@ -544,6 +545,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -850,6 +853,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_+1.scenario index 4acb1dfb951fa839031458fdaea0d2996762b016..2c6dfca71934fffe735eb21122226009ae813db0 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_1_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_-1.scenario index f56c96ff0563ad4b0bebf329a69442cbf299dec4..a81ba18aaef6af9b744f5c5a34e21f2d5b42a95e 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_1_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_1_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_+1.scenario index e5927f52cc36c27414e9c7b9c4db947c36dec2f0..ecd44b73392e68fadbed6f96a1c7168d18228cb4 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_2_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_-1.scenario index c1e5a5e94f65a605bebfd4bb74023ab8608b661e..b8e560387d8fb93ad820dc113dac38a0315629a1 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_2_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_2_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_+1.scenario index b89a5d05edb37319ca1676957d0a93d4dc5a195e..60fcaa45db3d13bb9649bb1f36f7d7c3fb6c7c38 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_3_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_-1.scenario index dfda74e540256b18f1e68300c167efd38c9e6c8a..64cb31c2768ac1c82c5b9bbbd574fe749f7d1933 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_3_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_3_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_+1.scenario index 2ab15b8b475e8cae9d5f6428433721b3e8477e9b..f290ed22f0137de4709eafef31132cc2a85eeb08 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_4_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_-1.scenario index 7e381b86099ebb9d0e666e0da2eb7c6fb46cd343..58fb1bcca10c15b17d74c0115c53c926427cef0a 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_4_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_4_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -187,6 +188,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -229,6 +232,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_+1.scenario index c4e0298a15869f98154d51f963a574d905cf0d45..c999d3271140f7ea97edbf878674b5a111057a9c 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_both_1_2_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -204,6 +205,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 20, "shape" : { @@ -270,6 +273,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_-1.scenario index 929c52e325a9f6e3fb0e6b2369a5b882b818aa66..28948b89d09457bc01d15269a2e8f771b7dd24e3 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_1_2_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_both_1_2_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -204,6 +205,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 20, "shape" : { @@ -270,6 +273,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_+1.scenario index 75cad424cef58e6846b4a6bb70b5d05cefd244bf..3c78295bf10a5c572ec9596f49dc13ddadc41869 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_both_3_4_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -204,6 +205,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 4, "shape" : { @@ -270,6 +273,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_-1.scenario index 4b84f56b9467b3e026737b62d499476bbb38b7c3..546e8114874702007caa5f9e04c5b4511601a0ad 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_diagonal_both_3_4_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_diagonal_both_3_4_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -204,6 +205,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : 4, "shape" : { @@ -270,6 +273,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_+1.scenario index 3110d646255fc156700a6c88771b7e6efeaabd0a..9e2cf5408f9c8388c26dc3d8494ee095de7c8963 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_down_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_-1.scenario index a2e227162ef08d92c625a20ea7b10a2cd5612f28..5b6d0707b21ebfcea616e2c9ae779afa3184f921 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_down_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_down_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_+1.scenario index e4ed69c9f84f596c3a91d907b584edc212212daa..1375efa6a09d772af71d520d38e9f23bf9763bf1 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_to_right_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_-1.scenario index 30d578fab7d16637eacee707ec8f06927406020d..1a37de35cddc0bff5a50f3fb4f56f2a9886ba033 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_to_right_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_to_right_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_+1.scenario index 4f63e2d24c858d874fa361c50cee5ae41c9c9953..c22b5be4643a7275f7a274018171263e6fb38377 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_toleft_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_-1.scenario index 62095e396c6a6f55d4dd0670e0cb59e5ef1a56a9..de3c95a8cffb61dc5c7a8b88a9f541edb55703b4 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_toleft_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_toleft_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_+1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_+1.scenario index 78d77321e35e143f501c888f24711c05c3c62903..c439813cbc0067b65fdb9f34465adfdd0b443fc8 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_+1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_+1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_up_+1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_-1.scenario b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_-1.scenario index 3d08b3f32f1493a4b89ce9a39568fa0afb4f5b0b..d17f9cf0f1db387485d601ba1d05cc93b48eee60 100644 --- a/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_-1.scenario +++ b/Scenarios/ModelTests/TestStairs/scenarios/stairs_upward_direction_up_-1.scenario @@ -1,7 +1,8 @@ { "name" : "stairs_upward_direction_up_-1", "description" : "", - "release" : "2.0", + "release" : "2.1", + "commithash" : "4f8202a8bd2a52cd623cfe8d28b5f0627a11d309", "processWriters" : { "files" : [ { "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", @@ -160,6 +161,8 @@ } ], "targetChangers" : [ ], "absorbingAreas" : [ ], + "aerosolClouds" : [ ], + "droplets" : [ ], "sources" : [ { "id" : -1, "shape" : { @@ -202,6 +205,7 @@ "teleporter" : null, "attributesCar" : null }, - "stimulusInfos" : [ ] + "stimulusInfos" : [ ], + "reactionProbabilities" : [ ] } } \ No newline at end of file diff --git a/Scenarios/ModelTests/TestTransmissionModel/scenarios/basic_2_density_discrete_ca_5_sources.scenario b/Scenarios/ModelTests/TestTransmissionModel/scenarios/basic_2_density_discrete_ca_5_sources.scenario deleted file mode 100644 index 5ceeb081d2ea08796a9e2cdaa839c35c7d43b903..0000000000000000000000000000000000000000 --- a/Scenarios/ModelTests/TestTransmissionModel/scenarios/basic_2_density_discrete_ca_5_sources.scenario +++ /dev/null @@ -1,373 +0,0 @@ -{ - "name" : "basic_2_density_discrete_ca_5_sources", - "description" : "", - "release" : "2.0", - "processWriters" : { - "files" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOutputFile", - "filename" : "density.txt", - "processors" : [ 1 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepPedestrianIdOverlapOutputFile", - "filename" : "out.txt", - "processors" : [ 3 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.EventtimePedestrianIdOutputFile", - "filename" : "postvis.traj", - "processors" : [ 6, 7 ] - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.outputfile.TimestepOutputFile", - "filename" : "seir.txt", - "processors" : [ 8 ] - } ], - "processors" : [ { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianDensityCountingProcessor", - "id" : 1, - "attributesType" : "org.vadere.state.attributes.processor.AttributesPedestrianDensityCountingProcessor", - "attributes" : { - "pedestrianPositionProcessorId" : 2, - "radius" : 1.5 - } - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianPositionProcessor", - "id" : 2, - "attributesType" : "org.vadere.state.attributes.processor.AttributesPedestrianPositionProcessor", - "attributes" : { - "interpolate" : true - } - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.PedestrianOverlapProcessor", - "id" : 3 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOverlapsProcessor", - "id" : 4, - "attributesType" : "org.vadere.state.attributes.processor.AttributesNumberOverlapsProcessor", - "attributes" : { - "pedestrianOverlapProcessorId" : 3 - } - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepProcessor", - "id" : 6 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.FootStepTargetIDProcessor", - "id" : 7 - }, { - "type" : "org.vadere.simulator.projects.dataprocessing.processor.NumberOfPedPerInfectionStatusProcessor", - "id" : 8 - } ], - "isTimestamped" : true, - "isWriteMetaData" : false - }, - "scenario" : { - "mainModel" : "org.vadere.simulator.models.osm.OptimalStepsModel", - "attributesModel" : { - "org.vadere.state.attributes.models.AttributesFloorField" : { - "createMethod" : "HIGH_ACCURACY_FAST_MARCHING", - "potentialFieldResolution" : 0.1, - "obstacleGridPenalty" : 0.1, - "targetAttractionStrength" : 1.0, - "cacheType" : "NO_CACHE", - "cacheDir" : "", - "timeCostAttributes" : { - "standardDeviation" : 0.7, - "type" : "UNIT", - "obstacleDensityWeight" : 3.5, - "pedestrianSameTargetDensityWeight" : 3.5, - "pedestrianOtherTargetDensityWeight" : 3.5, - "pedestrianWeight" : 3.5, - "queueWidthLoading" : 1.0, - "pedestrianDynamicWeight" : 6.0, - "loadingType" : "CONSTANT", - "width" : 0.2, - "height" : 1.0 - } - }, - "org.vadere.state.attributes.models.AttributesOSM" : { - "stepCircleResolution" : 18, - "numberOfCircles" : 1, - "optimizationType" : "DISCRETE", - "varyStepDirection" : false, - "movementType" : "ARBITRARY", - "stepLengthIntercept" : 0.4625, - "stepLengthSlopeSpeed" : 0.2345, - "stepLengthSD" : 0.036, - "movementThreshold" : 0.0, - "minStepLength" : 0.4625, - "minimumStepLength" : false, - "maxStepDuration" : 1.7976931348623157E308, - "dynamicStepLength" : false, - "updateType" : "EVENT_DRIVEN", - "seeSmallWalls" : false, - "targetPotentialModel" : "org.vadere.simulator.models.potential.fields.PotentialFieldTargetGrid", - "pedestrianPotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldPedestrianCompactSoftshell", - "obstaclePotentialModel" : "org.vadere.simulator.models.potential.PotentialFieldObstacleCompactSoftshell", - "submodels" : [ "org.vadere.simulator.models.sir.TransmissionModel" ] - }, - "org.vadere.state.attributes.models.AttributesPotentialCompactSoftshell" : { - "pedPotentialIntimateSpaceWidth" : 0.45, - "pedPotentialPersonalSpaceWidth" : 1.2, - "pedPotentialHeight" : 50.0, - "obstPotentialWidth" : 0.8, - "obstPotentialHeight" : 6.0, - "intimateSpaceFactor" : 1.2, - "personalSpacePower" : 1, - "intimateSpacePower" : 1 - }, - "org.vadere.state.attributes.models.AttributesTransmissionModel" : { - "transmissionModelSourceParameters" : [ { - "sourceId" : -1, - "infectionStatus" : "SUSCEPTIBLE" - }, { - "sourceId" : 7, - "infectionStatus" : "INFECTIOUS" - } ], - "pedestrianRespiratoryCyclePeriod" : 4.0, - "pedestrianPathogenEmissionCapacity" : 1.0, - "pedestrianPathogenAbsorptionRate" : 0.4, - "pedestrianMinInfectiousDose" : 1.0, - "exposedPeriod" : 2.0, - "infectiousPeriod" : 20.0, - "recoveredPeriod" : 20.0, - "aerosolCloudHalfLife" : 120.0, - "aerosolCloudInitialRadius" : 1, - "dropletsExhalationFrequency" : 0.0, - "dropletsDistanceOfSpread" : 1.5, - "dropletsAngleOfSpreadInDeg" : 30.0, - "dropletsLifeTime" : 1.001, - "dropletsPathogenLoadFactor" : 200.0 - } - }, - "attributesSimulation" : { - "finishTime" : 200.0, - "simTimeStepLength" : 0.4, - "realTimeSimTimeRatio" : 0.0, - "writeSimulationData" : true, - "visualizationEnabled" : true, - "printFPS" : false, - "digitsPerCoordinate" : 2, - "useFixedSeed" : true, - "fixedSeed" : 1, - "simulationSeed" : 1 - }, - "attributesPsychology" : { - "usePsychologyLayer" : false, - "psychologyLayer" : { - "perception" : "SimplePerceptionModel", - "cognition" : "CooperativeCognitionModel" - } - }, - "topography" : { - "attributes" : { - "bounds" : { - "x" : 0.0, - "y" : 0.0, - "width" : 38.0, - "height" : 12.0 - }, - "boundingBoxWidth" : 0.5, - "bounded" : true, - "referenceCoordinateSystem" : null - }, - "obstacles" : [ { - "shape" : { - "type" : "POLYGON", - "points" : [ { - "x" : 9.0, - "y" : 12.0 - }, { - "x" : 9.0, - "y" : 10.0 - }, { - "x" : 30.0, - "y" : 7.0 - }, { - "x" : 30.0, - "y" : 12.0 - } ] - }, - "id" : 3 - }, { - "shape" : { - "type" : "POLYGON", - "points" : [ { - "x" : 9.0, - "y" : 0.0 - }, { - "x" : 9.0, - "y" : 2.0 - }, { - "x" : 30.0, - "y" : 5.0 - }, { - "x" : 30.0, - "y" : 0.0 - } ] - }, - "id" : 4 - } ], - "measurementAreas" : [ ], - "stairs" : [ ], - "targets" : [ { - "id" : 1, - "absorbing" : true, - "shape" : { - "x" : 35.0, - "y" : 5.0, - "width" : 2.0, - "height" : 2.0, - "type" : "RECTANGLE" - }, - "waitingTime" : 0.0, - "waitingTimeYellowPhase" : 0.0, - "parallelWaiters" : 0, - "individualWaiting" : true, - "deletionDistance" : 0.1, - "startingWithRedLight" : false, - "nextSpeed" : -1.0 - } ], - "targetChangers" : [ ], - "absorbingAreas" : [ ], - "aerosolClouds" : [ ], - "droplets" : [ ], - "sources" : [ { - "id" : 5, - "shape" : { - "x" : 1.0, - "y" : 1.1, - "width" : 5.0, - "height" : 1.8, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 50, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : true, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 6, - "shape" : { - "x" : 1.0, - "y" : 3.1, - "width" : 5.0, - "height" : 1.8, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 50, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : true, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 7, - "shape" : { - "x" : 1.0, - "y" : 5.1, - "width" : 5.0, - "height" : 1.8, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 1, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : true, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 8, - "shape" : { - "x" : 1.0, - "y" : 7.1, - "width" : 5.0, - "height" : 1.8, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 50, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : true, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - }, { - "id" : 9, - "shape" : { - "x" : 1.0, - "y" : 9.1, - "width" : 5.0, - "height" : 1.8, - "type" : "RECTANGLE" - }, - "interSpawnTimeDistribution" : "constant", - "distributionParameters" : { - "updateFrequency" : 1.0 - }, - "spawnNumber" : 50, - "maxSpawnNumberTotal" : -1, - "startTime" : 0.0, - "endTime" : 0.0, - "spawnAtRandomPositions" : true, - "spawnAtGridPositionsCA" : false, - "useFreeSpaceOnly" : true, - "targetIds" : [ 1 ], - "groupSizeDistribution" : [ 1.0 ], - "dynamicElementType" : "PEDESTRIAN", - "attributesPedestrian" : null - } ], - "dynamicElements" : [ ], - "attributesPedestrian" : { - "radius" : 0.195, - "densityDependentSpeed" : false, - "speedDistributionMean" : 1.34, - "speedDistributionStandardDeviation" : 0.26, - "minimumSpeed" : 0.5, - "maximumSpeed" : 2