-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Handle Vehicles in Simulation
- Loading branch information
Showing
29 changed files
with
1,629 additions
and
1,306 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<vehicleDefinitions xmlns="http://www.matsim.org/files/dtd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.matsim.org/files/dtd http://www.matsim.org/files/dtd/vehicleDefinitions_v1.0.xsd"> | ||
<vehicleType id="car"> | ||
<attributes> | ||
</attributes> | ||
<description>abc</description> | ||
<length meter="9.5"/> | ||
<width meter="3.0"/> | ||
<maximumVelocity meterPerSecond="42.0"/> | ||
<passengerCarEquivalents pce="2.0"/> | ||
<networkMode networkMode="car"/> | ||
<flowEfficiencyFactor factor="1.5"/> | ||
</vehicleType> | ||
<vehicleType id="bike"> | ||
<attributes> | ||
</attributes> | ||
<description>This is a bike</description> | ||
<length meter="2.0"/> | ||
<width meter="1.0"/> | ||
<maximumVelocity meterPerSecond="4.0"/> | ||
<passengerCarEquivalents pce="0.25"/> | ||
<networkMode networkMode="bike"/> | ||
<flowEfficiencyFactor factor="1.5"/> | ||
</vehicleType> | ||
<vehicleType id="walk"> | ||
<attributes> | ||
<attribute name="lod" class="java.lang.String">teleported</attribute> | ||
</attributes> | ||
<description>This is a pair of shoes</description> | ||
<length meter="0.5"/> | ||
<width meter="1.0"/> | ||
<maximumVelocity meterPerSecond="0.85"/> | ||
<passengerCarEquivalents pce="0.1"/> | ||
<networkMode networkMode="walk"/> | ||
<flowEfficiencyFactor factor="10.0"/> | ||
</vehicleType> | ||
</vehicleDefinitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<vehicleDefinitions xmlns="http://www.matsim.org/files/dtd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.matsim.org/files/dtd http://www.matsim.org/files/dtd/vehicleDefinitions_v1.0.xsd"> | ||
<vehicleType id="car"> | ||
<attributes> | ||
</attributes> | ||
<description>abc</description> | ||
<length meter="9.5"/> | ||
<width meter="3.0"/> | ||
<maximumVelocity meterPerSecond="42.0"/> | ||
<passengerCarEquivalents pce="2.0"/> | ||
<networkMode networkMode="car"/> | ||
<flowEfficiencyFactor factor="1.5"/> | ||
</vehicleType> | ||
<vehicleType id="walk"> | ||
<attributes> | ||
<attribute name="lod" class="java.lang.String">teleported</attribute> | ||
</attributes> | ||
<description>This is a pair of shoes</description> | ||
<length meter="0.5"/> | ||
<width meter="1.0"/> | ||
<maximumVelocity meterPerSecond="0.85"/> | ||
<passengerCarEquivalents pce="0.1"/> | ||
<networkMode networkMode="walk"/> | ||
<flowEfficiencyFactor factor="10.0"/> | ||
</vehicleType> | ||
</vehicleDefinitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.