OpenSWMM Engine  6.0.0-alpha.4
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.4)
Loading...
Searching...
No Matches
openswmm_xsect.h
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
59
60#ifndef OPENSWMM_XSECT_H
61#define OPENSWMM_XSECT_H
62
63#include "openswmm_engine.h"
64#include "openswmm_links.h"
65
66#ifdef __cplusplus
67extern "C" {
68#endif
69
71typedef void* SWMM_XSect;
72
85
86/* =========================================================================
87 * Construction / destruction
88 * ========================================================================= */
89
121SWMM_ENGINE_API int swmm_xsect_create(int shape, double geom1, double geom2,
122 double geom3, double geom4,
123 int unit_system, SWMM_XSect* out);
124
153 const double* stations, const double* elevations, int n_pts,
154 double x_left_bank, double x_right_bank,
155 double n_left, double n_channel, double n_right, double length_factor,
156 int unit_system, SWMM_XSect* out);
157
176 double y_full, const double* curve_depths, const double* curve_widths,
177 int n_pts, int unit_system, SWMM_XSect* out);
178
204 double width, double curb_height, double slope, double roughness,
205 double gutter_depression, double gutter_width, int sides,
206 double back_width, double back_slope, double back_roughness,
207 int unit_system, SWMM_XSect* out);
208
231SWMM_ENGINE_API int swmm_link_create_xsect(SWMM_Engine engine, int link_idx,
232 SWMM_XSect* out);
233
242
243/* =========================================================================
244 * Identity
245 * ========================================================================= */
246
254SWMM_ENGINE_API int swmm_xsect_get_shape(SWMM_XSect xsect, int* shape);
255
271SWMM_ENGINE_API int swmm_xsect_get_units(SWMM_XSect xsect, int* unit_system,
272 int* flow_units);
273
285SWMM_ENGINE_API const char* swmm_xsect_shape_name(int shape);
286
287/* =========================================================================
288 * Queries — scalar
289 * ========================================================================= */
290
302 double* area);
303
314 double* width);
315
326 double* hydrad);
327
338 double* depth);
339
350 double* hydrad);
351
362 double* sf);
363
375 double* area);
376
386SWMM_ENGINE_API int swmm_xsect_dsda(SWMM_XSect xsect, double area, double* dsda);
387
398 double* ycrit);
399
416 double* a_full, double* r_full,
417 double* w_max, double* s_full,
418 double* a_max);
419
427SWMM_ENGINE_API int swmm_xsect_is_open(SWMM_XSect xsect, int* is_open);
428
429/* =========================================================================
430 * Queries — array
431 * ========================================================================= */
432/*
433 * Each scalar query above has an `_array` counterpart evaluating `n` inputs in
434 * one call. `in` and `out` must each hold `n` elements and may alias. `n` == 0
435 * is a no-op returning SWMM_OK. A single out-of-domain input fails the whole
436 * call with SWMM_ERR_BADPARAM, leaving `out` unspecified.
437 */
438
441 const double* depth, int n,
442 double* area);
445 const double* depth, int n,
446 double* width);
449 const double* depth, int n,
450 double* hydrad);
453 const double* area, int n,
454 double* depth);
457 const double* area, int n,
458 double* hydrad);
461 const double* area,
462 int n, double* sf);
465 const double* sf, int n,
466 double* area);
468SWMM_ENGINE_API int swmm_xsect_dsda_array(SWMM_XSect xsect, const double* area,
469 int n, double* dsda);
472 const double* flow, int n,
473 double* ycrit);
474
475#ifdef __cplusplus
476}
477#endif
478
479#endif /* OPENSWMM_XSECT_H */
#define SWMM_ENGINE_API
Definition openswmm_2d.h:53
void * SWMM_Engine
Opaque handle to an OpenSWMM Engine instance.
Definition openswmm_callbacks.h:51
OpenSWMM Engine — primary transparent C API (master header).
SWMM_ENGINE_API const char * swmm_xsect_shape_name(int shape)
Get the name of a cross-section shape code.
Definition openswmm_xsect_impl.cpp:470
SWMM_ENGINE_API int swmm_xsect_depth_of_area(SWMM_XSect xsect, double area, double *depth)
Depth of flow for a given area — the inverse of swmm_xsect_area_of_depth().
Definition openswmm_xsect_impl.cpp:497
SWMM_ENGINE_API int swmm_xsect_hydrad_of_area_array(SWMM_XSect xsect, const double *area, int n, double *hydrad)
Array form of swmm_xsect_hydrad_of_area().
Definition openswmm_xsect_impl.cpp:589
SWMM_ENGINE_API int swmm_xsect_hydrad_of_area(SWMM_XSect xsect, double area, double *hydrad)
Hydraulic radius for a given area.
Definition openswmm_xsect_impl.cpp:503
SWMM_ENGINE_API int swmm_xsect_critical_depth(SWMM_XSect xsect, double flow, double *ycrit)
Critical depth for a given flow.
Definition openswmm_xsect_impl.cpp:528
SWMM_ENGINE_API int swmm_xsect_create(int shape, double geom1, double geom2, double geom3, double geom4, int unit_system, SWMM_XSect *out)
Create a cross-section from a shape code and its geometry parameters.
Definition openswmm_xsect_impl.cpp:207
SWMM_ENGINE_API int swmm_link_create_xsect(SWMM_Engine engine, int link_idx, SWMM_XSect *out)
Create a cross-section from a link of an open model.
Definition openswmm_xsect_impl.cpp:387
SWMM_ENGINE_API int swmm_xsect_area_of_sectfactor_array(SWMM_XSect xsect, const double *sf, int n, double *area)
Array form of swmm_xsect_area_of_sectfactor().
Definition openswmm_xsect_impl.cpp:603
SWMM_ENGINE_API int swmm_xsect_create_irregular(const double *stations, const double *elevations, int n_pts, double x_left_bank, double x_right_bank, double n_left, double n_channel, double n_right, double length_factor, int unit_system, SWMM_XSect *out)
Create an irregular (natural channel) cross-section from a transect.
Definition openswmm_xsect_impl.cpp:253
SWMM_ENGINE_API int swmm_xsect_dsda(SWMM_XSect xsect, double area, double *dsda)
Derivative of the section factor with respect to area, dS/dA.
Definition openswmm_xsect_impl.cpp:521
SWMM_ENGINE_API int swmm_xsect_area_of_depth_array(SWMM_XSect xsect, const double *depth, int n, double *area)
Array form of swmm_xsect_area_of_depth().
Definition openswmm_xsect_impl.cpp:561
void * SWMM_XSect
Opaque handle to a standalone cross-section. Free with swmm_xsect_free().
Definition openswmm_xsect.h:71
SWMM_UnitSystem
Unit system for a standalone cross-section.
Definition openswmm_xsect.h:81
@ SWMM_UNITS_US
Definition openswmm_xsect.h:82
@ SWMM_UNITS_SI
Definition openswmm_xsect.h:83
SWMM_ENGINE_API int swmm_xsect_free(SWMM_XSect xsect)
Release a cross-section handle.
Definition openswmm_xsect_impl.cpp:445
SWMM_ENGINE_API int swmm_xsect_sectfactor_of_area(SWMM_XSect xsect, double area, double *sf)
Section factor (A·R^(2/3)) for a given area.
Definition openswmm_xsect_impl.cpp:509
SWMM_ENGINE_API int swmm_xsect_create_street(double width, double curb_height, double slope, double roughness, double gutter_depression, double gutter_width, int sides, double back_width, double back_slope, double back_roughness, int unit_system, SWMM_XSect *out)
Create a street cross-section.
Definition openswmm_xsect_impl.cpp:340
SWMM_ENGINE_API int swmm_xsect_critical_depth_array(SWMM_XSect xsect, const double *flow, int n, double *ycrit)
Array form of swmm_xsect_critical_depth().
Definition openswmm_xsect_impl.cpp:617
SWMM_ENGINE_API int swmm_xsect_create_custom(double y_full, const double *curve_depths, const double *curve_widths, int n_pts, int unit_system, SWMM_XSect *out)
Create a custom cross-section from a normalized shape curve.
Definition openswmm_xsect_impl.cpp:302
SWMM_ENGINE_API int swmm_xsect_area_of_depth(SWMM_XSect xsect, double depth, double *area)
Flow area at a given depth.
Definition openswmm_xsect_impl.cpp:479
SWMM_ENGINE_API int swmm_xsect_hydrad_of_depth(SWMM_XSect xsect, double depth, double *hydrad)
Hydraulic radius (area / wetted perimeter) at a given depth.
Definition openswmm_xsect_impl.cpp:491
SWMM_ENGINE_API int swmm_xsect_width_of_depth(SWMM_XSect xsect, double depth, double *width)
Top width of the water surface at a given depth.
Definition openswmm_xsect_impl.cpp:485
SWMM_ENGINE_API int swmm_xsect_area_of_sectfactor(SWMM_XSect xsect, double sf, double *area)
Flow area for a given section factor — the inverse of swmm_xsect_sectfactor_of_area(),...
Definition openswmm_xsect_impl.cpp:515
SWMM_ENGINE_API int swmm_xsect_depth_of_area_array(SWMM_XSect xsect, const double *area, int n, double *depth)
Array form of swmm_xsect_depth_of_area().
Definition openswmm_xsect_impl.cpp:582
SWMM_ENGINE_API int swmm_xsect_dsda_array(SWMM_XSect xsect, const double *area, int n, double *dsda)
Array form of swmm_xsect_dsda().
Definition openswmm_xsect_impl.cpp:610
SWMM_ENGINE_API int swmm_xsect_hydrad_of_depth_array(SWMM_XSect xsect, const double *depth, int n, double *hydrad)
Array form of swmm_xsect_hydrad_of_depth().
Definition openswmm_xsect_impl.cpp:575
SWMM_ENGINE_API int swmm_xsect_full_properties(SWMM_XSect xsect, double *y_full, double *a_full, double *r_full, double *w_max, double *s_full, double *a_max)
Full-depth (bank-full) properties of the cross-section.
Definition openswmm_xsect_impl.cpp:534
SWMM_ENGINE_API int swmm_xsect_get_units(SWMM_XSect xsect, int *unit_system, int *flow_units)
Get the unit system and flow units a handle reports its results in.
Definition openswmm_xsect_impl.cpp:461
SWMM_ENGINE_API int swmm_xsect_get_shape(SWMM_XSect xsect, int *shape)
Get the shape code of a cross-section.
Definition openswmm_xsect_impl.cpp:454
SWMM_ENGINE_API int swmm_xsect_width_of_depth_array(SWMM_XSect xsect, const double *depth, int n, double *width)
Array form of swmm_xsect_width_of_depth().
Definition openswmm_xsect_impl.cpp:568
SWMM_ENGINE_API int swmm_xsect_sectfactor_of_area_array(SWMM_XSect xsect, const double *area, int n, double *sf)
Array form of swmm_xsect_sectfactor_of_area().
Definition openswmm_xsect_impl.cpp:596
SWMM_ENGINE_API int swmm_xsect_is_open(SWMM_XSect xsect, int *is_open)
Whether the cross-section is open to the atmosphere at its top.
Definition openswmm_xsect_impl.cpp:550