Skip to content

Commit d8007a0

Browse files
committed
deploy: a75f347
1 parent b0a03cc commit d8007a0

File tree

100 files changed

+856
-2684
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+856
-2684
lines changed

.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: f9c3b408a5ee6fd42eee6a4792c56501
3+
config: a4b1e149a39399211ea604929ec830e4
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.
Binary file not shown.

_downloads/152427a3fb2089faa71c17d4774bb0e8/Ni-xray.gr

-2,134
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
#!/usr/bin/env python
2+
3+
"""Extract the shortest Mn-O bond lengths from all fits in PDFgui project.
4+
5+
This script loops through all refined phases in PDFgui project and calculates
6+
their shortest Mn-O bond lengths using diffpy.pdffit2 library. The results
7+
are plotted versus temperature and saved to "mno-bond-lengths.dat" file.
8+
"""
9+
10+
import pylab
11+
12+
from diffpy.pdffit2 import PdfFit
13+
14+
# Import tui (Text User Interface) functions from diffpy.pdfgui
15+
from diffpy.pdfgui import tui
16+
17+
# PDFgui project file
18+
project_file = "lmo-template.ddp3"
19+
output_file = "mno-bond-lengths.dat"
20+
21+
22+
# load project file
23+
prj = tui.LoadProject(project_file)
24+
25+
# Define a function for calculating shortest MnO bond length
26+
# using diffpy.pdffit2
27+
28+
# Create a PDF calculator object that will be used in that function.
29+
30+
31+
pf = PdfFit()
32+
33+
34+
def shortestBond_MnO(stru):
35+
"""extract the shortest MnO bond length in a structure.
36+
37+
stru -- initial or refined phase from a PDFgui project
38+
39+
Return the shortest bond length.
40+
"""
41+
pf.reset()
42+
pf.add_structure(stru)
43+
bnds = pf.bond_length_types("Mn", "O", 0.01, 3)
44+
return bnds["dij"][0]
45+
46+
47+
# Extract temperatures from PDFgui project to Python list.
48+
# Temperature needs to be defined per each dataset in the project.
49+
temperatures = prj.getTemperatures()
50+
51+
# Build a list of shortest Mn-O bonds from all refined phases.
52+
MnO_bond_lengths = []
53+
for phase in prj.getPhases():
54+
if phase.refined is None:
55+
print("Cannot find phase refinement results in", project_file)
56+
print("Open the file in PDFgui, run refinement, save and try again.")
57+
# terminate the script by raising error condition
58+
raise RuntimeError("Missing refinement results.")
59+
MnO_bond_lengths.append(shortestBond_MnO(phase.refined))
60+
61+
# Save bond lengths to a file
62+
outfile = open(output_file, "w")
63+
print("# Shortest Mn-O bond length extracted from {}".format(project_file), file=outfile)
64+
print("# temperature(K) bond_length(A)", file=outfile)
65+
for t, b in zip(temperatures, MnO_bond_lengths):
66+
print("{}, {}".format(t, b), file=outfile)
67+
outfile.close()
68+
69+
dashline = 78 * "-"
70+
print(dashline)
71+
print("Mn-O bond lengths saved to {}".format(output_file))
72+
print(dashline)
73+
74+
# Plot results using matplotlib; pylab is a part of matplotlib that
75+
# provides MATLAB-like plotting functions.
76+
77+
78+
pylab.plot(temperatures, MnO_bond_lengths, "o--")
79+
pylab.title("Data from refined phases in PDFgui project %s" % project_file)
80+
pylab.xlabel("temperature (K)")
81+
pylab.ylabel("shortest Mn-O bond (A)")
82+
83+
# Show the plot window. This must be the last command in the script.
84+
pylab.show()

_downloads/5c534d55babfa2f2f0098cfa8fe20fea/Ni.stru

-33
This file was deleted.
Binary file not shown.
Binary file not shown.

_modules/diffpy/pdfgui/applications/pdfgui.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>diffpy.pdfgui.applications.pdfgui &mdash; diffpy.pdfgui 3.1.0rc4 documentation</title>
6+
<title>diffpy.pdfgui.applications.pdfgui &mdash; diffpy.pdfgui 3.1.0rc5 documentation</title>
77
<link rel="stylesheet" type="text/css" href="../../../../_static/pygments.css?v=fa44fd50" />
88
<link rel="stylesheet" type="text/css" href="../../../../_static/css/theme.css?v=19f00094" />
99

@@ -14,7 +14,7 @@
1414

1515
<script src="../../../../_static/jquery.js?v=5d32c60e"></script>
1616
<script src="../../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
17-
<script src="../../../../_static/documentation_options.js?v=6a5857df"></script>
17+
<script src="../../../../_static/documentation_options.js?v=c31823b9"></script>
1818
<script src="../../../../_static/doctools.js?v=9a2dae69"></script>
1919
<script src="../../../../_static/sphinx_highlight.js?v=dc90522c"></script>
2020
<script src="../../../../_static/js/theme.js"></script>
@@ -34,7 +34,7 @@
3434
diffpy.pdfgui
3535
</a>
3636
<div class="version">
37-
3.1.0rc4
37+
3.1.0rc5
3838
</div>
3939
<div role="search">
4040
<form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
@@ -50,6 +50,7 @@
5050
<ul>
5151
<li class="toctree-l1"><a class="reference internal" href="../../../../license.html">License</a></li>
5252
<li class="toctree-l1"><a class="reference internal" href="../../../../release.html">Release Notes</a></li>
53+
<li class="toctree-l1"><a class="reference internal" href="../../../../manual.html">Manual</a></li>
5354
<li class="toctree-l1"><a class="reference internal" href="../../../../api/diffpy.pdfgui.html">Package API</a></li>
5455
</ul>
5556

_modules/diffpy/pdfgui/control/calculation.html

+7-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>diffpy.pdfgui.control.calculation &mdash; diffpy.pdfgui 3.1.0rc4 documentation</title>
6+
<title>diffpy.pdfgui.control.calculation &mdash; diffpy.pdfgui 3.1.0rc5 documentation</title>
77
<link rel="stylesheet" type="text/css" href="../../../../_static/pygments.css?v=fa44fd50" />
88
<link rel="stylesheet" type="text/css" href="../../../../_static/css/theme.css?v=19f00094" />
99

@@ -14,7 +14,7 @@
1414

1515
<script src="../../../../_static/jquery.js?v=5d32c60e"></script>
1616
<script src="../../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
17-
<script src="../../../../_static/documentation_options.js?v=6a5857df"></script>
17+
<script src="../../../../_static/documentation_options.js?v=c31823b9"></script>
1818
<script src="../../../../_static/doctools.js?v=9a2dae69"></script>
1919
<script src="../../../../_static/sphinx_highlight.js?v=dc90522c"></script>
2020
<script src="../../../../_static/js/theme.js"></script>
@@ -34,7 +34,7 @@
3434
diffpy.pdfgui
3535
</a>
3636
<div class="version">
37-
3.1.0rc4
37+
3.1.0rc5
3838
</div>
3939
<div role="search">
4040
<form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
@@ -50,6 +50,7 @@
5050
<ul>
5151
<li class="toctree-l1"><a class="reference internal" href="../../../../license.html">License</a></li>
5252
<li class="toctree-l1"><a class="reference internal" href="../../../../release.html">Release Notes</a></li>
53+
<li class="toctree-l1"><a class="reference internal" href="../../../../manual.html">Manual</a></li>
5354
<li class="toctree-l1"><a class="reference internal" href="../../../../api/diffpy.pdfgui.html">Package API</a></li>
5455
</ul>
5556

@@ -98,10 +99,11 @@ <h1>Source code for diffpy.pdfgui.control.calculation</h1><div class="highlight"
9899

99100
<span class="kn">import</span> <span class="nn">copy</span>
100101
<span class="kn">import</span> <span class="nn">math</span>
102+
<span class="kn">import</span> <span class="nn">pickle</span>
101103

102104
<span class="kn">from</span> <span class="nn">diffpy.pdfgui.control.controlerrors</span> <span class="kn">import</span> <span class="n">ControlConfigError</span><span class="p">,</span> <span class="n">ControlKeyError</span><span class="p">,</span> <span class="n">ControlValueError</span>
103105
<span class="kn">from</span> <span class="nn">diffpy.pdfgui.control.pdfcomponent</span> <span class="kn">import</span> <span class="n">PDFComponent</span>
104-
<span class="kn">from</span> <span class="nn">diffpy.pdfgui.utils</span> <span class="kn">import</span> <span class="n">pickle_loads</span><span class="p">,</span> <span class="n">safeCPickleDumps</span>
106+
<span class="kn">from</span> <span class="nn">diffpy.pdfgui.utils</span> <span class="kn">import</span> <span class="n">safeCPickleDumps</span>
105107

106108

107109
<div class="viewcode-block" id="Calculation">
@@ -352,7 +354,7 @@ <h1>Source code for diffpy.pdfgui.control.calculation</h1><div class="highlight"
352354

353355
<span class="sd"> returns a tree of internal hierachy</span>
354356
<span class="sd"> &quot;&quot;&quot;</span>
355-
<span class="n">config</span> <span class="o">=</span> <span class="n">pickle_loads</span><span class="p">(</span><span class="n">z</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="n">subpath</span> <span class="o">+</span> <span class="s2">&quot;config&quot;</span><span class="p">))</span>
357+
<span class="n">config</span> <span class="o">=</span> <span class="n">pickle</span><span class="o">.</span><span class="n">loads</span><span class="p">(</span><span class="n">z</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="n">subpath</span> <span class="o">+</span> <span class="s2">&quot;config&quot;</span><span class="p">),</span> <span class="n">encoding</span><span class="o">=</span><span class="s2">&quot;latin1&quot;</span><span class="p">)</span>
356358
<span class="bp">self</span><span class="o">.</span><span class="n">rmin</span> <span class="o">=</span> <span class="n">config</span><span class="p">[</span><span class="s2">&quot;rmin&quot;</span><span class="p">]</span>
357359
<span class="bp">self</span><span class="o">.</span><span class="n">rstep</span> <span class="o">=</span> <span class="n">config</span><span class="p">[</span><span class="s2">&quot;rstep&quot;</span><span class="p">]</span>
358360
<span class="bp">self</span><span class="o">.</span><span class="n">rmax</span> <span class="o">=</span> <span class="n">config</span><span class="p">[</span><span class="s2">&quot;rmax&quot;</span><span class="p">]</span>

_modules/diffpy/pdfgui/control/constraint.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>diffpy.pdfgui.control.constraint &mdash; diffpy.pdfgui 3.1.0rc4 documentation</title>
6+
<title>diffpy.pdfgui.control.constraint &mdash; diffpy.pdfgui 3.1.0rc5 documentation</title>
77
<link rel="stylesheet" type="text/css" href="../../../../_static/pygments.css?v=fa44fd50" />
88
<link rel="stylesheet" type="text/css" href="../../../../_static/css/theme.css?v=19f00094" />
99

@@ -14,7 +14,7 @@
1414

1515
<script src="../../../../_static/jquery.js?v=5d32c60e"></script>
1616
<script src="../../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
17-
<script src="../../../../_static/documentation_options.js?v=6a5857df"></script>
17+
<script src="../../../../_static/documentation_options.js?v=c31823b9"></script>
1818
<script src="../../../../_static/doctools.js?v=9a2dae69"></script>
1919
<script src="../../../../_static/sphinx_highlight.js?v=dc90522c"></script>
2020
<script src="../../../../_static/js/theme.js"></script>
@@ -34,7 +34,7 @@
3434
diffpy.pdfgui
3535
</a>
3636
<div class="version">
37-
3.1.0rc4
37+
3.1.0rc5
3838
</div>
3939
<div role="search">
4040
<form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
@@ -50,6 +50,7 @@
5050
<ul>
5151
<li class="toctree-l1"><a class="reference internal" href="../../../../license.html">License</a></li>
5252
<li class="toctree-l1"><a class="reference internal" href="../../../../release.html">Release Notes</a></li>
53+
<li class="toctree-l1"><a class="reference internal" href="../../../../manual.html">Manual</a></li>
5354
<li class="toctree-l1"><a class="reference internal" href="../../../../api/diffpy.pdfgui.html">Package API</a></li>
5455
</ul>
5556

_modules/diffpy/pdfgui/control/controlerrors.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>diffpy.pdfgui.control.controlerrors &mdash; diffpy.pdfgui 3.1.0rc4 documentation</title>
6+
<title>diffpy.pdfgui.control.controlerrors &mdash; diffpy.pdfgui 3.1.0rc5 documentation</title>
77
<link rel="stylesheet" type="text/css" href="../../../../_static/pygments.css?v=fa44fd50" />
88
<link rel="stylesheet" type="text/css" href="../../../../_static/css/theme.css?v=19f00094" />
99

@@ -14,7 +14,7 @@
1414

1515
<script src="../../../../_static/jquery.js?v=5d32c60e"></script>
1616
<script src="../../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
17-
<script src="../../../../_static/documentation_options.js?v=6a5857df"></script>
17+
<script src="../../../../_static/documentation_options.js?v=c31823b9"></script>
1818
<script src="../../../../_static/doctools.js?v=9a2dae69"></script>
1919
<script src="../../../../_static/sphinx_highlight.js?v=dc90522c"></script>
2020
<script src="../../../../_static/js/theme.js"></script>
@@ -34,7 +34,7 @@
3434
diffpy.pdfgui
3535
</a>
3636
<div class="version">
37-
3.1.0rc4
37+
3.1.0rc5
3838
</div>
3939
<div role="search">
4040
<form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
@@ -50,6 +50,7 @@
5050
<ul>
5151
<li class="toctree-l1"><a class="reference internal" href="../../../../license.html">License</a></li>
5252
<li class="toctree-l1"><a class="reference internal" href="../../../../release.html">Release Notes</a></li>
53+
<li class="toctree-l1"><a class="reference internal" href="../../../../manual.html">Manual</a></li>
5354
<li class="toctree-l1"><a class="reference internal" href="../../../../api/diffpy.pdfgui.html">Package API</a></li>
5455
</ul>
5556

0 commit comments

Comments
 (0)