File tree Expand file tree Collapse file tree 8 files changed +121
-5
lines changed
src/green/dielectric_profile Expand file tree Collapse file tree 8 files changed +121
-5
lines changed Original file line number Diff line number Diff line change 13
13
14
14
- The versioning machinery has been updated. The update was inspired by the
15
15
` versioner.py ` tool devised by @loriab .
16
+ - The documentation building scripts ` conf.py ` and ` cloc_tools.py ` have been
17
+ thoroughly refactored and simplified:
18
+ * ` cloc_tools.py ` is now called ` cloc_wrapper.py ` . It is no longer configured
19
+ and can be found in the ` cloc_tools ` subfolder of ` doc ` .
20
+ * A local build of documentation will only work if run from within the ` doc ` folder:
21
+ ```
22
+ sphinx-build . _build
23
+ ```
24
+ This choice was made to simplify the set up of the ReadTheDocs and local
25
+ documentation building procedures and to minimize the chances of breaking
26
+ either.
16
27
17
28
## [ Version 1.2.0-rc1] - 2018-03-02
18
29
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ WARN_IF_DOC_ERROR = YES
108
108
WARN_NO_PARAMDOC = NO
109
109
WARN_AS_ERROR = NO
110
110
WARN_FORMAT = "$file:$line: $text"
111
- WARN_LOGFILE = doc /doxygen.log
111
+ WARN_LOGFILE = @doc_build_dir@ /doxygen.log
112
112
#---------------------------------------------------------------------------
113
113
# Configuration options related to the input files
114
114
#---------------------------------------------------------------------------
Original file line number Diff line number Diff line change 21
21
# PCMSolver API, see: <http://pcmsolver.readthedocs.io/>
22
22
#
23
23
24
- from .cloc_wrapper import bar_chart , total_bar_chart
24
+ from .cloc_wrapper import bar_chart
25
25
26
- __all__ = ['bar_chart' , 'total_bar_chart' ]
26
+ __all__ = ['bar_chart' ]
Original file line number Diff line number Diff line change
1
+ Boundary integral operators
2
+ ===========================
3
+
4
+ .. image :: ../gfx/bar_charts/bi_operators.svg
5
+ :scale: 70 %
6
+ :align: center
7
+
8
+ IBoundaryIntegralOperator
9
+ -------------------------
10
+ .. doxygenclass :: pcm::IBoundaryIntegralOperator
11
+ :project: PCMSolver
12
+ :members:
13
+ :protected-members:
14
+ :private-members:
15
+
16
+ Collocation
17
+ -----------
18
+
19
+ .. doxygenclass :: pcm::bi_operators::Collocation
20
+ :project: PCMSolver
21
+ :members:
22
+ :protected-members:
23
+ :private-members:
24
+
25
+ Purisima
26
+ --------
27
+
28
+ .. doxygenclass :: pcm::bi_operators::Purisima
29
+ :project: PCMSolver
30
+ :members:
31
+ :protected-members:
32
+ :private-members:
33
+
34
+ Numerical
35
+ ---------
36
+
37
+ .. doxygenclass :: pcm::bi_operators::Numerical
38
+ :project: PCMSolver
39
+ :members:
40
+ :protected-members:
41
+ :private-members:
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Classes and functions reference
10
10
11
11
cavities
12
12
greens-functions
13
+ dielectric-profiles
13
14
solvers
15
+ bi-operators
14
16
helper-classes
15
17
namespaces
Original file line number Diff line number Diff line change
1
+ Dielectric profiles
2
+ ===================
3
+
4
+ .. image :: ../gfx/bar_charts/dielectric_profile.svg
5
+ :scale: 70 %
6
+ :align: center
7
+
8
+ Uniform
9
+ -------
10
+ .. doxygenstruct :: pcm::dielectric_profile::Uniform
11
+ :project: PCMSolver
12
+ :members:
13
+ :protected-members:
14
+ :private-members:
15
+
16
+ Anisotropic
17
+ -----------
18
+ .. doxygenclass :: pcm::dielectric_profile::Anisotropic
19
+ :project: PCMSolver
20
+ :members:
21
+ :protected-members:
22
+ :private-members:
23
+
24
+ Yukawa
25
+ -------
26
+ .. doxygenstruct :: pcm::dielectric_profile::Yukawa
27
+ :project: PCMSolver
28
+ :members:
29
+ :protected-members:
30
+ :private-members:
31
+
32
+ OneLayerLog
33
+ -----------
34
+ .. doxygenclass :: pcm::dielectric_profile::OneLayerLog
35
+ :project: PCMSolver
36
+ :members:
37
+ :protected-members:
38
+ :private-members:
39
+
40
+ OneLayerTanh
41
+ ------------
42
+ .. doxygenclass :: pcm::dielectric_profile::OneLayerTanh
43
+ :project: PCMSolver
44
+ :members:
45
+ :protected-members:
46
+ :private-members:
47
+
48
+ OneLayerErf
49
+ -----------
50
+ .. doxygenclass :: pcm::dielectric_profile::OneLayerErf
51
+ :project: PCMSolver
52
+ :members:
53
+ :protected-members:
54
+ :private-members:
55
+
56
+ Sharp
57
+ -----
58
+ .. doxygenstruct :: pcm::dielectric_profile::Sharp
59
+ :project: PCMSolver
60
+ :members:
61
+ :protected-members:
62
+ :private-members:
Original file line number Diff line number Diff line change 31
31
32
32
namespace pcm {
33
33
namespace dielectric_profile {
34
- /* ! \struct Sharp
34
+ /* ! \struct Sharp
35
35
* \brief A sharp dielectric separation
36
36
* \author Roberto Di Remigio
37
37
* \date 2015
Original file line number Diff line number Diff line change 31
31
32
32
namespace pcm {
33
33
namespace dielectric_profile {
34
- /* ! \struct Uniform
34
+ /* ! \struct Uniform
35
35
* \brief a uniform dielectric profile
36
36
* \author Roberto Di Remigio
37
37
* \date 2015
You can’t perform that action at this time.
0 commit comments