{% extends "remapp/rfdetailbase.html" %} {% block navrf %}
Calculated peak skin dose: | 0.000 Gy |
Phantom dimensions: | cm (HxWxD) |
Assumed patient height: | m |
Assumed patient mass: | kg |
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 | Plane | DAP (cGy.cm2) | Exposure time (ms) | kVp | mA | Filters (mm) | Angle (°) | Detector size (mm) | SDD (mm) | {% for event in generalstudymoduleattr.projectionxrayradiationdose_set.get.irradeventxraydata_set.all %}
---|---|---|---|---|---|---|---|---|---|---|
{{ event.date_time_started|time:"H:i.s" }} | {{ event.acquisition_protocol }} | {{ event.acquisition_plane }} | {{ event.convert_gym2_to_cgycm2|floatformat:3 }} | {{ event.irradeventxraysourcedata_set.get.exposure_time|floatformat:1 }} | {{ event.irradeventxraysourcedata_set.get.kvp_set.get.kvp|floatformat:0 }} | {{ event.irradeventxraysourcedata_set.get.xraytubecurrent_set.get.xray_tube_current|floatformat:1 }} |
{% for xrayfilt in event.irradeventxraysourcedata_set.get.xrayfilters_set.all %}
{% if xrayfilt.xray_filter_material.code_value == 'C-120F9' %}
Al: {{ xrayfilt.xray_filter_thickness_minimum|floatformat:2 }} - {{ xrayfilt.xray_filter_thickness_maximum|floatformat:2 }} {% elif xrayfilt.xray_filter_material.code_value == 'C-127F9' %} Cu: {{ xrayfilt.xray_filter_thickness_minimum|floatformat:2 }} - {{ xrayfilt.xray_filter_thickness_maximum|floatformat:2 }} {% else %} {{ xrayfilt.xray_filter_material.code_meaning }}: {{ xrayfilt.xray_filter_thickness_minimum|floatformat:2 }} - {{ xrayfilt.xray_filter_thickness_maximum|floatformat:2 }} {% endif %} {% endfor %} |
{{ event.irradeventxraymechanicaldata_set.get.positioner_primary_angle|floatformat:1 }} | {{ event.irradeventxraysourcedata_set.get.ii_field_size }} | {{ event.irradeventxraymechanicaldata_set.get.doserelateddistancemeasurements_set.get.distance_source_to_detector|floatformat:0 }} |
{% if has_next %} Older {% endif %} {% if has_next and has_previous %} | {% endif %} {% if has_previous %} Newer {% endif %}
{% endif %} {% endblock %}