Skip to content

Commit ad31d93

Browse files
committed
for release r0.5.41
1 parent 933ea7b commit ad31d93

Some content is hidden

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

48 files changed

+2204
-2471
lines changed

docs/generated/.buildinfo

Lines changed: 1 addition & 1 deletion
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: fa6baa95aa6318bf3f11cb5f2c75982d
3+
config: 0c6a4148aef8e921421c047bfdec3445
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/generated/HVAC_Tutorial.html

Lines changed: 135 additions & 138 deletions
Large diffs are not rendered by default.

docs/generated/HVAC_diagrams.html

Lines changed: 42 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
88

9-
<title>&lt;no title&gt; &#8212; eppy 0.5.40 documentation</title>
9+
<title>&lt;no title&gt; &mdash; eppy 0.5.41 documentation</title>
1010

1111
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
1212
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
1313

1414
<script type="text/javascript">
1515
var DOCUMENTATION_OPTIONS = {
1616
URL_ROOT: './',
17-
VERSION: '0.5.40',
17+
VERSION: '0.5.41',
1818
COLLAPSE_INDEX: false,
1919
FILE_SUFFIX: '.html',
2020
HAS_SOURCE: true
@@ -23,7 +23,7 @@
2323
<script type="text/javascript" src="_static/jquery.js"></script>
2424
<script type="text/javascript" src="_static/underscore.js"></script>
2525
<script type="text/javascript" src="_static/doctools.js"></script>
26-
<link rel="top" title="eppy 0.5.40 documentation" href="index.html" />
26+
<link rel="top" title="eppy 0.5.41 documentation" href="index.html" />
2727
</head>
2828
<body role="document">
2929
<div class="related" role="navigation" aria-label="related navigation">
@@ -32,10 +32,7 @@ <h3>Navigation</h3>
3232
<li class="right" style="margin-right: 10px">
3333
<a href="genindex.html" title="General Index"
3434
accesskey="I">index</a></li>
35-
<li class="right" >
36-
<a href="py-modindex.html" title="Python Module Index"
37-
>modules</a> |</li>
38-
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.40 documentation</a> &#187;</li>
35+
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.41 documentation</a> &raquo;</li>
3936
</ul>
4037
</div>
4138

@@ -44,62 +41,62 @@ <h3>Navigation</h3>
4441
<div class="bodywrapper">
4542
<div class="body" role="main">
4643

47-
<div class="code python highlight-default"><div class="highlight"><pre><span></span><span class="sd">&quot;&quot;&quot;HVAC diagrams&quot;&quot;&quot;</span>
44+
<div class="code python highlight-python"><div class="highlight"><pre><span class="sd">&quot;&quot;&quot;HVAC diagrams&quot;&quot;&quot;</span>
4845
</pre></div>
4946
</div>
50-
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="s1">&#39;HVAC diagrams&#39;</span>
47+
<div class="highlight-python"><div class="highlight"><pre><span class="s">&#39;HVAC diagrams&#39;</span>
5148
</pre></div>
5249
</div>
53-
<div class="code python highlight-default"><div class="highlight"><pre><span></span><span class="c1"># you would normaly install eppy by doing</span>
54-
<span class="c1"># python setup.py install</span>
55-
<span class="c1"># or</span>
56-
<span class="c1"># pip install eppy</span>
57-
<span class="c1"># or</span>
58-
<span class="c1"># easy_install eppy</span>
50+
<div class="code python highlight-python"><div class="highlight"><pre><span class="c"># you would normaly install eppy by doing</span>
51+
<span class="c"># python setup.py install</span>
52+
<span class="c"># or</span>
53+
<span class="c"># pip install eppy</span>
54+
<span class="c"># or</span>
55+
<span class="c"># easy_install eppy</span>
5956

60-
<span class="c1"># if you have not done so, uncomment the following three lines</span>
57+
<span class="c"># if you have not done so, uncomment the following three lines</span>
6158
<span class="kn">import</span> <span class="nn">sys</span>
62-
<span class="c1"># pathnameto_eppy = &#39;c:/eppy&#39;</span>
63-
<span class="n">pathnameto_eppy</span> <span class="o">=</span> <span class="s1">&#39;../&#39;</span>
59+
<span class="c"># pathnameto_eppy = &#39;c:/eppy&#39;</span>
60+
<span class="n">pathnameto_eppy</span> <span class="o">=</span> <span class="s">&#39;../&#39;</span>
6461
<span class="n">sys</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">pathnameto_eppy</span><span class="p">)</span>
6562
</pre></div>
6663
</div>
67-
<div class="code python highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">eppy</span> <span class="k">import</span> <span class="n">modeleditor</span>
68-
<span class="kn">from</span> <span class="nn">eppy.modeleditor</span> <span class="k">import</span> <span class="n">IDF</span>
69-
<span class="n">iddfile</span> <span class="o">=</span> <span class="s2">&quot;../eppy/resources/iddfiles/Energy+V8_0_0.idd&quot;</span>
70-
<span class="n">fname</span> <span class="o">=</span> <span class="s2">&quot;../eppy/resources/idffiles/V8_0_0/5ZoneSupRetPlenRAB.idf&quot;</span>
64+
<div class="code python highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">eppy</span> <span class="kn">import</span> <span class="n">modeleditor</span>
65+
<span class="kn">from</span> <span class="nn">eppy.modeleditor</span> <span class="kn">import</span> <span class="n">IDF</span>
66+
<span class="n">iddfile</span> <span class="o">=</span> <span class="s">&quot;../eppy/resources/iddfiles/Energy+V8_0_0.idd&quot;</span>
67+
<span class="n">fname</span> <span class="o">=</span> <span class="s">&quot;../eppy/resources/idffiles/V8_0_0/5ZoneSupRetPlenRAB.idf&quot;</span>
7168
<span class="n">IDF</span><span class="o">.</span><span class="n">setiddname</span><span class="p">(</span><span class="n">iddfile</span><span class="p">)</span>
7269
</pre></div>
7370
</div>
74-
<div class="code python highlight-default"><div class="highlight"><pre><span></span><span class="n">idf</span> <span class="o">=</span> <span class="n">IDF</span><span class="p">(</span><span class="n">fname</span><span class="p">)</span>
71+
<div class="code python highlight-python"><div class="highlight"><pre><span class="n">idf</span> <span class="o">=</span> <span class="n">IDF</span><span class="p">(</span><span class="n">fname</span><span class="p">)</span>
7572
</pre></div>
7673
</div>
77-
<div class="code python highlight-default"><div class="highlight"><pre><span></span><span class="c1"># idf.model</span>
74+
<div class="code python highlight-python"><div class="highlight"><pre><span class="c"># idf.model</span>
7875
</pre></div>
7976
</div>
80-
<div class="code python highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">eppy.EPlusInterfaceFunctions</span> <span class="k">import</span> <span class="n">readidf</span>
81-
<span class="kn">from</span> <span class="nn">eppy.ex_loopdiagram</span> <span class="k">import</span> <span class="n">makeairplantloop</span><span class="p">,</span> <span class="n">makediagram</span>
77+
<div class="code python highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">eppy.EPlusInterfaceFunctions</span> <span class="kn">import</span> <span class="n">readidf</span>
78+
<span class="kn">from</span> <span class="nn">eppy.ex_loopdiagram</span> <span class="kn">import</span> <span class="n">makeairplantloop</span><span class="p">,</span> <span class="n">makediagram</span>
8279

83-
<span class="nb">print</span> <span class="s2">&quot;readingfile&quot;</span>
80+
<span class="k">print</span> <span class="s">&quot;readingfile&quot;</span>
8481
<span class="n">data</span><span class="p">,</span> <span class="n">commdct</span> <span class="o">=</span> <span class="n">readidf</span><span class="o">.</span><span class="n">readdatacommdct</span><span class="p">(</span><span class="n">fname</span><span class="p">,</span> <span class="n">iddfile</span><span class="o">=</span><span class="n">iddfile</span><span class="p">)</span>
85-
<span class="nb">print</span> <span class="s2">&quot;constructing the loops&quot;</span>
82+
<span class="k">print</span> <span class="s">&quot;constructing the loops&quot;</span>
8683
<span class="n">edges</span> <span class="o">=</span> <span class="n">makeairplantloop</span><span class="p">(</span><span class="n">data</span><span class="p">,</span> <span class="n">commdct</span><span class="p">)</span>
87-
<span class="nb">print</span> <span class="s2">&quot;making the diagram&quot;</span>
84+
<span class="k">print</span> <span class="s">&quot;making the diagram&quot;</span>
8885
<span class="n">g</span> <span class="o">=</span> <span class="n">makediagram</span><span class="p">(</span><span class="n">edges</span><span class="p">)</span>
89-
<span class="n">dotname</span> <span class="o">=</span> <span class="s2">&quot;a.dot&quot;</span>
90-
<span class="n">pngname</span> <span class="o">=</span> <span class="s2">&quot;a.png&quot;</span>
91-
<span class="c1"># dotname = &#39;%s.dot&#39; % (os.path.splitext(fname)[0])</span>
92-
<span class="c1"># pngname = &#39;%s.png&#39; % (os.path.splitext(fname)[0])</span>
86+
<span class="n">dotname</span> <span class="o">=</span> <span class="s">&quot;a.dot&quot;</span>
87+
<span class="n">pngname</span> <span class="o">=</span> <span class="s">&quot;a.png&quot;</span>
88+
<span class="c"># dotname = &#39;%s.dot&#39; % (os.path.splitext(fname)[0])</span>
89+
<span class="c"># pngname = &#39;%s.png&#39; % (os.path.splitext(fname)[0])</span>
9390
<span class="n">g</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">dotname</span><span class="p">)</span>
9491
<span class="n">g</span><span class="o">.</span><span class="n">write_png</span><span class="p">(</span><span class="n">pngname</span><span class="p">)</span>
9592
</pre></div>
9693
</div>
97-
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">readingfile</span>
98-
<span class="n">constructing</span> <span class="n">the</span> <span class="n">loops</span>
99-
<span class="n">making</span> <span class="n">the</span> <span class="n">diagram</span>
94+
<div class="highlight-python"><div class="highlight"><pre>readingfile
95+
constructing the loops
96+
making the diagram
10097
</pre></div>
10198
</div>
102-
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="kc">True</span>
99+
<div class="highlight-python"><div class="highlight"><pre><span class="bp">True</span>
103100
</pre></div>
104101
</div>
105102

@@ -119,11 +116,14 @@ <h3>This Page</h3>
119116
<div id="searchbox" style="display: none" role="search">
120117
<h3>Quick search</h3>
121118
<form class="search" action="search.html" method="get">
122-
<div><input type="text" name="q" /></div>
123-
<div><input type="submit" value="Go" /></div>
119+
<input type="text" name="q" />
120+
<input type="submit" value="Go" />
124121
<input type="hidden" name="check_keywords" value="yes" />
125122
<input type="hidden" name="area" value="default" />
126123
</form>
124+
<p class="searchtip" style="font-size: 90%">
125+
Enter search terms or a module, class or function name.
126+
</p>
127127
</div>
128128
<script type="text/javascript">$('#searchbox').show(0);</script>
129129
</div>
@@ -136,15 +136,12 @@ <h3>Navigation</h3>
136136
<li class="right" style="margin-right: 10px">
137137
<a href="genindex.html" title="General Index"
138138
>index</a></li>
139-
<li class="right" >
140-
<a href="py-modindex.html" title="Python Module Index"
141-
>modules</a> |</li>
142-
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.40 documentation</a> &#187;</li>
139+
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.41 documentation</a> &raquo;</li>
143140
</ul>
144141
</div>
145142
<div class="footer" role="contentinfo">
146-
&#169; Copyright 2013, Santosh Philip.
147-
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4.6.
143+
&copy; Copyright 2013, Santosh Philip.
144+
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.
148145
</div>
149146
</body>
150147
</html>

docs/generated/LICENSE.html

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
88

9-
<title>LICENSE &#8212; eppy 0.5.40 documentation</title>
9+
<title>LICENSE &mdash; eppy 0.5.41 documentation</title>
1010

1111
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
1212
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
1313

1414
<script type="text/javascript">
1515
var DOCUMENTATION_OPTIONS = {
1616
URL_ROOT: './',
17-
VERSION: '0.5.40',
17+
VERSION: '0.5.41',
1818
COLLAPSE_INDEX: false,
1919
FILE_SUFFIX: '.html',
2020
HAS_SOURCE: true
@@ -23,7 +23,7 @@
2323
<script type="text/javascript" src="_static/jquery.js"></script>
2424
<script type="text/javascript" src="_static/underscore.js"></script>
2525
<script type="text/javascript" src="_static/doctools.js"></script>
26-
<link rel="top" title="eppy 0.5.40 documentation" href="index.html" />
26+
<link rel="top" title="eppy 0.5.41 documentation" href="index.html" />
2727
<link rel="prev" title="Documenting eppy" href="dev_docs/doc_eppy.html" />
2828
</head>
2929
<body role="document">
@@ -33,13 +33,10 @@ <h3>Navigation</h3>
3333
<li class="right" style="margin-right: 10px">
3434
<a href="genindex.html" title="General Index"
3535
accesskey="I">index</a></li>
36-
<li class="right" >
37-
<a href="py-modindex.html" title="Python Module Index"
38-
>modules</a> |</li>
3936
<li class="right" >
4037
<a href="dev_docs/doc_eppy.html" title="Documenting eppy"
4138
accesskey="P">previous</a> |</li>
42-
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.40 documentation</a> &#187;</li>
39+
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.41 documentation</a> &raquo;</li>
4340
</ul>
4441
</div>
4542

@@ -91,11 +88,14 @@ <h3>This Page</h3>
9188
<div id="searchbox" style="display: none" role="search">
9289
<h3>Quick search</h3>
9390
<form class="search" action="search.html" method="get">
94-
<div><input type="text" name="q" /></div>
95-
<div><input type="submit" value="Go" /></div>
91+
<input type="text" name="q" />
92+
<input type="submit" value="Go" />
9693
<input type="hidden" name="check_keywords" value="yes" />
9794
<input type="hidden" name="area" value="default" />
9895
</form>
96+
<p class="searchtip" style="font-size: 90%">
97+
Enter search terms or a module, class or function name.
98+
</p>
9999
</div>
100100
<script type="text/javascript">$('#searchbox').show(0);</script>
101101
</div>
@@ -108,18 +108,15 @@ <h3>Navigation</h3>
108108
<li class="right" style="margin-right: 10px">
109109
<a href="genindex.html" title="General Index"
110110
>index</a></li>
111-
<li class="right" >
112-
<a href="py-modindex.html" title="Python Module Index"
113-
>modules</a> |</li>
114111
<li class="right" >
115112
<a href="dev_docs/doc_eppy.html" title="Documenting eppy"
116113
>previous</a> |</li>
117-
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.40 documentation</a> &#187;</li>
114+
<li class="nav-item nav-item-0"><a href="index.html">eppy 0.5.41 documentation</a> &raquo;</li>
118115
</ul>
119116
</div>
120117
<div class="footer" role="contentinfo">
121-
&#169; Copyright 2013, Santosh Philip.
122-
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4.6.
118+
&copy; Copyright 2013, Santosh Philip.
119+
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.
123120
</div>
124121
</body>
125122
</html>

0 commit comments

Comments
 (0)