summaryrefslogtreecommitdiff
path: root/src/diagram_uv_zoom.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/diagram_uv_zoom.py')
-rw-r--r--src/diagram_uv_zoom.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/diagram_uv_zoom.py b/src/diagram_uv_zoom.py
new file mode 100644
index 0000000..c21fcd9
--- /dev/null
+++ b/src/diagram_uv_zoom.py
@@ -0,0 +1,10 @@
+from shared import *
+import crl, matplotlib.pyplot as plt
+
+plot_setup(width=0.4, color_plot=True)
+plot_grid()
+crl.chromaticity_diagram(crl.uvY, locus=True, isotherms=True, pures_labels=False,
+ isotherm_labels=True, isotherm_label_scale=1)
+plt.xlim(0.17, 0.35)
+plt.ylim(0.28, 0.38)
+plot_export()