Internet-Draft | ISAC-Utilization | July 2025 |
Jadoon & Robitzsch | Expires 8 January 2026 | [Page] |
This document defines a basic YANG data model to report sensing measurements utilization score (US) in Integrated Sensing and Communication (ISAC) systems. The score quantifies the resource impact of different sensing measurements, including compute, memory, storage, energy, and latency. The model supports per-measurement telemetry reporting.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 8 January 2026.¶
Copyright (c) 2025 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
ISAC introduces a paradigm where network nodes perform both communication and sensing tasks. Several use cases and their requirements for ISAC have been defined in 3GPP [TR22.837] and ETSI[GR-ISC001]. A sensing task involves measurements of parameters such as Doppler, angle of arrival (AoA), and radar cross section (RCS), micro-doppler, range/delay [Jadoon2025] etc., each consumes varying amounts of system resources such as memory, energy, storage.¶
To enable energy-efficient orchestration, it is important to measure and report the utilization impact of each measurement for a sensing task. This draft proposes a YANG data model that allows ISAC-enabled devices to report an SMUS per sensing task, computed from weighted metrics such as CPU usage, memory, energy draw, storage load, and latency.¶
The model is intended for systems that support ISAC and want to participate in energy-aware operations.¶
module: ietf-isac-utilization +--ro sensing-utilization +--ro function-score* [function] +--ro function sensing-function +--ro score-components | +--ro compute-score? decimal64 | +--ro memory-score? decimal64 | +--ro energy-score? decimal64 | +--ro storage-score? decimal64 | +--ro latency-score? decimal64 +--ro weights | +--ro compute-weight? decimal64 | +--ro memory-weight? decimal64 | +--ro energy-weight? decimal64 | +--ro storage-weight? decimal64 | +--ro latency-weight? decimal64 +--ro total-utilization-score? uint8¶
module ietf-isac-utilization { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-isac-utilization"; prefix isac-util; organization "InterDigital Europe"; contact "Muhammad Awais Jadoon <muhammad.awaisjadoon@interdigital.com>"; description "YANG data model for reporting ISAC sensing resource utilization scores."; revision "2025-06-28" { description "Initial version."; } typedef sensing-function { type enumeration { enum delay { description "Time delay measurement representing target range."; } enum doppler { description "Doppler shift measurement representing target velocity."; } enum micro-doppler { description "Micro-Doppler analysis for fine-grained motion of target."; } enum aoa { description "Angle of Arrival estimation."; } enum rcs { description "Radar Cross Section estimation."; } } description "Enumerates supported sensing measurement functions within ISAC systems."; } container sensing-utilization { config false; list function-score { key "function"; leaf function { type sensing-function; } container score-components { leaf compute-score { type decimal64 { fraction-digits 2; } units "%"; } leaf memory-score { type decimal64 { fraction-digits 2; } units "%"; } leaf energy-score { type decimal64 { fraction-digits 2; } units "%"; } leaf storage-score { type decimal64 { fraction-digits 2; } units "%"; } leaf latency-score { type decimal64 { fraction-digits 2; } units "%"; } } container weights { leaf compute-weight { type decimal64 { fraction-digits 2; } units "ratio"; } leaf memory-weight { type decimal64 { fraction-digits 2; } units "ratio"; } leaf energy-weight { type decimal64 { fraction-digits 2; } units "ratio"; } leaf storage-weight { type decimal64 { fraction-digits 2; } units "ratio"; } leaf latency-weight { type decimal64 { fraction-digits 2; } units "ratio"; } } leaf total-utilization-score { type uint8; description "Composite score (0–100) aggregating all measurements."; } } } }¶
Note: The sensing measurement types defined in this document (e.g., Delay, Doppler, micro-Doppler, AoA, RCS) is not exhaustive. The YANG model is extensible, and additional sensing measurments may be incorporated as the standards develop.¶
{ "ietf-isac-utilization:sensing-utilization": { "function-score": [ { "function": "micro-doppler", "score-components": { "compute-score": 82.0, "memory-score": 60.0, "energy-score": 75.0, "storage-score": 50.0, "latency-score": 45.0 }, "weights": { "compute-weight": 0.3, "memory-weight": 0.2, "energy-weight": 0.3, "storage-weight": 0.1, "latency-weight": 0.1 }, "total-utilization-score": 70 } ] } }¶
This work has received funding from the Smart Networks and Services Joint Undertaking (SNS JU) under the European Union's Horizon Europe research and innovation programme under Grant Agreement No 101192521 (MultiX).¶