Skip to content

Commit cbe66db

Browse files
committed
back to running the whole simulation
1 parent 44b4cb9 commit cbe66db

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

pySDC/projects/Hamiltonian/README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,5 @@ For this, only six planets are modeled, namely the Sun (which in its mass contai
2121
The acceleration due to gravitational forces are computed using a simple N^2 solver.
2222
All this is implemented within the ``OuterSolarSystem`` problem class.
2323
Coarsening can be done using only the sun for computing the acceleration.
24-
Note that the tests/autogenerated results only run the visualization to save time.
2524

2625
.. include:: doc_solar_system.rst
-2.09 MB
Binary file not shown.

pySDC/projects/Hamiltonian/solar_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def run_simulation(prob=None):
8080
description, controller_params = setup_outer_solar_system()
8181
# set time parameters
8282
t0 = 0.0
83-
Tend = 100000.0
83+
Tend = 20000.0
8484
num_procs = 100
8585
else:
8686
raise NotImplemented('Problem type not implemented, got %s' % prob)
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from pySDC.projects.Hamiltonian.solar_system import show_results
1+
from pySDC.projects.Hamiltonian.solar_system import main
22

33
def test_main():
4-
prob = 'outer_solar_system'
5-
show_results(prob, cwd='pySDC/projects/Hamiltonian/')
4+
main()

0 commit comments

Comments
 (0)