Skip to content

Commit 62f9281

Browse files
committedJan 11, 2019
build on travis ci
1 parent 8135da3 commit 62f9281

File tree

7 files changed

+83
-41
lines changed

7 files changed

+83
-41
lines changed
 

‎.travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
language: minimal
3+
4+
dist: xenial
5+
#sudo: false
6+
7+
# use apt-file command to find packages
8+
before_install:
9+
- set -e
10+
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
11+
sudo apt-get --yes install curl bzip2 make latexmk texlive-latex-recommended texlive-fonts-recommended texlive-latex-extra;
12+
curl -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh;
13+
bash Miniconda3-latest-Linux-x86_64.sh -b -p ${HOME}/anaconda;
14+
fi
15+
16+
script:
17+
- source ${HOME}/anaconda/bin/activate base
18+
- ./preinstall.sh
19+
- source activate devsim_doc
20+
- ./build.sh
21+

‎README

+5-20
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,7 @@
1-
If using anaconda, make sure you have sphinx installed. And the following package:
2-
conda install sphinx sphinx_rtd_theme
3-
pip install sphinxcontrib-bibtex
1+
Build steps starting with conda in your path.
42

5-
cd pydoc
6-
export PYTHONPATH=${PWD}
3+
preinstall.sh
4+
source activate devsim_doc
5+
build.sh
76

8-
# edit python files
9-
10-
#check results
11-
(cd pydoc && python CommandDoc.py) && (cd sphinx && make clean && make html)
12-
open file://${HOME}/git/devsim_manual/sphinx/build/html/CommandReference.html#meshing-commands
13-
14-
cp CommandReference.rst file into sphinx/source directory.
15-
cp DevsimDoc.cc into devsim directory
16-
17-
cd ../sphinx
18-
make pdf
19-
make html
20-
bash sync.sh
21-
22-
cp devsim.pdf into devsim directory
7+
The doc directory contains the pdf, html, and c++ file.

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# devsim_documentation
22

3+
[![Build Status](https://travis-ci.org/devsim/devsim_documentation.svg?branch=master)](https://travis-ci.org/devsim/devsim_documentation)
4+
35
## Introduction
46

57
This is the future location for the DEVSIM Manual and related documentation. It is currently hosted in pdf and html formats here. https://devsim.net

‎build.sh

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/bin/bash
2+
set -e
3+
4+
BASEDIR=${PWD}
5+
PYDIR=${BASEDIR}/pydoc
6+
SPHINXDIR=${BASEDIR}/sphinx
7+
SPHINXSOURCE=${SPHINXDIR}/source
8+
SPHINXBUILD=${SPHINXDIR}/build
9+
PKGDIR=${BASEDIR}/doc
10+
export PYTHONPATH=${PYDIR}
11+
echo ${PYTHONPATH}
12+
13+
cd ${PYDIR}
14+
echo "Generating Python Documentation"
15+
python CommandDoc.py
16+
17+
cp -av CommandReference.rst ${SPHINXSOURCE}
18+
19+
cd ${SPHINXDIR}
20+
make html
21+
make latexpdf
22+
23+
rm -rf ${PKGDIR}
24+
mkdir -p ${PKGDIR}
25+
cp -vR ${SPHINXBUILD}/html ${PKGDIR}
26+
cp -v ${SPHINXBUILD}/latex/devsim.pdf ${PKGDIR}
27+
cp -v ${PYDIR}/DevsimDoc.cc ${PKGDIR}
28+

‎preinstall.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
set -e
3+
conda create --yes --name devsim_doc python=3
4+
source activate devsim_doc
5+
conda install --yes sphinx sphinx_rtd_theme numpydoc
6+
pip install sphinxcontrib-bibtex

‎pydoc/CommandDoc.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import StringIO
1+
import io
22
import commandCommon
33
import sys
44

@@ -163,21 +163,21 @@
163163
def printCppMultiline(ofh, csb):
164164
s = CppEscape(csb.getvalue())
165165
for l in s.splitlines():
166-
print >>ofh, r'"%s\n"' % l
166+
print(r'"%s\n"' % l, file=ofh)
167167

168168

169169
def printCppCommand(ofh, sectionname, command):
170-
for k in command.keys():
170+
for k in list(command.keys()):
171171
if k not in ("name", "description", "long_description", "parameters"):
172172
raise RuntimeError("Unexpected key: " + k)
173173
try:
174174
commandname = command["name"].lower()
175175

176-
print >>ofh, "\nstatic const char %s_doc[] =" % commandname
177-
csb = StringIO.StringIO()
176+
print("\nstatic const char %s_doc[] =" % commandname, file=ofh)
177+
csb = io.StringIO()
178178
printPyCommand(csb, sectionname, command, False)
179179
printCppMultiline(ofh, csb)
180-
print >>ofh, ";"
180+
print(";", file=ofh)
181181
except Exception as e:
182182
#raise RuntimeError("Error while processing commmand: " + commandname + "\n" + str(e))
183183
raise
@@ -305,7 +305,7 @@ def printPyParameters(ofh, command):
305305
# Follow guide from https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
306306
# TODO return values
307307
def printPyCommand(ofh, sectionname, command, print_def):
308-
for k in command.keys():
308+
for k in list(command.keys()):
309309
if k not in ("name", "description", "long_description", "parameters"):
310310
raise RuntimeError("Unexpected key: " + k)
311311
try:
@@ -315,7 +315,7 @@ def printPyCommand(ofh, sectionname, command, print_def):
315315
"commandname" : commandname,
316316
}
317317
ofh.write("\ndef %(commandname)s (**kwargs):\n" % mydict)
318-
csb = StringIO.StringIO()
318+
csb = io.StringIO()
319319
if print_def:
320320
csb.write("'''\n")
321321
printPyCommandString(csb, command)

‎pydoc/DevsimDoc.cc

+13-13
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ static const char equation_doc[] =
247247
" In order to set the node volumes for integration of the ``edge_volume_model``, it is possible to do something like this:\n"
248248
"\n"
249249
" ..\n"
250-
" ds.edge_model(device=\"device\", region=\"region\", name=\"EdgeNodeVolume\", equation=\"0.5*SurfaceArea*EdgeLength\")\n"
251-
" ds.set_parameter(name=\"edge_node0_volume_model\", value=\"EdgeNodeVolume\")\n"
252-
" ds.set_parameter(name=\"edge_node1_volume_model\", value=\"EdgeNodeVolume\")\n"
250+
" devsim.edge_model(device=\"device\", region=\"region\", name=\"EdgeNodeVolume\", equation=\"0.5*SurfaceArea*EdgeLength\")\n"
251+
" devsim.set_parameter(name=\"edge_node0_volume_model\", value=\"EdgeNodeVolume\")\n"
252+
" devsim.set_parameter(name=\"edge_node1_volume_model\", value=\"EdgeNodeVolume\")\n"
253253
"\n"
254254
;
255255

@@ -460,7 +460,7 @@ static const char add_db_entry_doc[] =
460460
" Notes\n"
461461
" -----\n"
462462
"\n"
463-
" The :meth:`ds.save_db` command is used to commit these added entries permanently to the database.\n"
463+
" The :meth:`devsim.save_db` command is used to commit these added entries permanently to the database.\n"
464464
;
465465

466466
static const char close_db_doc[] =
@@ -554,7 +554,7 @@ static const char get_parameter_list_doc[] =
554554
" Notes\n"
555555
" -----\n"
556556
"\n"
557-
" Note that the ``device`` and ``region`` options are optional. If the region is not specified, the parameter is retrieved for the entire device. If the device is not specified, the parameter is retrieved for all devices. Unlike the :meth:`ds.getParameter`, parameter names on the the device are not retrieved if they do not exist on the region. Similarly, the parameter names over all devices are not retrieved if they do not exist on the device.\n"
557+
" Note that the ``device`` and ``region`` options are optional. If the region is not specified, the parameter is retrieved for the entire device. If the device is not specified, the parameter is retrieved for all devices. Unlike the :meth:`devsim.getParameter`, parameter names on the the device are not retrieved if they do not exist on the region. Similarly, the parameter names over all devices are not retrieved if they do not exist on the device.\n"
558558
;
559559

560560
static const char open_db_doc[] =
@@ -1106,7 +1106,7 @@ static const char cylindrical_edge_couple_doc[] =
11061106
" - ``ElementCylindricalEdgeCouple`` (Element Edge Model)\n"
11071107
" - ``CylindricalEdgeCouple`` (Edge Model)\n"
11081108
"\n"
1109-
" The :meth:`ds.set_parameter` must be used to set\n"
1109+
" The :meth:`devsim.set_parameter` must be used to set\n"
11101110
"\n"
11111111
" - ``raxis_variable``, the variable (``x`` or ``y``) which is the radial axis variable in the cylindrical coordinate system\n"
11121112
" - ``raxis_zero``, the location of the z axis for the radial axis variable\n"
@@ -1137,7 +1137,7 @@ static const char cylindrical_node_volume_doc[] =
11371137
"\n"
11381138
" The ``ElementCylindricalNodeVolume@en0`` and ``ElementCylindricalNodeVolume@en1`` represent the node volume at each end of the element edge.\n"
11391139
"\n"
1140-
" The :meth:`ds.set_parameter` must be used to set\n"
1140+
" The :meth:`devsim.set_parameter` must be used to set\n"
11411141
"\n"
11421142
" - ``raxis_variable``, the variable (``x`` or ``y``) which is the radial axis variable in the cylindrical coordinate system\n"
11431143
" - ``raxis_zero``, the location of the z axis for the radial axis variable\n"
@@ -1165,7 +1165,7 @@ static const char cylindrical_surface_area_doc[] =
11651165
"\n"
11661166
" and is the cylindrical surface area along each contact and interface node in the device region.\n"
11671167
"\n"
1168-
" The :meth:`ds.set_parameter` must be used to set\n"
1168+
" The :meth:`devsim.set_parameter` must be used to set\n"
11691169
"\n"
11701170
" - ``raxis_variable``, the variable (``x`` or ``y``) which is the radial axis variable in the cylindrical coordinate system\n"
11711171
" - ``raxis_zero``, the location of the z axis for the radial axis variable\n"
@@ -1272,13 +1272,13 @@ static const char edge_average_model_doc[] =
12721272
"\n"
12731273
" ..\n"
12741274
"\n"
1275-
" ds.edge_average_model(device=device, region=region, node_model=\"Potential\", edge_model=\"ElecticField\", average_type=\"negative_gradient\")\n"
1275+
" devsim.edge_average_model(device=device, region=region, node_model=\"Potential\", edge_model=\"ElecticField\", average_type=\"negative_gradient\")\n"
12761276
"\n"
12771277
" and the derivatives ``ElectricField:Potential@n0`` and ``ElectricField:Potential@n1`` are then created from\n"
12781278
"\n"
12791279
" ..\n"
12801280
"\n"
1281-
" ds.edge_average_model(device=device, region=region, node_model=\"Potential\", edge_model=\"ElecticField\", average_type=\"negative_gradient\", derivative=\"Potential\")\n"
1281+
" devsim.edge_average_model(device=device, region=region, node_model=\"Potential\", edge_model=\"ElecticField\", average_type=\"negative_gradient\", derivative=\"Potential\")\n"
12821282
;
12831283

12841284
static const char edge_from_node_model_doc[] =
@@ -1302,7 +1302,7 @@ static const char edge_from_node_model_doc[] =
13021302
"\n"
13031303
" ..\n"
13041304
"\n"
1305-
" ds.edge_from_node_model(device=device, region=region, node_model=\"Potential\")\n"
1305+
" devsim.edge_from_node_model(device=device, region=region, node_model=\"Potential\")\n"
13061306
"\n"
13071307
;
13081308

@@ -1333,7 +1333,7 @@ static const char edge_model_doc[] =
13331333
" - ``model_y_onNode``\n"
13341334
" - ``model_z_onNode`` (3D)\n"
13351335
"\n"
1336-
" This averaging scheme does not produce accurate results, and it is recommended to use the :meth:`ds.element_from_edge_model` to create components better suited for visualization. See :ref:`ch__visualization` for more information about creating data files for external visualization programs.\n"
1336+
" This averaging scheme does not produce accurate results, and it is recommended to use the :meth:`devsim.element_from_edge_model` to create components better suited for visualization. See :ref:`ch__visualization` for more information about creating data files for external visualization programs.\n"
13371337
;
13381338

13391339
static const char element_from_edge_model_doc[] =
@@ -1781,7 +1781,7 @@ static const char vector_gradient_doc[] =
17811781
" - ``model_grady`` (2D and 3D)\n"
17821782
" - ``model_gradz`` (3D)\n"
17831783
"\n"
1784-
" It is important not to use these models for simulation, since DEVSIM, does not have a way of evaluating the derivatives of these models. The models can be used for integrating the impedance field, and other postprocessing. The :meth:`ds.element_from_edge_model` command can be used to create gradients for use in a simulation.\n"
1784+
" It is important not to use these models for simulation, since DEVSIM, does not have a way of evaluating the derivatives of these models. The models can be used for integrating the impedance field, and other postprocessing. The :meth:`devsim.element_from_edge_model` command can be used to create gradients for use in a simulation.\n"
17851785
;
17861786

17871787
static const char get_contact_charge_doc[] =

0 commit comments

Comments
 (0)
Please sign in to comment.