OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
Street.hpp
Go to the documentation of this file.
1
16#ifndef OPENSWMM_STREET_HPP
17#define OPENSWMM_STREET_HPP
18
19#include "Transect.hpp"
20
21namespace openswmm {
22
23namespace street {
24
26 double width = 0.0;
27 double curb_height = 0.0;
28 double slope = 0.0;
29 double roughness = 0.013;
30 double gutter_depression = 0.0;
31 double gutter_width = 0.0;
32 int sides = 2;
33 double back_width = 0.0;
34 double back_slope = 0.0;
35 double back_roughness = 0.0;
36};
37
45
46} // namespace street
47} // namespace openswmm
48
49#endif // OPENSWMM_STREET_HPP
Irregular transect cross-section geometry (HEC-2 style).
void buildTransect(const StreetParams &sp, transect::TransectData &td)
Build a transect from street parameters.
Definition Street.cpp:16
Definition Controls.cpp:24
Definition Street.hpp:25
double gutter_width
Depressed gutter width (ft)
Definition Street.hpp:31
double back_roughness
Backing Manning's n.
Definition Street.hpp:35
double slope
Transverse slope (fraction)
Definition Street.hpp:28
int sides
1=half street, 2=full street
Definition Street.hpp:32
double width
Distance curb to crown (ft)
Definition Street.hpp:26
double roughness
Manning's n (road surface)
Definition Street.hpp:29
double back_width
Backing width (ft)
Definition Street.hpp:33
double gutter_depression
Depressed gutter depth (ft)
Definition Street.hpp:30
double back_slope
Backing slope (fraction)
Definition Street.hpp:34
double curb_height
Curb elevation (ft)
Definition Street.hpp:27
Definition Transect.hpp:30