{% extends "remapp/rfdetailbase.html" %} {% load sigdig %} {% block navrf %}
Irradiation type | Total DAP (cGy.cm2) | Total dose at RP (Gy) | Total duration (s) | {% for irr_type in study_totals %}||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ irr_type.0 }} | {% if irr_type.1 %}{{ irr_type.1 | floatformat:2 }} {% endif %} | {% if irr_type.2 %}{{ irr_type.2 | sigdig }} {% endif %} | {% if irr_type.3 %}{{ irr_type.3 | floatformat:2 }} {% endif %} | {% elif 'Total' in irr_type.0 %}{{ irr_type.0 }} | {% if irr_type.1 %}{{ irr_type.1 | floatformat:2 }} {% endif %} | {% if irr_type.2 %}{{ irr_type.2 | sigdig }} {% endif %} | {% if irr_type.3 %}{{ irr_type.3 | floatformat:2 }} {% endif %} | {% else %}{{ irr_type.0 }} | {% if irr_type.1 %}{{ irr_type.1 | floatformat:2 }} {% endif %} | {% if irr_type.2 %}{{ irr_type.2 | sigdig }} {% endif %} | {% if irr_type.3 %}{{ irr_type.3 | floatformat:2 }} {% endif %} | {% endif %}
Date | Time | Accession number | Total DAP (cGy.cm2) | Total dose at RP (Gy) | OpenREM link |
---|---|---|---|---|---|
{{ each_study.study_date|date:"d/m/y" }} | {{ each_study.study_time|date:"H:i" }} | {{ each_study.accession_number }} |
{% for accumxraydoseset_allplanes in each_study.projectionxrayradiationdose_set.get.accumxraydose_set.all %}
{% with accumprojection=accumxraydoseset_allplanes.accumintegratedprojradiogdose_set.get %}
{{ accumxraydoseset_allplanes.acquisition_plane }}:
{% if accumprojection.convert_gym2_to_cgycm2 >= alert_levels.alert_total_dap_rf %}
{{ accumprojection.convert_gym2_to_cgycm2|floatformat:1 }}
{% else %}
{{ accumprojection.convert_gym2_to_cgycm2|floatformat:1 }}
{% endif %}
{% endwith %} {% endfor %} |
{% for accumxraydoseset_allplanes in each_study.projectionxrayradiationdose_set.get.accumxraydose_set.all %}
{% with accumprojection=accumxraydoseset_allplanes.accumintegratedprojradiogdose_set.get %}
{{ accumxraydoseset_allplanes.acquisition_plane }}:
{% if accumprojection.dose_rp_total >= alert_levels.alert_total_rp_dose_rf %}
{{ accumprojection.dose_rp_total|floatformat:1 }}
{% else %}
{{ accumprojection.dose_rp_total|floatformat:1 }}
{% endif %}
{% endwith %} {% endfor %} |
{% if each_study.pk == study.pk %}This study{% else %} Study {{ each_study.pk }}{% endif %} |
Data unavailable: no patient ID for this study.
{% endif %} {% endif %}Use max/min | Gy window level | ||
Colour scales | Toggle 2D/3D view | Gy window width |
Use WW/WL | Gy min. displayed dose | ||
Colour scales | Toggle 2D/3D view | Gy max. displayed dose |
You can export this study to a csv file in the format required by Jonathan Cole's openSkin software. The openSkin software can be downloaded from the openSkin BitBucket project and there is more information available in the OpenREM documentation.
{% url 'skin_dose_map_settings_update' 1 as the_url %}This version of OpenREM has openSkin built-in, and is able to calculate and display skin dose maps for some x-ray systems. However, this option is switched off for your installation at the moment. It can be enabled by an administrator by changing the Skin dose map settings.
Warning: Only copper filters are considered in this export - aluminium or other filters are not considered. This is related to the way openSkin works.
Time | Acquisition protocol | Event type | Pulse rate (s-1) | Plane | DAP (cGy.cm2) | Dose at reference point (mGy) | Duration (ms) Exposure time (ms) |
kVp | mA | Filters (mm) | Primary angle (°) | Secondary angle (°) | Detector size (mm) | SDD (mm) | Orientation | {% for event in events_all %} {% with sourcedata=event.irradeventxraysourcedata_set.get %} {% with mechanicaldata=event.irradeventxraymechanicaldata_set.get %}
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ event.date_time_started|time:"H:i.s" }} | {{ event.acquisition_protocol }} | {{ event.irradiation_event_type }} | {{ sourcedata.pulse_rate|floatformat:2 }} | {{ event.acquisition_plane }} | {% if event.convert_gym2_to_cgycm2 %}{{ event.convert_gym2_to_cgycm2 | sigdig }} {% endif %} | {% if sourcedata.convert_gy_to_mgy %}{{ sourcedata.convert_gy_to_mgy | sigdig }} {% endif %} |
{% if sourcedata.irradiation_duration %}
{{ sourcedata.irradiation_duration|multiply:1000|floatformat:1 }}
{% else %}
n/a
{% endif %}
{% if sourcedata.exposure_time %} {{ sourcedata.exposure_time }} {% else %} n/a {% endif %} |
{% for kvp_value in sourcedata.kvp_set.all %} {{ kvp_value.kvp|floatformat:0 }} {% endfor %} | {% for tube_current in sourcedata.xraytubecurrent_set.all %} {{ tube_current.xray_tube_current|floatformat:1 }} {% endfor %} | {% include 'remapp/list_filters.html' %} | {{ mechanicaldata.positioner_primary_angle|floatformat:1 }} | {{ mechanicaldata.positioner_secondary_angle|floatformat:1 }} | {{ sourcedata.ii_field_size }} | {{ mechanicaldata.doserelateddistancemeasurements_set.get.distance_source_to_detector|floatformat:0 }} | {{ event.patient_table_relationship_cid|title }}, {{ event.patient_orientation_cid|title }}, {{ event.patient_orientation_modifier_cid|title }} |
{% if has_next %} Older {% endif %} {% if has_next and has_previous %} | {% endif %} {% if has_previous %} Newer {% endif %}
{% endif %} {% endblock %}