Technical Elements Documentation
    Preparing search index...

    Represents a bounding site with relevant characteristics for consequence analysis.

    const boundingSite: BoundingSite = {
    description: "A generic site located 10 km from a population centre with a flat terrain.",
    justification: "The distance to the population centre is the minimum for all sites, and the flat terrain represents the most conservative dispersion scenario.",
    characteristics: {
    siteBoundaryDistance: 0.5,
    populationCentreDistance: 10,
    terrain: "Flat",
    "predominantWindDirection": "West"
    }
    };
    interface BoundingSite {
        boundedSites?: string[];
        boundingJustification: string;
        characteristics: {
            populationCentreDistance?: number;
            siteBoundaryDistance?: number;
            terrain?: string;
            [key: string]: any;
        };
        description: string;
        justification: string;
    }
    Index

    Properties

    boundedSites?: string[]

    List of sites that are bounded by this site.

    ["Site A", "Site B", "Site C"]
    
    boundingJustification: string

    Detailed justification explaining how this site bounds all sites in the scope of the PRA. Required by RCRE-A1.

    "This site was selected as bounding because it has the shortest distance to population centers and most conservative meteorological conditions."
    
    characteristics: {
        populationCentreDistance?: number;
        siteBoundaryDistance?: number;
        terrain?: string;
        [key: string]: any;
    }

    Key characteristics of the bounding site relevant to consequence analysis.

    Type declaration

    • [key: string]: any

      Other relevant site characteristics.

      "Predominant wind direction: West"
      
    • OptionalpopulationCentreDistance?: number

      Distance to the nearest population centre in km.

      10
      
    • OptionalsiteBoundaryDistance?: number

      Distance to the site boundary in km.

      0.5
      
    • Optionalterrain?: string

      Description of the terrain around the site.

      "Flat" | "Hilly" | "Coastal"
      
    description: string

    Description of the bounding site.

    "A generic site located 10 km from a population centre with a flat terrain."
    
    justification: string

    Justification for why this site bounds other sites in the scope of the PRA.

    "The distance to the population centre is the minimum for all sites, and the flat terrain represents the most conservative dispersion scenario."