OpenSWMM Engine  6.0.0-alpha.4
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.4)
Loading...
Searching...
No Matches
NodesHandler.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2//
3// Copyright 2026 Caleb Buahin
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
27
28#ifndef OPENSWMM_ENGINE_NODES_HANDLER_HPP
29#define OPENSWMM_ENGINE_NODES_HANDLER_HPP
30
31#include <vector>
32#include <string>
33
34namespace openswmm { struct SimulationContext; }
35
36namespace openswmm::input {
37
39void handle_junctions(SimulationContext& ctx, const std::vector<std::string>& lines);
40
45void handle_virtual_junctions(SimulationContext& ctx, const std::vector<std::string>& lines);
46
54void handle_inlet_junctions(SimulationContext& ctx, const std::vector<std::string>& lines);
55
57void handle_outfalls(SimulationContext& ctx, const std::vector<std::string>& lines);
58
60void handle_dividers(SimulationContext& ctx, const std::vector<std::string>& lines);
61
63void handle_storage(SimulationContext& ctx, const std::vector<std::string>& lines);
64
66void handle_coordinates(SimulationContext& ctx, const std::vector<std::string>& lines);
67
68} /* namespace openswmm::input */
69
70#endif /* OPENSWMM_ENGINE_NODES_HANDLER_HPP */
Definition CatchmentHandler.cpp:69
void handle_coordinates(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [COORDINATES] — fills spatial.node_x / node_y.
Definition NodesHandler.cpp:384
void handle_virtual_junctions(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [VIRTUAL_JUNCTIONS] — junction-typed nodes with is_virtual = 1.
Definition NodesHandler.cpp:125
void handle_inlet_junctions(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [INLET_JUNCTIONS] — virtual junctions that carry a street inlet.
Definition InfraHandler.cpp:311
void handle_outfalls(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [OUTFALLS] — sets outfall-specific fields for nodes of type OUTFALL.
Definition NodesHandler.cpp:164
void handle_storage(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [STORAGE] — adds storage nodes and their geometry.
Definition NodesHandler.cpp:307
void handle_dividers(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [DIVIDERS] — sets divider-specific fields.
Definition NodesHandler.cpp:243
void handle_junctions(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [JUNCTIONS] into NodeData + node_names.
Definition NodesHandler.cpp:93
Definition NodeCoupling.cpp:16
Central, reentrant simulation context.
Definition SimulationContext.hpp:353