Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
epsi1on committed Nov 16, 2023
1 parent db7a7f5 commit 9bee752
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/example/isoparamcoord/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ At the end point of the element, where `x=L`, and L is length of elements, the i
In bar element with two nodes the relation between isoparamtric `ξ` coordinate and local `x` coordinate is:

``x = (ξ + 1)*L/2``

and subsequently

``ξ = (2*x-L)/L``
Expand All @@ -35,9 +36,9 @@ So regardless of length of a beam `L`, the points `xi=-1` `xi=0` and `xi=1` resp

From code you can convert iso to local coords like this:

``
var x = 1.0 + 0.0000001;//need to find internal force at a little after x = 1.0 m
var xi = e0.LocalCoordsToIsoCoords(x);
``
.. code-block:: cs
var x = 1.0 + 0.0000001;//need to find internal force at a little after x = 1.0 m
var xi = e0.LocalCoordsToIsoCoords(x);
and for iso coord to local coord one could use `e0.IsoCoordToLocalCoord`
and for iso coord to local coord one could use ``e0.IsoCoordToLocalCoord()``

0 comments on commit 9bee752

Please sign in to comment.