From 7df24033ccd2aae9af2a2525a8685dc27447944e Mon Sep 17 00:00:00 2001 From: anand43 Date: Thu, 29 Feb 2024 17:15:17 -0500 Subject: [PATCH] Fixed typos --- docs/user-guide/basic-simulation/index.rst | 3 +-- docs/user-guide/detailed-simulation-setup/index.rst | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/user-guide/basic-simulation/index.rst b/docs/user-guide/basic-simulation/index.rst index 5d2945f33..6c7a6238b 100644 --- a/docs/user-guide/basic-simulation/index.rst +++ b/docs/user-guide/basic-simulation/index.rst @@ -8,7 +8,6 @@ This is based on ``/Basic_Simulation`` in ``swiftest/examples``. Start with importing Swiftest and other packages we will use in this tutorial. :: import swiftest - import numpy as np Initial Simulation Setup =========================== @@ -43,7 +42,7 @@ Running the Simulation We now set up the simulation parameters. Here we have a simulation starting from :math: `0.0 y` and running for :math: `1 My = 1e6 years` with time steps of :math: `0.01 years`. :: - + sim.set_parameter(tstart=0.0, tstop=1.0e6, dt=0.01) Once everything is set up, we can save the simulation object and then run it: :: diff --git a/docs/user-guide/detailed-simulation-setup/index.rst b/docs/user-guide/detailed-simulation-setup/index.rst index cde59a13b..7e3438df4 100644 --- a/docs/user-guide/detailed-simulation-setup/index.rst +++ b/docs/user-guide/detailed-simulation-setup/index.rst @@ -1,5 +1,5 @@ ################# -Basic Simulation +Detailed Simulation ################# Here, we will walk you through the basic features of Swiftest and using them in Python.