Java Code Examples for org.matsim.api.core.v01.network.Link#setFreespeed()
The following examples show how to use
org.matsim.api.core.v01.network.Link#setFreespeed() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BasicScheduleEditor.java From pt2matsim with GNU General Public License v2.0 | 6 votes |
/** * Adds a link to the network. Uses the attributes (freespeed, nr of lanes, transportModes) * of the attributeLink. */ @Override public void addLink(Id<Link> newLinkId, Id<Node> fromNodeId, Id<Node> toNodeId, Id<Link> attributeLinkId) { Node fromNode = network.getNodes().get(fromNodeId); Node toNode = network.getNodes().get(toNodeId); Link newLink = networkFactory.createLink(newLinkId, fromNode, toNode); if(attributeLinkId != null) { Link attributeLink = network.getLinks().get(attributeLinkId); newLink.setAllowedModes(attributeLink.getAllowedModes()); newLink.setCapacity(attributeLink.getCapacity()); newLink.setFreespeed(attributeLink.getFreespeed()); newLink.setNumberOfLanes(attributeLink.getNumberOfLanes()); } network.addLink(newLink); }
Example 2
Source File: NetworkTools.java From pt2matsim with GNU General Public License v2.0 | 5 votes |
/** * Sets the free speed of all links with the networkMode to the * defined value. */ public static void setFreeSpeedOfLinks(Network network, String networkMode, double freespeedValue) { for(Link link : network.getLinks().values()) { if(link.getAllowedModes().contains(networkMode)) { link.setFreespeed(freespeedValue); } } }
Example 3
Source File: StandardMATSimScenarioTest.java From amodeus with GNU General Public License v2.0 | 4 votes |
private static void makeMultimodal(Scenario scenario) { // Add pt-links to the network to test a multimodal network as it appears in standard MATSim use cases Network network = scenario.getNetwork(); NetworkFactory factory = network.getFactory(); // Let's build a fast track through the scenario for (int i = 0; i < 9; i++) { Id<Link> ptFowardLinkId = Id.createLinkId(String.format("pt_fwd_%d:%d", i, i)); Id<Link> ptBackwardLinkId = Id.createLinkId(String.format("pt_bck_%d:%d", i, i)); Id<Node> fromNodeId = Id.createNodeId(String.format("%d:%d", i, i)); Id<Node> toNodeId = Id.createNodeId(String.format("%d:%d", i + 1, i + 1)); Link ptFowardLink = factory.createLink(ptFowardLinkId, network.getNodes().get(fromNodeId), network.getNodes().get(toNodeId)); ptFowardLink.setFreespeed(100.0 * 1000.0 / 3600.0); ptFowardLink.setLength(1000.0); ptFowardLink.setAllowedModes(Collections.singleton("pt")); network.addLink(ptFowardLink); Link ptBackwardLink = factory.createLink(ptBackwardLinkId, network.getNodes().get(toNodeId), network.getNodes().get(fromNodeId)); ptBackwardLink.setFreespeed(100.0 * 1000.0 / 3600.0); ptBackwardLink.setLength(1000.0); ptBackwardLink.setAllowedModes(Collections.singleton("pt")); network.addLink(ptBackwardLink); } // Also, a routed population may have "pt interaction" activities, which take place at links that are not part of the road network. Amodeus must be able // to // handle these cases. /* for (Person person : scenario.getPopulation().getPersons().values()) * for (Plan plan : person.getPlans()) { * Activity trickyActivity = PopulationUtils.createActivityFromCoordAndLinkId("pt interaction", new Coord(5500.0, 5500.0), Id.createLinkId("pt_fwd_5:5")); * * plan.getPlanElements().add(PopulationUtils.createLeg("walk")); * plan.getPlanElements().add(trickyActivity); * } */ // TODO @sebhoerl Difficult to keep this in as handling of "interaction" activities become much smarter in MATSim now. We would need to // set up a much more realistic test scenario. There is one in the AV package, so we can use that one! for (Link link : network.getLinks().values()) { if (link.getAllowedModes().contains("car")) { link.setAllowedModes(new HashSet<>(Arrays.asList("car", AmodeusModeConfig.DEFAULT_MODE))); } } }
Example 4
Source File: TestScenarioGenerator.java From amodeus with GNU General Public License v2.0 | 4 votes |
static private void generateNetwork(Network network) { NetworkFactory networkFactory = network.getFactory(); for (int i = 0; i < networkSize; i++) { for (int j = 0; j < networkSize; j++) { network.addNode(networkFactory.createNode(Id.createNodeId(String.format("%d:%d", i, j)), new Coord(i * networkScale, j * networkScale))); } } Node fromNode; Node toNode; for (int i = 0; i < networkSize; i++) { for (int j = 1; j < networkSize; j++) { fromNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i, j - 1))); toNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i, j))); network.addLink(networkFactory.createLink(Id.createLinkId(String.format("%s_%s", fromNode.getId(), toNode.getId())), fromNode, toNode)); fromNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i, j))); toNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i, j - 1))); network.addLink(networkFactory.createLink(Id.createLinkId(String.format("%s_%s", fromNode.getId(), toNode.getId())), fromNode, toNode)); } } for (int j = 0; j < networkSize; j++) { for (int i = 1; i < networkSize; i++) { fromNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i - 1, j))); toNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i, j))); network.addLink(networkFactory.createLink(Id.createLinkId(String.format("%s_%s", fromNode.getId(), toNode.getId())), fromNode, toNode)); fromNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i, j))); toNode = network.getNodes().get(Id.createNodeId(String.format("%d:%d", i - 1, j))); network.addLink(networkFactory.createLink(Id.createLinkId(String.format("%s_%s", fromNode.getId(), toNode.getId())), fromNode, toNode)); } } for (Link link : network.getLinks().values()) { link.setFreespeed(freespeed); link.setLength(networkScale); } }
Example 5
Source File: NetworkTools.java From pt2matsim with GNU General Public License v2.0 | 4 votes |
/** * Integrates <tt>network B</tt> into <tt>network A</tt>. Network * A contains all links and nodes of both networks * after integration. */ public static void integrateNetwork(final Network networkA, final Network networkB, boolean mergeModes) { final NetworkFactory factory = networkA.getFactory(); // Nodes for(Node node : networkB.getNodes().values()) { Id<Node> nodeId = Id.create(node.getId().toString(), Node.class); if(!networkA.getNodes().containsKey(nodeId)) { Node newNode = factory.createNode(nodeId, node.getCoord()); networkA.addNode(newNode); } } // Links double capacityFactor = networkA.getCapacityPeriod() / networkB.getCapacityPeriod(); for(Link link : networkB.getLinks().values()) { Id<Link> linkId = Id.create(link.getId().toString(), Link.class); if(!networkA.getLinks().containsKey(linkId)) { Id<Node> fromNodeId = Id.create(link.getFromNode().getId().toString(), Node.class); Id<Node> toNodeId = Id.create(link.getToNode().getId().toString(), Node.class); Link newLink = factory.createLink(linkId, networkA.getNodes().get(fromNodeId), networkA.getNodes().get(toNodeId)); newLink.setAllowedModes(link.getAllowedModes()); newLink.setCapacity(link.getCapacity() * capacityFactor); newLink.setFreespeed(link.getFreespeed()); newLink.setLength(link.getLength()); newLink.setNumberOfLanes(link.getNumberOfLanes()); networkA.addLink(newLink); } else if (mergeModes) { Link existingLink = networkA.getLinks().get(linkId); Set<String> allowedModes = new HashSet<>(); allowedModes.addAll(existingLink.getAllowedModes()); allowedModes.addAll(link.getAllowedModes()); existingLink.setAllowedModes(allowedModes); if (link.getCapacity() * capacityFactor != existingLink.getCapacity()) { throw new IllegalStateException("Capacity must be equal for integration"); } if (link.getFreespeed() != existingLink.getFreespeed()) { throw new IllegalStateException("Freespeed must be equal for integration"); } if (link.getLength() != existingLink.getLength()) { throw new IllegalStateException("Length must be equal for integration"); } if (link.getNumberOfLanes() != existingLink.getNumberOfLanes()) { throw new IllegalStateException("Number of lanes must be equal for integration"); } } } }