pub struct PedestrianWalkway;Expand description
Pedestrian walkway LoS based on density (Fruin / HCM Chapter 24).
| Grade | Density (pax/m2) | Space (m2/pax) | Description |
|---|---|---|---|
| A | <= 0.31 | >= 3.24 | Free flow, no conflicts |
| B | <= 0.43 | >= 2.32 | Minor conflicts |
| C | <= 0.72 | >= 1.39 | Restricted speed |
| D | <= 1.08 | >= 0.93 | Severely restricted |
| E | <= 2.17 | >= 0.46 | Shuffling gait |
| F | > 2.17 | < 0.46 | Breakdown |
Trait Implementations§
Source§impl Clone for PedestrianWalkway
impl Clone for PedestrianWalkway
Source§fn clone(&self) -> PedestrianWalkway
fn clone(&self) -> PedestrianWalkway
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PedestrianWalkway
impl Debug for PedestrianWalkway
Source§impl LosCriteria for PedestrianWalkway
impl LosCriteria for PedestrianWalkway
impl Copy for PedestrianWalkway
Auto Trait Implementations§
impl Freeze for PedestrianWalkway
impl RefUnwindSafe for PedestrianWalkway
impl Send for PedestrianWalkway
impl Sync for PedestrianWalkway
impl Unpin for PedestrianWalkway
impl UnsafeUnpin for PedestrianWalkway
impl UnwindSafe for PedestrianWalkway
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more