Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dd_data_dictionary.xml.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
<xs:include schemaLocation="schemas/refractometer/dd_refractometer.xsd"/>
<xs:include schemaLocation="schemas/runaway_electrons/dd_runaway_electrons.xsd"/>
<xs:include schemaLocation="schemas/sawteeth/dd_sawteeth.xsd"/>
<xs:include schemaLocation="schemas/sniffer_probes/dd_sniffer_probes.xsd"/>
<xs:include schemaLocation="schemas/soft_x_rays/dd_soft_x_rays.xsd"/>
<xs:include schemaLocation="schemas/spectrometer_mass/dd_spectrometer_mass.xsd"/>
<xs:include schemaLocation="schemas/spectrometer_uv/dd_spectrometer_uv.xsd"/>
Expand Down Expand Up @@ -167,6 +168,7 @@
<xs:element ref="refractometer" maxOccurs="2"/>
<xs:element ref="runaway_electrons" maxOccurs="2"/>
<xs:element ref="sawteeth" maxOccurs="2"/>
<xs:element ref="sniffer_probes" maxOccurs="2"/>
<xs:element ref="soft_x_rays"/>
<xs:element ref="spectrometer_mass" maxOccurs="4"/>
<xs:element ref="spectrometer_uv" maxOccurs="2"/>
Expand Down
1 change: 1 addition & 0 deletions html_documentation/dd_versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<li>Adding profiles_1d/triangularity in the EQUILIBRIUM IDS</li>
<li>Adding coil/inductance in the PF_ACTIVE IDS</li>
<li>Adding total instantaneous fusion power in the SUMMARY IDS</li>
<li>New SNIFFER_PROBES IDS</li>
<li>Adding Boron local velocity_phi in the SUMMARY IDS</li>
<li>Adding information about temperature dependence of the coil resistance in PF_ACTIVE and clarification of some definitions</li>
</ul>
Expand Down
78 changes: 78 additions & 0 deletions schemas/sniffer_probes/dd_sniffer_probes.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- edited with XMLSpy v2009 sp1 (http://www.altova.com) by USER USER (CEA - CENTRE DE CADARACHE) -->
<?modxslt-stylesheet type="text/xsl" media="fuffa, screen and $GET[stylesheet]" href="./%24GET%5Bstylesheet%5D" alternate="no" title="Translation using provided stylesheet" charset="UTF-8" ?>
<?modxslt-stylesheet type="text/xsl" media="screen" alternate="no" title="Show raw source of the XML file" charset="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:include schemaLocation="../utilities/dd_support.xsd"/>
<xs:complexType name="sniffer_probe">
<xs:annotation>
<xs:documentation>One sniffer probe</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name">
<xs:annotation>
<xs:documentation>Short string identifier (unique for a given device)</xs:documentation>
<xs:appinfo>
<type>static</type>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:group ref="STR_0D"/>
</xs:complexType>
</xs:element>
<xs:element name="description">
<xs:annotation>
<xs:documentation>Description, e.g. “probe located in port Q4”</xs:documentation>
<xs:appinfo>
<type>static</type>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:group ref="STR_0D"/>
</xs:complexType>
</xs:element>
<xs:element name="antenna" type="detector_aperture">
<xs:annotation>
<xs:documentation>Antenna geometry</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="sniffer_probes">
<xs:annotation>
<xs:documentation>Sniffer probes</xs:documentation>
<xs:appinfo>
<lifecycle_status>alpha</lifecycle_status>
<lifecycle_version>4.2.0</lifecycle_version>
<lifecycle_last_change>4.2.0</lifecycle_last_change>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="ids_properties"/>
<xs:element name="probe" type="sniffer_probe" maxOccurs="10">
<xs:annotation>
<xs:documentation>Set of probes</xs:documentation>
<xs:appinfo>
<coordinate1>1...N</coordinate1>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="latency">
<xs:annotation>
<xs:documentation>Upper bound of the delay between physical information received by the detector and data available on the real-time (RT) network.</xs:documentation>
<xs:appinfo>
<type>static</type>
<units>s</units>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:group ref="FLT_0D"/>
</xs:complexType>
</xs:element>
<xs:element ref="code"/>
<xs:element ref="time"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
Loading