Skip to content

docs-md


Variable: EBRII_PumpOperationalDataExample

const EBRII_PumpOperationalDataExample: object

Defined in: packages/docs-md/.tmp/typedoc-sanitized/mef-types/lib/data-analysis/example-data-analysis.ts:495

Example of a complete operational data set for EBR-II primary sodium pump

This example demonstrates how to structure operational data points for analysis, focusing on a specific component with realistic placeholder data.

Type Declaration

dataByComponentType

readonly dataByComponentType: object

dataByComponentType.TYPE-SODIUM-PUMP

readonly TYPE-SODIUM-PUMP: readonly ["EBRII-PSP-EVENT-001", "EBRII-PSP-EVENT-002", "EBRII-PSP-EVENT-003", "EBRII-PSP-EVENT-004"]

dataByFailureMode

readonly dataByFailureMode: object

dataByFailureMode.FM-PUMP-BEARINGS

readonly FM-PUMP-BEARINGS: readonly ["EBRII-PSP-EVENT-001"]

dataByFailureMode.FM-PUMP-CONTROL

readonly FM-PUMP-CONTROL: readonly ["EBRII-PSP-EVENT-002"]

dataPoints

readonly dataPoints: readonly [{ componentReference: "COMP-EBRII-PSP-001"; componentTypeReference: "TYPE-SODIUM-PUMP"; description: "Primary pump bearing degradation detected during routine vibration monitoring"; eventType: "failure"; failureModeReference: "FM-PUMP-BEARINGS"; id: "EBRII-PSP-EVENT-001"; measurements: { temperature: 427.8; vibration: 12.5; }; operatingCycles: 56; operatingHours: 12458.5; timestamp: "1984-03-15T08:42:00Z"; }, { componentReference: "COMP-EBRII-PSP-001"; componentTypeReference: "TYPE-SODIUM-PUMP"; description: "Flow control system failure resulting in pump shutdown"; eventType: "failure"; failureModeReference: "FM-PUMP-CONTROL"; id: "EBRII-PSP-EVENT-002"; measurements: { current: 96.2; flow: 75.3; }; operatingCycles: 124; operatingHours: 28741.2; timestamp: "1987-11-20T14:18:00Z"; }, { componentReference: "COMP-EBRII-PSP-001"; componentTypeReference: "TYPE-SODIUM-PUMP"; description: "Routine inspection during plant outage, no abnormalities detected"; eventType: "inspection"; id: "EBRII-PSP-EVENT-003"; measurements: { temperature: 25; vibration: 4.2; }; operatingCycles: 97; operatingHours: 22561.7; timestamp: "1986-05-10T09:30:00Z"; }, { componentReference: "COMP-EBRII-PSP-001"; componentTypeReference: "TYPE-SODIUM-PUMP"; description: "Preventive maintenance on pump control circuits"; eventType: "maintenance"; id: "EBRII-PSP-EVENT-004"; measurements: { downtime: 12.5; }; operatingCycles: 82; operatingHours: 18752.3; timestamp: "1985-09-05T10:15:00Z"; }]

id

readonly id: "ODP-EBRII-PCS-001" = "ODP-EBRII-PCS-001"

name

readonly name: "EBR-II Primary Sodium Pump Operational Data Registry" = "EBR-II Primary Sodium Pump Operational Data Registry"

Example

typescript
// Access the example
import { examples } from 'data_analysis';
const pumpOperationalData = examples.EBRII_PumpOperationalDataExample;