Skip to content

Commit

Permalink
Updated reference in the docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Barnes committed Jan 23, 2019
1 parent f44606e commit 175a2ef
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
Expand All @@ -69,7 +69,7 @@

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
Expand All @@ -79,23 +79,23 @@
<div class="title">Calculate the Tidal Evolution of Two Bodies</div> </div>
</div><!--header-->
<div class="contents">
EqTide calculates the evolution of 2 bodies experiencing tidal evolution according to the "equilibrium tide" framework's
"constant-phase-lag" and "constant-time-lag" models. This algorithm is based on models by Ferraz-Mello, S. et al. (2008),
CeMDA, 101, 171-201. If you use this software, please cite Barnes, R. (2016), CeMDA, submitted.
EqTide calculates the evolution of 2 bodies experiencing tidal evolution according to the "equilibrium tide" framework's
"constant-phase-lag" and "constant-time-lag" models. This algorithm is based on models by Ferraz-Mello, S. et al. (2008),
CeMDA, 101, 171-201. If you use this software, please cite <a href="http://adsabs.harvard.edu/abs/2017CeMDA.129..509B">Barnes, R. (2017), CeMDA, 129, 509-536</a>.
<br><br>
To compile:
<br><br>
> make
<br><br>
which creates an executable "eqtide". The default is to compile with optimization (-O3).
<br><br>
Two examples are presented in the Examples directory. EarthMoon.in performs a backward integration of the Earth-Moon system,
Two examples are presented in the Examples directory. EarthMoon.in performs a backward integration of the Earth-Moon system,
reproducing the classic "lunar age" problem. Kepler22b.in performs a forward integration of the Kepler-22 b system. To run either:
<br><br>
> eqtide [-h, -v, -q] filename
<br><br>
The input file contains a list of options that can be set, as well as output parameters that print to a file during an integration.
The example input files provide a guide for the syntax and grammar of EqTide. The results of these examples should be compared to results
The input file contains a list of options that can be set, as well as output parameters that print to a file during an integration.
The example input files provide a guide for the syntax and grammar of EqTide. The results of these examples should be compared to results
in Barnes (2016).
<br><br>
To see the full list of input options and output parameters:
Expand All @@ -104,8 +104,8 @@
<br><br>
Run this before editing the example input files; it will help you immensely to understand how EqTide operates.
<br><br>
EqTide is written in C, and the code has been swept with valgrind's memcheck facility and is free of unitialized parameters and
buffer overflows. There are still a few memory leaks, but none is likely to cause any problems. This software has been tested on
EqTide is written in C, and the code has been swept with valgrind's memcheck facility and is free of unitialized parameters and
buffer overflows. There are still a few memory leaks, but none is likely to cause any problems. This software has been tested on
the following OS platforms: Mac OS 10.11.
<br><br>
This code was developed under the National Science Foundation (USA) grant AST-1110882 and NASA Cooperative Agreement NNA13AA93A.
Expand Down

0 comments on commit 175a2ef

Please sign in to comment.