Skip to content

Commit

Permalink
Fix typos in characteristic map docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fwitte committed May 4, 2020
1 parent 5b30998 commit a8045cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/tespy_modules/characteristics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ a vector for each dimension (y, z1 and z2).
\vec{z1} = \vec{z1_0} + \frac{x-x_0}{x_1-x_0} \cdot \left(\vec{z1_1}-
\vec{z1_0} \right)
\vec{z2} = \vec{z2_0} + \frac{x-x_0}{x1-x_0} \cdot \left(\vec{z2_1}-
\vec{z2} = \vec{z2_0} + \frac{x-x_0}{x_1-x_0} \cdot \left(\vec{z2_1}-
\vec{z2_0}\right)
Using the y value as second input dimension the corresponding z1 and z2 values
Expand Down
2 changes: 1 addition & 1 deletion tespy/tools/characteristics.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def evaluate(self, x, y):
\left(\vec{y_1}-\vec{y_0} \right)\\
\vec{z1} = \vec{z1_0} + \frac{x-x_0}{x_1-x_0} \cdot
\left(\vec{z1_1}-\vec{z1_0} \right)\\
\vec{z2} = \vec{z2_0} + \frac{x-x_0}{x1-x_0} \cdot
\vec{z2} = \vec{z2_0} + \frac{x-x_0}{x_1-x_0} \cdot
\left(\vec{z2_1}-\vec{z2_0}\right)
The index :math:`x_0` represents the lower and :math:`x_1` the
Expand Down

0 comments on commit a8045cd

Please sign in to comment.