Skip to content

Commit be4cc56

Browse files
committed
Merge branch 'fix/review-part2' into 'develop'
Fix/review part2 See merge request njoy/dryad!130
2 parents 16eef80 + be00b25 commit be4cc56

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

docs/src/dryad/thermal.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ thermal
99

1010
thermal/TabulatedDebyeWallerIntegral
1111
thermal/IncoherentElasticScattering
12+
thermal/TabulatedEffectiveTemperature
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.. currentmodule:: njoy.dryad.thermal
2+
3+
TabulatedEffectiveTemperature
4+
=============================
5+
6+
General information about this concept
7+
8+
Constructor
9+
~~~~~~~~~~~
10+
.. autosummary::
11+
:toctree: generated/
12+
13+
TabulatedEffectiveTemperature
14+
15+
Read-only Attributes
16+
~~~~~~~~~~~~~~~~~~~~
17+
.. autosummary::
18+
:toctree: generated/
19+
20+
~TabulatedEffectiveTemperature.moderator_temperatures
21+
~TabulatedEffectiveTemperature.values
22+
~TabulatedEffectiveTemperature.interpolants
23+
~TabulatedEffectiveTemperature.boundaries
24+
~TabulatedEffectiveTemperature.number_points
25+
~TabulatedEffectiveTemperature.number_regions
26+
~TabulatedEffectiveTemperature.lower_moderator_temperature_limit
27+
~TabulatedEffectiveTemperature.upper_moderator_temperature_limit
28+
~TabulatedEffectiveTemperature.is_linearised
29+
30+
Methods
31+
~~~~~~~
32+
33+
.. autosummary::
34+
:toctree: generated/
35+
36+
~TabulatedEffectiveTemperature.__call__
37+
~TabulatedEffectiveTemperature.linearise

src/njoy/dryad/thermal/TabulatedEffectiveTemperature/src/ctor.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ TabulatedEffectiveTemperature( std::vector< double > moderatorTemperatures,
3737
std::move( boundaries ), std::move( interpolants ) ) {}
3838

3939
/**
40-
* @brief Constructor for a Debye-Waller integral table using a single interpolation zone
40+
* @brief Constructor for an effective temperature table using a single interpolation zone
4141
*
42-
* @param moderatorTemperatures the temperature values
43-
* @param values the integral values
42+
* @param moderatorTemperatures the moderator temperatures values
43+
* @param values the effective temperature values
4444
* @param interpolant the interpolation type of the data (default lin-lin)
4545
*/
4646
TabulatedEffectiveTemperature( std::vector< double > moderatorTemperatures,

0 commit comments

Comments
 (0)