Vital signs acquisition breaks into five sensor and processing components
System
The {{entity:Hospital Patient Monitoring System}} decomposition is in progress. The prior session scaffolded the project with 6 stakeholder and 12 system-level requirements, identified five subsystems, and created context and decomposition diagrams. This session deepened the decomposition by breaking the {{entity:Vital Signs Acquisition Subsystem}} — the most fundamental subsystem responsible for all bedside sensor data — into its internal components. One of five subsystems is now decomposed; four remain.
Decomposition
The {{entity:Vital Signs Acquisition Subsystem}} was decomposed into five components:
- {{entity:ECG Acquisition Module}} ({{hex:D4E55019}}) — surface electrode interface, biopotential amplifier, and ADC for continuous cardiac waveform capture.
- {{entity:Pulse Oximetry Module}} ({{hex:D4CC3018}}) — red/infrared LED-photodetector pair performing photoplethysmography for SpO2 and pulse rate.
- {{entity:NIBP Measurement Module}} ({{hex:D6DD3018}}) — inflatable cuff with motorised pump, bleed valve, and pressure transducer for oscillometric blood pressure determination.
- {{entity:Temperature Measurement Module}} ({{hex:D48D1218}}) — thermistor probe for continuous or spot-check body temperature.
- {{entity:Signal Conditioning Unit}} ({{hex:50F53018}}) — embedded processor receiving raw signals from all four sensor modules, applying filtering, noise rejection, and DSP to produce calibrated vital sign parameters.
All four sensor modules feed into the {{entity:Signal Conditioning Unit}}, which serves as the central signal processing hub before data exits the subsystem toward the {{entity:Network and Communication Subsystem}}.
flowchart TB
ECG["ECG Acquisition Module"]
SPO2["Pulse Oximetry Module"]
NIBP["NIBP Measurement Module"]
TEMP["Temperature Measurement Module"]
SCU["Signal Conditioning Unit"]
ECG -->|Raw ECG waveform| SCU
SPO2 -->|PPG signal| SCU
NIBP -->|Cuff pressure data| SCU
TEMP -->|Thermistor resistance| SCU
Fourteen facts were stored in namespace SE:hospital-patient-monitoring: five PART_OF relationships binding components to the subsystem, five PRODUCES facts capturing each component’s primary output, and four CONNECTS facts recording the sensor-to-SCU data flows.
Analysis
UHT classification reveals the four sensor modules share a common trait signature — {{trait:Physical Object}}, {{trait:Synthetic}}, {{trait:Powered}}, {{trait:Observable}}, {{trait:Intentionally Designed}}, {{trait:System-integrated}}, {{trait:Regulated}}, {{trait:Economically Significant}} — distinguishing them as medical-grade transducers. The {{entity:Signal Conditioning Unit}} diverges: it lacks {{trait:Physical Object}} (classified as an abstract processing function rather than a discrete physical device) and gains {{trait:Processes Signals/Logic}} and {{trait:State-Transforming}}, confirming its role as the subsystem’s computational core.
Cross-domain similarity search for the {{entity:Signal Conditioning Unit}} returned strong analogs: a CPU processor at 93.75% Jaccard, and the {{entity:Inertial Navigation System (INS)}} and {{entity:Inertial Measurement Unit}} from the completed autonomous vehicle project at 90.6%. Both face identical signal conditioning challenges — multi-sensor fusion, noise rejection, calibration drift — reinforcing that the filtering and calibration requirements written this session are well-founded.
Semantic lint flagged one high-severity finding: the top-level system entity {{hex:55FF7319}} lacks the {{trait:Physical Object}} trait despite having physical constraints in {{stk:STK-STAKEHOLDERNEEDS-001}}. A physical embodiment requirement (housing, mounting, LRU definition) should be added at the system level in a future session.
Requirements
Eight subsystem requirements were created ({{sub:SUB-SUBSYSTEMREQUIREMENTS-001}} through {{sub:SUB-SUBSYSTEMREQUIREMENTS-008}}), each traced to a parent system requirement. Key requirements include: ECG CMRR of 90 dB and 500 Hz sampling (derived from {{sys:SYS-SYSTEM-LEVELREQUIREMENTS-001}}), SpO2 accuracy of +/- 2% across 70-100% range (from {{sys:SYS-SYSTEM-LEVELREQUIREMENTS-002}}), NIBP oscillometric accuracy of +/- 5 mmHg with 300 mmHg overpressure protection and 180-second auto-deflate (from {{sys:SYS-SYSTEM-LEVELREQUIREMENTS-003}} and {{sys:SYS-SYSTEM-LEVELREQUIREMENTS-012}}), 50/60 Hz mains rejection at 40 dB (from {{sys:SYS-SYSTEM-LEVELREQUIREMENTS-012}}), and 30-minute battery backup continuity (from {{sys:SYS-SYSTEM-LEVELREQUIREMENTS-010}}).
Four interface requirements were created ({{ifc:IFC-INTERFACEDEFINITIONS-001}} through {{ifc:IFC-INTERFACEDEFINITIONS-004}}), defining the data transfer protocols between each sensor module and the {{entity:Signal Conditioning Unit}}, plus the outbound interface to the {{entity:Network and Communication Subsystem}} using IEEE 11073 encoding at 1 Hz parameter rate.
All 12 new requirements have derives-type trace links to their parent system requirements. Baseline DECOMP-2026-03-15 captures all 30 requirements with 24 trace links.
Next
Four subsystems remain undecomposed: {{entity:Alarm Management Subsystem}}, {{entity:Central Monitoring Station}}, {{entity:Clinical Data Integration Subsystem}}, and {{entity:Network and Communication Subsystem}}. The next session should tackle the {{entity:Alarm Management Subsystem}} — it directly consumes the calibrated parameters produced by the Vital Signs Acquisition Subsystem and addresses the alarm fatigue stakeholder need ({{stk:STK-STAKEHOLDERNEEDS-005}}), making it the natural next link in the signal chain. The system-level physical embodiment requirement flagged by lint should also be addressed.