10#include <tclap/CmdLine.h>
39 std::size_t
const timestep)
42 for (std::size_t j = 0; j < n_node_params; ++j)
47 std::vector<double> data_vec =
56 std::string
const& output_file,
60 std::unique_ptr<FileIO::SwmmInterface> swmm =
67 bool const no_output_file = !swmm->existsSwmmOutputFile();
68 if (!(node_args || link_args) || no_output_file)
71 INFO(
"No output file found.");
79 std::size_t
const n_time_steps(swmm->getNumberOfTimeSteps());
80 INFO(
"Number of simulation time steps: {:d}", n_time_steps);
81 for (std::size_t i = 0; i < n_time_steps; i++)
90 std::string name(basename + std::to_string(i) + extension);
98 std::string
const& base,
99 std::string
const& ext)
103 for (std::size_t i = 0; i < n_objects; ++i)
105 std::string
const obj_name = swmm.
getName(type, i);
106 std::string
const obj_file_name =
107 std::string(base +
"_" + type_str +
"_" + obj_name + ext);
113 std::string output_file,
114 bool const node_args,
115 bool const link_args,
116 bool const catchment_args,
117 bool const system_args)
119 std::unique_ptr<FileIO::SwmmInterface> swmm =
124 if (!swmm->existsSwmmOutputFile())
126 INFO(
"No output file found, skipping data conversion to CSV.");
130 if (!(node_args || link_args || catchment_args || system_args))
132 INFO(
"No data category selected. Nothing to write.");
149 basename, extension);
153 std::string
const obj_file_name =
154 std::string(basename +
"_system" + extension);
160int main(
int argc,
char* argv[])
163 "Read files for the Storm Water Management Model (SWMM) and converts "
164 "them into OGS data structures.\n\n"
165 "OpenGeoSys-6 software, version " +
168 "Copyright (c) 2012-2024, OpenGeoSys Community "
169 "(http://www.opengeosys.org)",
171 TCLAP::ValueArg<std::string> mesh_output_arg(
172 "m",
"mesh",
"mesh output file (*.vtu)",
false,
"",
"mesh output file");
173 cmd.add(mesh_output_arg);
174 TCLAP::ValueArg<std::string> geo_output_arg(
175 "g",
"geo",
"geometry output file (*.gml)",
false,
"",
176 "geometry output file");
177 cmd.add(geo_output_arg);
178 TCLAP::ValueArg<std::string> csv_output_arg(
179 "c",
"csv",
"csv output file (*.csv)",
false,
"",
"CSV output file");
180 cmd.add(csv_output_arg);
181 TCLAP::ValueArg<std::string> swmm_input_arg(
182 "i",
"input",
"SWMM input file (*.inp)",
true,
"",
"input file");
183 cmd.add(swmm_input_arg);
184 TCLAP::SwitchArg add_nodes_arg(
185 "",
"node_vars",
"Read node variables and add to output mesh");
186 cmd.add(add_nodes_arg);
187 TCLAP::SwitchArg add_links_arg(
188 "",
"link_vars",
"Read link variables and add to output mesh");
189 cmd.add(add_links_arg);
190 TCLAP::SwitchArg add_subcatchments_arg(
191 "",
"subcatchment_vars",
192 "Read subcatchment variables and write to CSV-file");
193 cmd.add(add_subcatchments_arg);
194 TCLAP::SwitchArg add_system_arg(
195 "",
"system_vars",
"Read system variables and write to CSV-file");
196 cmd.add(add_system_arg);
197 cmd.parse(argc, argv);
201 if (!(geo_output_arg.isSet() || mesh_output_arg.isSet() ||
202 csv_output_arg.isSet()))
204 ERR(
"No output format given. Please specify OGS geometry or mesh "
209 if ((add_subcatchments_arg.getValue() || add_system_arg.getValue()) &&
210 !csv_output_arg.isSet())
212 ERR(
"Please specify csv output file for exporting subcatchment or "
213 "system parameters.");
217 if (geo_output_arg.isSet())
218 writeGeoOutput(swmm_input_arg.getValue(), geo_output_arg.getValue());
220 if (mesh_output_arg.isSet())
222 add_nodes_arg.getValue(), add_links_arg.getValue());
224 if (csv_output_arg.isSet())
226 csv_output_arg.getValue(),
227 add_nodes_arg.getValue(),
228 add_links_arg.getValue(),
229 add_subcatchments_arg.getValue(),
230 add_system_arg.getValue());
Definition of the BoostXmlGmlInterface class.
Definition of the GEOObjects class.
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
Definition of the class Properties that implements a container of properties.
Definition of the Mesh class.
int writeCsvOutput(std::string input_file, std::string output_file, bool const node_args, bool const link_args, bool const catchment_args, bool const system_args)
void writeObjectsOfSwmmTypeToCsv(FileIO::SwmmInterface &swmm, FileIO::SwmmObject const type, std::string const &base, std::string const &ext)
int main(int argc, char *argv[])
int writeGeoOutput(std::string input_file, std::string output_file)
int addObjectsToMesh(FileIO::SwmmInterface &swmm, MeshLib::Mesh &mesh, FileIO::SwmmObject const type, std::size_t const timestep)
int writeMeshOutput(std::string const &input_file, std::string const &output_file, bool const node_args, bool const link_args)
Implementation of the VtuInterface class.
std::string writeToString()
Writes the object to a string.
std::size_t getNumberOfObjects(SwmmObject obj_type) const
Returns the number of objects of the given type.
bool writeCsvForObject(std::string const &file_name, SwmmObject obj_type, std::size_t obj_idx) const
Write a CSV file for one object of the given type for all time steps.
std::string getName(SwmmObject obj_type, std::size_t idx) const
Returns the Name for the indexed object of the given type (or an empty string if an error occurred).
static std::unique_ptr< SwmmInterface > create(std::string const &file_name)
std::vector< double > getArrayAtTimeStep(SwmmObject obj_type, std::size_t time_step, std::size_t var_idx) const
Returns an array for a given variable at all nodes/links from a SWMM output file for a given time ste...
static bool addResultsToMesh(MeshLib::Mesh &mesh, SwmmObject const type, std::string const &vec_name, std::vector< double > const &data)
static bool convertSwmmInputToGeometry(std::string const &inp_file_name, GeoLib::GEOObjects &geo_objects, bool add_subcatchments)
Reading a SWMM input file and conversion into OGS geometry.
static std::string swmmObjectTypeToString(SwmmObject const obj_type)
Returns a string with the name of the object type.
std::size_t getNumberOfParameters(SwmmObject obj_type) const
Returns the number of parameters (incl. pollutants) of the given type.
std::string getArrayName(SwmmObject obj_type, std::size_t var_idx) const
Returns the name of the data array for the given object type and parameter index.
Container class for geometric objects.
Reads and writes VtkXMLUnstructuredGrid-files (vtu) to and from OGS data structures....
bool writeToFile(std::filesystem::path const &file_path)
int writeStringToFile(std::string_view content, std::filesystem::path const &file_path)
std::string getFileExtension(const std::string &path)
std::string extractBaseNameWithoutExtension(std::string const &pathname)
std::string dropFileExtension(std::string const &filename)
SwmmObject
SWMM object types.
GITINFOLIB_EXPORT const std::string ogs_version