Skip to main content
Version: v3.5.3

Running a Grid

A common task is to run UCLCHEM over a grid of parameter combinations. This notebook sets up a simple approach to doing so for regular grids.

import uclchem
import numpy as np
import pandas as pd
import os
from joblib import Parallel, delayed

A Simple Grid​

Define Parameter Space​

First, we define our parameter space. We do this by using numpy and pandas to produce a table of all possible combinations of some parameters of interest.

# This part can be substituted with any choice of grid
# here we just vary the density, temperature and zeta
temperatures = np.linspace(10, 50, 3)
densities = np.logspace(4, 6, 3)
zetas = np.logspace(1, 3, 3)

# meshgrid will give all combinations, then we shape into columns and put into a table
parameterSpace = np.asarray(np.meshgrid(temperatures, densities, zetas)).reshape(3, -1)
model_table = pd.DataFrame(parameterSpace.T, columns=["temperature", "density", "zeta"])

# keep track of where each model output will be saved and make sure that folder exists
model_table["outputFile"] = model_table.apply(
lambda row: f"../grid_folder/\{row.temperature\}_\{row.density\}_\{row.zeta\}.csv", axis=1
)
print(f"\{model_table.shape[0]\} models to run")
if not os.path.exists("../grid_folder"):
os.makedirs("../grid_folder")

27 models to run

model_table.head()
temperaturedensityzetaoutputFile
010.010000.010.0../grid_folder/10.0_10000.0_10.0.csv
110.010000.0100.0../grid_folder/10.0_10000.0_100.0.csv
210.010000.01000.0../grid_folder/10.0_10000.0_1000.0.csv
330.010000.010.0../grid_folder/30.0_10000.0_10.0.csv
430.010000.0100.0../grid_folder/30.0_10000.0_100.0.csv

Set up the model​

Next, we need a function that will run our model. We write a quick function that takes a row from our dataframe and uses it to populate a parameter dictionary for UCLCHEM and then run a cloud model. We can then map our dataframe to that function.

def run_model(row):
# basic set of parameters we'll use for this grid.
ParameterDictionary = \{
"endatfinaldensity": False,
"freefall": False,
"initialDens": row.density,
"initialTemp": row.temperature,
"zeta": row.zeta,
"outputFile": row.outputFile,
"finalTime": 1.0e6,
"baseAv": 10,
"abstol_min": 1e-22,
\}
result = uclchem.model.cloud(param_dict=ParameterDictionary)
return result[0] # just the integer error code

Run Grid​

The Simple Way​

We can use pandas apply to simply pass each row to our helper function in turn. This will take some time since we're running the models one by one. I'll use the head function just to run five rows as an example here.

%%time
result = model_table.head().apply(run_model, axis=1)

CPU times: user 26.1 s, sys: 328 ms, total: 26.4 s Wall time: 26.4 s

The Fast Way​

Alternatively, we can use multiprocessing to run the models in parallel. That will allow us to run many models simulataneously and make use of all the cores available on our machine.

%%time
results = Parallel(n_jobs=4, verbose=100)(
delayed(run_model)(row) for idx, row in model_table.iterrows()
)

[Parallel(n_jobs=4)]: Using backend LokyBackend with 4 concurrent workers.

[Parallel(n_jobs=4)]: Done 1 tasks | elapsed: 2.4s

[Parallel(n_jobs=4)]: Done 2 tasks | elapsed: 3.2s

[Parallel(n_jobs=4)]: Done 3 tasks | elapsed: 3.5s

[Parallel(n_jobs=4)]: Done 4 tasks | elapsed: 4.6s

[Parallel(n_jobs=4)]: Done 5 tasks | elapsed: 7.5s [Parallel(n_jobs=4)]: Done 6 tasks | elapsed: 7.6s

[Parallel(n_jobs=4)]: Done 7 tasks | elapsed: 8.1s

[Parallel(n_jobs=4)]: Done 8 tasks | elapsed: 15.6s

[Parallel(n_jobs=4)]: Done 9 tasks | elapsed: 20.2s

[Parallel(n_jobs=4)]: Done 10 tasks | elapsed: 22.7s

[Parallel(n_jobs=4)]: Done 11 tasks | elapsed: 25.1s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2198109471612D+14 ISTATE -1: Reducing time step to 439.57368972945028 years

[Parallel(n_jobs=4)]: Done 12 tasks | elapsed: 27.4s

[Parallel(n_jobs=4)]: Done 13 tasks | elapsed: 30.8s

[Parallel(n_jobs=4)]: Done 14 tasks | elapsed: 31.8s

[Parallel(n_jobs=4)]: Done 15 tasks | elapsed: 34.0s

[Parallel(n_jobs=4)]: Done 16 tasks | elapsed: 34.9s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2503359552070D+14 ISTATE -1: Reducing time step to 779.76102206855091 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2482539199817D+14 ISTATE -1: Reducing time step to 1438.6329386134655 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.4562874072369D+13 ISTATE -1: Reducing time step to 5560.5251702977621 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2822429565467D+14 ISTATE -1: Reducing time step to 682.60869793503730 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1454904683242D+14 ISTATE -1: Reducing time step to 3958.7126146251189 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.5784408393190D+13 ISTATE -1: Reducing time step to 1694.9101733893931 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2778782082717D+14 ISTATE -1: Reducing time step to 2063.8581726193647 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3133514120636D+14 ISTATE -1: Reducing time step to 838.16075184872068 years

[Parallel(n_jobs=4)]: Done 17 tasks | elapsed: 1.4min

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.7577918329233D+13 ISTATE -1: Reducing time step to 6019.2458832586690 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8794256142577D+13 ISTATE -1: Reducing time step to 2170.0755305119005 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3048989377582D+14 ISTATE -1: Reducing time step to 3512.9944326741643 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.4414523737590D+13 ISTATE -1: Reducing time step to 6029.9882620378521 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1725008644503D+14 ISTATE -1: Reducing time step to 5411.1189254737628 years

[Parallel(n_jobs=4)]: Done 18 tasks | elapsed: 2.2min

[Parallel(n_jobs=4)]: Done 19 tasks | elapsed: 2.2min

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1075705665705D+14 ISTATE -1: Reducing time step to 5958.6815538374249 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1868555858678D+14 ISTATE -1: Reducing time step to 868.48549782547855 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1203783519874D+14 ISTATE -1: Reducing time step to 1905.5848425127560 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.5209890914707D+13 ISTATE -1: Reducing time step to 3513.0034868191765 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3155505088696D+14 ISTATE -1: Reducing time step to 142.24403074156024 years

[Parallel(n_jobs=4)]: Done 20 tasks | elapsed: 3.2min At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1393615842366D+14 ISTATE -1: Reducing time step to 5898.2329243970144 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2034541623859D+14 ISTATE -1: Reducing time step to 5615.7714805335845 years

[Parallel(n_jobs=4)]: Done 21 out of 27 | elapsed: 3.2min remaining: 54.8s

[Parallel(n_jobs=4)]: Done 22 out of 27 | elapsed: 3.3min remaining: 44.6s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.9333912166778D+12 ISTATE -1: Reducing time step to 46.230327657729809 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.6051948305943D+13 ISTATE -1: Reducing time step to 848.26486725184884 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.7716783205046D+13 ISTATE -1: Reducing time step to 5579.8000671770023 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8230624997078D+13 ISTATE -1: Reducing time step to 3953.7184225918668 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1517028777372D+14 ISTATE -1: Reducing time step to 1992.7602394266096 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1061335065119D+14 ISTATE -1: Reducing time step to 6413.4474019424533 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2170931060591D+14 ISTATE -1: Reducing time step to 1299.6500006731073 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1084199836179D+14 ISTATE -1: Reducing time step to 5689.8786867142007 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1150972716172D+14 ISTATE -1: Reducing time step to 3576.8128326713149 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1993475986715D+14 ISTATE -1: Reducing time step to 6915.3169791670616 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2723806284882D+14 ISTATE -1: Reducing time step to 3803.5986363714201 years

[Parallel(n_jobs=4)]: Done 23 out of 27 | elapsed: 4.2min remaining: 43.4s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.7136389867985D+13 ISTATE -1: Reducing time step to 7416.4878700547606 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2346424424802D+14 ISTATE -1: Reducing time step to 5746.0625918742153 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2344838213824D+14 ISTATE -1: Reducing time step to 5796.2591425813716 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1697272218503D+14 ISTATE -1: Reducing time step to 6288.8539385562972 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2479987642833D+14 ISTATE -1: Reducing time step to 1519.3784139935481 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2699212374447D+14 ISTATE -1: Reducing time step to 4581.8869528671949 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.7954978022730D+13 ISTATE -1: Reducing time step to 4826.0189873261370 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2865365072297D+14 ISTATE -1: Reducing time step to 9323.8902561291343 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1815105042905D+14 ISTATE -1: Reducing time step to 2559.9670348253771 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2969222551048D+14 ISTATE -1: Reducing time step to 6037.2611327558607 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3078344193990D+14 ISTATE -1: Reducing time step to 2584.0445324899847 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8763498467922D+13 ISTATE -1: Reducing time step to 2267.4099454278421 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2658713148232D+14 ISTATE -1: Reducing time step to 5863.5080547234411 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3111354891394D+14 ISTATE -1: Reducing time step to 1539.4021940305904 years

[Parallel(n_jobs=4)]: Done 24 out of 27 | elapsed: 5.8min remaining: 43.5s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2788204335693D+14 ISTATE -1: Reducing time step to 1765.6856056371350 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2011549040199D+14 ISTATE -1: Reducing time step to 6343.3848983672779 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1028241035539D+14 ISTATE -1: Reducing time step to 7460.7268346083274 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2975478929586D+14 ISTATE -1: Reducing time step to 5839.2744672086901 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2125771126242D+14 ISTATE -1: Reducing time step to 2728.7618684307813 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1110812325198D+14 ISTATE -1: Reducing time step to 4847.7113001578819 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3107161620256D+14 ISTATE -1: Reducing time step to 1672.1006497188516 years

[Parallel(n_jobs=4)]: Done 25 out of 27 | elapsed: 7.7min remaining: 36.9s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1192634870924D+14 ISTATE -1: Reducing time step to 2258.3901942822527 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2327884343921D+14 ISTATE -1: Reducing time step to 6332.7740209051190 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2441987332394D+14 ISTATE -1: Reducing time step to 2721.9199014944356 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1342951101586D+14 ISTATE -1: Reducing time step to 7501.5475299599721 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1422301184909D+14 ISTATE -1: Reducing time step to 4990.4689063429823 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2643978064588D+14 ISTATE -1: Reducing time step to 6329.8081769923274 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1501390534017D+14 ISTATE -1: Reducing time step to 2487.6413656487298 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2756159871400D+14 ISTATE -1: Reducing time step to 2779.7509464808149 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1578509511799D+14 ISTATE -1: Reducing time step to 47.167348837175048 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1656938357712D+14 ISTATE -1: Reducing time step to 7565.2419572954150 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1732745992907D+14 ISTATE -1: Reducing time step to 5166.2661242235417 years At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2956498355742D+14 ISTATE -1: Reducing time step to 6439.9255471766546 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1808583909760D+14 ISTATE -1: Reducing time step to 2766.3320108452112 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3067790223781D+14 ISTATE -1: Reducing time step to 2918.0309364910977 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1882006703323D+14 ISTATE -1: Reducing time step to 442.82585082042260 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1969411138522D+14 ISTATE -1: Reducing time step to 7676.8628193994718 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2043350641523D+14 ISTATE -1: Reducing time step to 5337.0050946099500 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2115387498874D+14 ISTATE -1: Reducing time step to 3057.3576761275767 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2186646988264D+14 ISTATE -1: Reducing time step to 802.31050992488679 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2288009125885D+14 ISTATE -1: Reducing time step to 7594.6480281956865 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2358093674054D+14 ISTATE -1: Reducing time step to 5376.7825467524590 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2423204983938D+14 ISTATE -1: Reducing time step to 3316.2980260564627 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2497391749863D+14 ISTATE -1: Reducing time step to 968.61552509872035 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2595805447761D+14 ISTATE -1: Reducing time step to 7854.2580992847707 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2672762909352D+14 ISTATE -1: Reducing time step to 5418.8953544316983 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2744317680279D+14 ISTATE -1: Reducing time step to 3154.5038356391997 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2823146939337D+14 ISTATE -1: Reducing time step to 659.90699285151470 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2917054938328D+14 ISTATE -1: Reducing time step to 7688.1349775940917 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2996640926682D+14 ISTATE -1: Reducing time step to 5169.5910048165933 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3072871858243D+14 ISTATE -1: Reducing time step to 2757.2197169288575 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3137412072161D+14 ISTATE -1: Reducing time step to 714.80785365212216 years

[Parallel(n_jobs=4)]: Done 27 out of 27 | elapsed: 21.0min finished CPU times: user 355 ms, sys: 405 ms, total: 760 ms Wall time: 20min 58s

Checking Your Grid​

After running, we should do two things. First, let's add results to our dataframe as a new column. Positive results mean a successful UCLCHEM run and negative ones are unsuccessful. Then we can run each model through check_element_conservation to check the integration was successful. We'll use both these things to flag models that failed in some way.

def element_check(output_file):
df = uclchem.analysis.read_output_file(output_file)
# get conservation values
conserves = uclchem.analysis.check_element_conservation(df)
# check if any error is greater than 1%
return all([float(x[:-1]) < 1 for x in conserves.values()])
model_table["run_result"] = results
model_table["elements_conserved"] = model_table["outputFile"].map(element_check)
# check both conditions are met
model_table["Successful"] = (model_table.run_result >= 0) & (
model_table.elements_conserved
)
model_table.head()
temperaturedensityzetaoutputFilerun_resultelements_conservedSuccessful
010.010000.010.0../grid_folder/10.0_10000.0_10.0.csv0TrueTrue
110.010000.0100.0../grid_folder/10.0_10000.0_100.0.csv0TrueTrue
210.010000.01000.0../grid_folder/10.0_10000.0_1000.0.csv0TrueTrue
330.010000.010.0../grid_folder/30.0_10000.0_10.0.csv0TrueTrue
430.010000.0100.0../grid_folder/30.0_10000.0_100.0.csv0TrueTrue

Complex Grid​

The above was straightforward enough but what about a modelling a grid of shocks? Not only do we want to loop over relevant parameters, we also need to run a few preliminary models to give ourselves starting abundances. We'll start by defining two helper functions, one to run our preliminary cloud and one to run the shock.

Let's further imagine that we want to obtain the abundances of several species at the end of the model. We can use the out_species parameter to specify which species we want to track and return them to our dataframe.

out_species = ["CO", "H2O", "CH3OH"]


def run_prelim(density):
# basic set of parameters we'll use for this grid.
ParameterDictionary = \{
"endatfinaldensity": True,
"freefall": True,
"initialDens": 1e2,
"finalDens": float(density),
"initialTemp": 10.0,
"abundSaveFile": f"../grid_folder/starts/\{density:.0f\}.csv",
"baseAv": 1,
\}
result = uclchem.model.cloud(param_dict=ParameterDictionary)
return result


def run_model(row):
# basic set of parameters we'll use for this grid.
ParameterDictionary = \{
"endatfinaldensity": False,
"freefall": False,
"initialDens": float(row.density),
"initialTemp": 10.0,
"outputFile": row.outputFile,
"abundLoadFile": f"../grid_folder/starts/\{row.density:.0f\}.csv",
"finalTime": 1.0e5,
"abstol_factor": 1e-14,
"abstol_min": 1e-20,
"reltol": 1e-6,
"baseAv": 1,
\}
result = uclchem.model.cshock(
row.shock_velocity, param_dict=ParameterDictionary, out_species=out_species
)
# First check UCLCHEM's result flag to seeif it ran succesfully, if it is return the abundances
if result[0] == 0:
return result[:]
# if not, return NaNs because model failed
else:
return [np.nan] * len(out_species)

Then we define our parameter space again. We'll create two folders, one to store a set of initial abundances for each starting density in our model and another to store our shock outputs.

# This part can be substituted with any choice of grid
# here we just combine various initial and final densities into an easily iterable array
shock_velocities = np.linspace(10, 50, 3)
densities = np.logspace(4, 6, 3)

parameterSpace = np.asarray(np.meshgrid(shock_velocities, densities)).reshape(2, -1)
model_table = pd.DataFrame(parameterSpace.T, columns=["shock_velocity", "density"])
model_table["outputFile"] = model_table.apply(
lambda row: f"../grid_folder/shocks/\{row.shock_velocity\}_\{row.density\}.csv", axis=1
)
print(f"\{model_table.shape[0]\} models to run")

for folder in ["starts", "shocks"]:
if not os.path.exists(f"../grid_folder/\{folder\}"):
os.makedirs(f"../grid_folder/\{folder\}")

9 models to run

We can then run our preliminary models followed by our science models. The science models will return the abundances at the final time step of each run so we can unpack those directly to our dataframe.

results = Parallel(n_jobs=4, verbose=100)(
delayed(run_prelim)(dens) for dens in densities
)

[Parallel(n_jobs=4)]: Using backend LokyBackend with 4 concurrent workers.

[Parallel(n_jobs=4)]: Done 1 tasks | elapsed: 4.8s

[Parallel(n_jobs=4)]: Done 3 out of 3 | elapsed: 8.2s finished

results = Parallel(n_jobs=4, verbose=100)(
delayed(run_model)(row) for idx, row in model_table.iterrows()
)

[Parallel(n_jobs=4)]: Using backend LokyBackend with 4 concurrent workers.

[Parallel(n_jobs=4)]: Done 1 tasks | elapsed: 10.0s [Parallel(n_jobs=4)]: Done 2 tasks | elapsed: 10.1s

[Parallel(n_jobs=4)]: Done 3 out of 9 | elapsed: 17.6s remaining: 35.1s

[Parallel(n_jobs=4)]: Done 4 out of 9 | elapsed: 21.2s remaining: 26.4s

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3063046680601D+12 ISTATE -1: Reducing time step to 96.771568540453785 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.4953529363436D+12 ISTATE -1: Reducing time step to 149.37643132228129 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3392444125326D+12 ISTATE -1: Reducing time step to 99.140909986238739 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.4988866320631D+12 ISTATE -1: Reducing time step to 138.19384976486563 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.5961953199561D+12 ISTATE -1: Reducing time step to 1.9499041788515614 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7357437203007D+12 R2 = 0.2329581329923D+04 ISTATE -5 - shortening step at time 22852.592841823789 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8011456874139D+12 R2 = 0.4486786363735D-06 ISTATE -5 - shortening step at time 25137.852670854438 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8016332706161D+12 R2 = 0.7603056640530D+03 ISTATE -5 - shortening step at time 25137.852670854438 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8788017645741D+12 R2 = 0.4994891373504D+03 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8789551756562D+12 R2 = 0.1009151994052D+04 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7388369052735D+12 R2 = 0.3158345297440D+05 ISTATE -5 - shortening step at time 22852.592841823789 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8824519276948D+12 R2 = 0.4627510542740D-04 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8841390923740D+12 R2 = 0.9510584882755D+04 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8843702106774D+12 R2 = 0.1230591914867D+04 ISTATE -5 - shortening step at time 27651.638537272993 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8852334151110D+12 R2 = 0.6048979218500D+04 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8078788147976D+12 R2 = 0.1440922022601D-06 ISTATE -5 - shortening step at time 25137.852670854438 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8855454194207D+12 R2 = 0.2072041341350D+04 ISTATE -5 - shortening step at time 27651.638537272993 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3177436687426D+11 R2 = 0.1633932207053D-07 ISTATE -5 - shortening step at time 964.35107535228644 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3262362343150D+11 R2 = 0.3375932459874D+03 ISTATE -5 - shortening step at time 964.35107535228644 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9729699497550D+12 R2 = 0.1087962859247D+04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8818467139149D+12 R2 = 0.4770305623307D-06 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9743764631683D+12 R2 = 0.4470444643795D+04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8820582299573D+12 R2 = 0.2248340748826D+04 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3273963221804D+11 R2 = 0.3354152154291D-04 ISTATE -5 - shortening step at time 964.35107535228644 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3297753222398D+11 R2 = 0.1058342054768D+04 ISTATE -5 - shortening step at time 964.35107535228644 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1026061432049D+13 R2 = 0.1092713846201D-04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8821862931382D+12 R2 = 0.2356732791139D-04 ISTATE -5 - shortening step at time 27651.638537272993 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1031714195316D+13 R2 = 0.1566769278990D+05 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3311380774864D+11 R2 = 0.3110267414027D-04 ISTATE -5 - shortening step at time 964.35107535228644 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8825952695004D+12 R2 = 0.4427245158036D-03 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1037665480287D+13 R2 = 0.8186395980143D-04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3466678594391D+11 R2 = 0.6699568266290D-06 ISTATE -5 - shortening step at time 1060.7862058794365 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1038729967986D+13 R2 = 0.2929063348390D+04 ISTATE -5 - shortening step at time 30416.803050266728 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1040313988261D+13 R2 = 0.7938928730842D+04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3537715100401D+11 R2 = 0.7683445448896D+03 ISTATE -5 - shortening step at time 1060.7862058794365 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8833873329248D+12 R2 = 0.3193325331130D-04 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1040617858311D+13 R2 = 0.2033177357519D+04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8837143144911D+12 R2 = 0.9852133149782D+03 ISTATE -5 - shortening step at time 27651.638537272993 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8839609144523D+12 R2 = 0.3799502692419D-03 ISTATE -5 - shortening step at time 27651.638537272993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1041447243023D+13 R2 = 0.4731047571218D-04 ISTATE -5 - shortening step at time 30416.803050266728 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3963916435305D+11 R2 = 0.8739113960787D-06 ISTATE -5 - shortening step at time 1166.8648517584941 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4016424371292D+11 R2 = 0.2119149883533D+04 ISTATE -5 - shortening step at time 1166.8648517584941 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1041708411104D+13 R2 = 0.1119391334934D-03 ISTATE -5 - shortening step at time 30416.803050266728 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1069393786201D+13 R2 = 0.5896260657322D+04 ISTATE -5 - shortening step at time 33458.484080486494 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1045384867403D+13 R2 = 0.3862057144476D+03 ISTATE -5 - shortening step at time 32965.456047588930 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4237307183569D+11 R2 = 0.5413759013753D-06 ISTATE -5 - shortening step at time 1283.5513647545695 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4276957960024D+11 R2 = 0.8009102825250D+03 ISTATE -5 - shortening step at time 1283.5513647545695 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4405083085106D+11 R2 = 0.2143305074525D+03 ISTATE -5 - shortening step at time 1283.5513647545695 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4441000701426D+11 R2 = 0.2346695021240D+04 ISTATE -5 - shortening step at time 1283.5513647545695 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4449431946257D+11 R2 = 0.2519617815400D+03 ISTATE -5 - shortening step at time 1283.5513647545695 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1271220816796D+13 R2 = 0.4585216289744D+04 ISTATE -5 - shortening step at time 39888.203546689605 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1295099462162D+13 R2 = 0.3508629129046D+04 ISTATE -5 - shortening step at time 40484.767492356004 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1274122143653D+13 R2 = 0.3813501943835D-04 ISTATE -5 - shortening step at time 39888.203546689605 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4551059064349D+11 R2 = 0.5258496482272D-05 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1274324385003D+13 R2 = 0.1265300376604D+03 ISTATE -5 - shortening step at time 39888.203546689605 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1274517028337D+13 R2 = 0.9092241003961D+03 ISTATE -5 - shortening step at time 39888.203546689605 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1274792406975D+13 R2 = 0.7360599895666D+03 ISTATE -5 - shortening step at time 39888.203546689605 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1274947978022D+13 R2 = 0.8272145277779D+03 ISTATE -5 - shortening step at time 39888.203546689605 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4650651550508D+11 R2 = 0.1317984080379D-04 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1275227350201D+13 R2 = 0.2479202356175D+04 ISTATE -5 - shortening step at time 39888.203546689605 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1706450300546D+13 R2 = 0.9638995881120D-07 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1706635491142D+13 R2 = 0.1151223727006D-03 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1275335475649D+13 R2 = 0.1741986673326D-03 ISTATE -5 - shortening step at time 39888.203546689605 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4772791758444D+11 R2 = 0.5021488981650D-05 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1275484846302D+13 R2 = 0.7759397647124D+03 ISTATE -5 - shortening step at time 39888.203546689605 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4797068622020D+11 R2 = 0.1218602259836D+04 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1754842460907D+13 R2 = 0.8226882126909D+04 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1275674763870D+13 R2 = 0.8458229690322D+02 ISTATE -5 - shortening step at time 39888.203546689605 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1755668909167D+13 R2 = 0.1134918735354D+04 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4858101189255D+11 R2 = 0.1871306481810D-04 ISTATE -5 - shortening step at time 1411.9065318322757 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1759522341695D+13 R2 = 0.4043632318105D-03 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4991132598045D+11 R2 = 0.2687782781977D+02 ISTATE -5 - shortening step at time 1553.0972186779782 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1760519480621D+13 R2 = 0.1971168487039D+04 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1760620671427D+13 R2 = 0.1848281743236D+03 ISTATE -5 - shortening step at time 53885.229036118355 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5374249966756D+11 R2 = 0.2327314096295D+04 ISTATE -5 - shortening step at time 1553.0972186779782 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1762746808555D+13 R2 = 0.2426155795841D+04 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1418498910017D+13 R2 = 0.1417985259818D-04 ISTATE -5 - shortening step at time 44406.400970630406 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5386188162171D+11 R2 = 0.7813020214488D+03 ISTATE -5 - shortening step at time 1553.0972186779782 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1763073301835D+13 R2 = 0.1938993011569D+04 ISTATE -5 - shortening step at time 53885.229036118355 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1767745558723D+13 R2 = 0.3091698714698D+04 ISTATE -5 - shortening step at time 53885.229036118355 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5393174776099D+11 R2 = 0.3270908982963D-05 ISTATE -5 - shortening step at time 1553.0972186779782 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1770078202757D+13 R2 = 0.7245899777350D-05 ISTATE -5 - shortening step at time 55941.315149460694 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1551311261525D+13 R2 = 0.5718217968465D-05 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5729716129656D+11 R2 = 0.2466270569744D+04 ISTATE -5 - shortening step at time 1708.4069775744993 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1770232836017D+13 R2 = 0.8051435053189D+03 ISTATE -5 - shortening step at time 55941.315149460694 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1552546673666D+13 R2 = 0.3717368822694D+04 ISTATE -5 - shortening step at time 48847.042126424552 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1776715204253D+13 R2 = 0.2888917866404D-05 ISTATE -5 - shortening step at time 55941.315149460694 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1557969530761D+13 R2 = 0.1118437501731D-04 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1560644741211D+13 R2 = 0.8880246559539D+04 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1560858391033D+13 R2 = 0.3580689918039D+03 ISTATE -5 - shortening step at time 48847.042126424552 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7243215084320D+11 R2 = 0.2100190983846D-05 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1566500613915D+13 R2 = 0.2193975967695D+04 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1781133600682D+13 R2 = 0.1325638725342D-04 ISTATE -5 - shortening step at time 55941.315149460694 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1782523385735D+13 R2 = 0.2016517576167D+04 ISTATE -5 - shortening step at time 55941.315149460694 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1782637806182D+13 R2 = 0.8083384795994D+03 ISTATE -5 - shortening step at time 55941.315149460694 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1567268383547D+13 R2 = 0.1074590577250D-04 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7958862698762D+11 R2 = 0.3166238381789D-05 ISTATE -5 - shortening step at time 2501.2788727218508 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1570469473716D+13 R2 = 0.5289064393435D+04 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1571371968075D+13 R2 = 0.4159775706531D+04 ISTATE -5 - shortening step at time 48847.042126424552 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1585786684007D+13 R2 = 0.1241843320469D+05 ISTATE -5 - shortening step at time 48847.042126424552 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1946531593938D+13 R2 = 0.1745730624539D+03 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1946811383824D+13 R2 = 0.5542939588422D+03 ISTATE -5 - shortening step at time 61535.447998151649 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8161732765695D+11 R2 = 0.2344508903156D-04 ISTATE -5 - shortening step at time 2501.2788727218508 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1594428872129D+13 R2 = 0.2573738080048D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1948737224356D+13 R2 = 0.7537877426034D+03 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1594595945724D+13 R2 = 0.1510725953029D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1949019253058D+13 R2 = 0.1490996266043D+04 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1595647571904D+13 R2 = 0.3909549315213D+04 ISTATE -5 - shortening step at time 50183.122911618586 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1951478435448D+13 R2 = 0.1418449363287D+04 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1595835082676D+13 R2 = 0.1081261682933D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8278654802341D+11 R2 = 0.1423120230249D-04 ISTATE -5 - shortening step at time 2501.2788727218508 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1599225519356D+13 R2 = 0.3340447945313D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8290832356786D+11 R2 = 0.1004950541733D+04 ISTATE -5 - shortening step at time 2501.2788727218508 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1599639109147D+13 R2 = 0.3386533693253D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1599872167745D+13 R2 = 0.2119444042015D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1952793786756D+13 R2 = 0.2286997749092D-05 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1953290470852D+13 R2 = 0.2460741596089D+04 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1600194023402D+13 R2 = 0.9318524637453D+03 ISTATE -5 - shortening step at time 50183.122911618586 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1953857233169D+13 R2 = 0.1440563050516D+04 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1600603681592D+13 R2 = 0.1822602547872D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1955874033967D+13 R2 = 0.3841175992996D+04 ISTATE -5 - shortening step at time 61535.447998151649 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1600942519546D+13 R2 = 0.3709603466320D+04 ISTATE -5 - shortening step at time 50183.122911618586 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1955934060768D+13 R2 = 0.1385603290395D+03 ISTATE -5 - shortening step at time 61535.447998151649 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8892335866744D+11 R2 = 0.1977156463402D-05 ISTATE -5 - shortening step at time 2751.4068196291714 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1603209060215D+13 R2 = 0.3067459561935D-05 ISTATE -5 - shortening step at time 50662.737960330254 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1603399912778D+13 R2 = 0.3072462149465D+03 ISTATE -5 - shortening step at time 50662.737960330254 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8936695638364D+11 R2 = 0.4579559763356D-04 ISTATE -5 - shortening step at time 2751.4068196291714 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2377131439690D+13 R2 = 0.9474051447245D+04 ISTATE -5 - shortening step at time 74894.946712731078 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2378195690350D+13 R2 = 0.5717334919760D+03 ISTATE -5 - shortening step at time 74894.946712731078 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1603947360895D+13 R2 = 0.1011702706937D-02 ISTATE -5 - shortening step at time 50662.737960330254 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1604276650551D+13 R2 = 0.1438582961548D+04 ISTATE -5 - shortening step at time 50662.737960330254 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1006083039975D+12 R2 = 0.2472499458948D+04 ISTATE -5 - shortening step at time 3026.5475671907388 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1007031478276D+12 R2 = 0.1232572241965D+04 ISTATE -5 - shortening step at time 3026.5475671907388 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1041412252791D+12 R2 = 0.1771650775250D+04 ISTATE -5 - shortening step at time 3026.5475671907388 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1604354085902D+13 R2 = 0.6668885835908D-05 ISTATE -5 - shortening step at time 50662.737960330254 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2604751497715D+13 R2 = 0.2341235234871D-05 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1604558869640D+13 R2 = 0.2538085558665D+04 ISTATE -5 - shortening step at time 50662.737960330254 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1045624997290D+12 R2 = 0.3575362226438D+03 ISTATE -5 - shortening step at time 3026.5475671907388 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2604875971358D+13 R2 = 0.1559907594400D+03 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1612611720696D+13 R2 = 0.4956860589053D+04 ISTATE -5 - shortening step at time 50662.737960330254 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1612919048945D+13 R2 = 0.3009333502722D+04 ISTATE -5 - shortening step at time 50662.737960330254 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1613151891193D+13 R2 = 0.1271315308891D+04 ISTATE -5 - shortening step at time 50662.737960330254 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1050975066915D+12 R2 = 0.4538857505148D-04 ISTATE -5 - shortening step at time 3026.5475671907388 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2605758589908D+13 R2 = 0.4623616132460D-04 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1613567728150D+13 R2 = 0.9184135676399D+03 ISTATE -5 - shortening step at time 50662.737960330254 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2605952394543D+13 R2 = 0.1714606451782D-03 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2606097454984D+13 R2 = 0.4374869573774D+03 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1055765991983D+12 R2 = 0.7206596793864D-06 ISTATE -5 - shortening step at time 3329.2023960683296 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2606308444171D+13 R2 = 0.1568026871339D+04 ISTATE -5 - shortening step at time 82384.443169638864 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1068328906907D+12 R2 = 0.1408373185337D+04 ISTATE -5 - shortening step at time 3329.2023960683296 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1070723258893D+12 R2 = 0.1274853311681D+04 ISTATE -5 - shortening step at time 3329.2023960683296 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2606693400439D+13 R2 = 0.1567767641366D-03 ISTATE -5 - shortening step at time 82384.443169638864 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1956671642727D+13 R2 = 0.8047466305147D-05 ISTATE -5 - shortening step at time 61785.349230895830 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1160113902901D+12 R2 = 0.3155411520068D+02 ISTATE -5 - shortening step at time 3662.1227150495324 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1959707528939D+13 R2 = 0.3388473973852D+04 ISTATE -5 - shortening step at time 61785.349230895830 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2607903538884D+13 R2 = 0.8154492449188D-05 ISTATE -5 - shortening step at time 82384.443169638864 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1982468985331D+13 R2 = 0.4014491506516D-05 ISTATE -5 - shortening step at time 61785.349230895830 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2610620143814D+13 R2 = 0.1730086589011D-04 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1276308273791D+12 R2 = 0.8149997503887D-06 ISTATE -5 - shortening step at time 4028.3350738662953 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1982845643148D+13 R2 = 0.3305827930970D-04 ISTATE -5 - shortening step at time 61785.349230895830 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2610758569611D+13 R2 = 0.9313443567664D-05 ISTATE -5 - shortening step at time 82384.443169638864 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1983163320402D+13 R2 = 0.1316283246610D+04 ISTATE -5 - shortening step at time 61785.349230895830 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1543940752875D+12 R2 = 0.9366460372485D+02 ISTATE -5 - shortening step at time 4874.2856506728031 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1983239462058D+13 R2 = 0.4628238852765D+03 ISTATE -5 - shortening step at time 61785.349230895830 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1559566920937D+12 R2 = 0.5652076151650D-05 ISTATE -5 - shortening step at time 4874.2856506728031 years [Parallel(n_jobs=4)]: Done 5 out of 9 | elapsed: 44.7s remaining: 35.8s At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1634869122019D+12 R2 = 0.1696546636634D+04 ISTATE -5 - shortening step at time 4874.2856506728031 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1673648779829D+12 R2 = 0.6978065591991D+03 ISTATE -5 - shortening step at time 4874.2856506728031 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1676222317219D+12 R2 = 0.1070356802972D-04 ISTATE -5 - shortening step at time 4874.2856506728031 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1689473012245D+12 R2 = 0.1356498063832D+04 ISTATE -5 - shortening step at time 4874.2856506728031 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1697497512957D+12 R2 = 0.9279119876529D+02 ISTATE -5 - shortening step at time 5361.7143319521092 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1699508927579D+12 R2 = 0.6539860538739D+03 ISTATE -5 - shortening step at time 5361.7143319521092 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2149314594209D+13 R2 = 0.2621900502094D-05 ISTATE -5 - shortening step at time 67963.885627062933 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1724402404508D+12 R2 = 0.8860116418320D+03 ISTATE -5 - shortening step at time 5361.7143319521092 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2150990884430D+13 R2 = 0.9342400380380D+03 ISTATE -5 - shortening step at time 67963.885627062933 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1738230152627D+12 R2 = 0.1701750612055D+03 ISTATE -5 - shortening step at time 5361.7143319521092 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2151059433068D+13 R2 = 0.2808022589889D+03 ISTATE -5 - shortening step at time 67963.885627062933 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2151150739624D+13 R2 = 0.9654121504007D-05 ISTATE -5 - shortening step at time 67963.885627062933 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1773152134807D+12 R2 = 0.1817731818236D-04 ISTATE -5 - shortening step at time 5361.7143319521092 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2151316988570D+13 R2 = 0.7601222842372D+03 ISTATE -5 - shortening step at time 67963.885627062933 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1784444037900D+12 R2 = 0.5523499736022D+03 ISTATE -5 - shortening step at time 5361.7143319521092 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2151431014069D+13 R2 = 0.6090807158355D+03 ISTATE -5 - shortening step at time 67963.885627062933 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2152594441920D+13 R2 = 0.1806723435616D+04 ISTATE -5 - shortening step at time 67963.885627062933 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2152725843263D+13 R2 = 0.7555921702599D+03 ISTATE -5 - shortening step at time 67963.885627062933 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1788798781044D+12 R2 = 0.2449687558121D-04 ISTATE -5 - shortening step at time 5361.7143319521092 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2152930665546D+13 R2 = 0.3772814924102D+03 ISTATE -5 - shortening step at time 67963.885627062933 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2153072641839D+13 R2 = 0.9807313337550D+03 ISTATE -5 - shortening step at time 67963.885627062933 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2154302107956D+13 R2 = 0.7271317988936D-05 ISTATE -5 - shortening step at time 68135.210184772106 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1866273810880D+12 R2 = 0.3816767208599D-04 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2154489358967D+13 R2 = 0.5913674941124D+03 ISTATE -5 - shortening step at time 68135.210184772106 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2154627384132D+13 R2 = 0.3885333488727D-04 ISTATE -5 - shortening step at time 68135.210184772106 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1867114288916D+12 R2 = 0.2135043563723D-05 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1890606303689D+12 R2 = 0.8859046786418D+03 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1898180254067D+12 R2 = 0.6359399627582D+03 ISTATE -5 - shortening step at time 5897.8858929805510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902797804133D+12 R2 = 0.6474191812754D+02 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2155533541508D+13 R2 = 0.8252910975756D-05 ISTATE -5 - shortening step at time 68135.210184772106 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1908064608423D+12 R2 = 0.9378334351035D+03 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2155749826973D+13 R2 = 0.1938774086890D+04 ISTATE -5 - shortening step at time 68135.210184772106 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1911784888304D+12 R2 = 0.8013301704751D+03 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2163902625294D+13 R2 = 0.1867189463382D+04 ISTATE -5 - shortening step at time 68135.210184772106 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1924669882945D+12 R2 = 0.2685386512958D+03 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1928418888571D+12 R2 = 0.7278962919815D+03 ISTATE -5 - shortening step at time 5897.8858929805510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2166845745080D+13 R2 = 0.2989198276779D-04 ISTATE -5 - shortening step at time 68135.210184772106 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1970536175585D+12 R2 = 0.1038135011864D+04 ISTATE -5 - shortening step at time 5897.8858929805510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2167066482908D+13 R2 = 0.1378328190396D+04 ISTATE -5 - shortening step at time 68135.210184772106 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2169709463317D+13 R2 = 0.5572272199618D-04 ISTATE -5 - shortening step at time 68135.210184772106 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1977515801184D+12 R2 = 0.1651614772419D-05 ISTATE -5 - shortening step at time 6235.8739733701632 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2170861992442D+13 R2 = 0.3041274482752D+04 ISTATE -5 - shortening step at time 68135.210184772106 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2171978302680D+13 R2 = 0.3370146521895D+02 ISTATE -5 - shortening step at time 68698.164317799383 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1978708301671D+12 R2 = 0.4386133963762D-04 ISTATE -5 - shortening step at time 6235.8739733701632 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2172119041225D+13 R2 = 0.1147245576273D-03 ISTATE -5 - shortening step at time 68698.164317799383 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1980418521718D+12 R2 = 0.1129416087394D-04 ISTATE -5 - shortening step at time 6235.8739733701632 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2172362123875D+13 R2 = 0.6530010110387D+03 ISTATE -5 - shortening step at time 68698.164317799383 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1981902463990D+12 R2 = 0.4487641659099D+03 ISTATE -5 - shortening step at time 6235.8739733701632 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2172507693768D+13 R2 = 0.6761913087068D+03 ISTATE -5 - shortening step at time 68698.164317799383 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2174075464965D+13 R2 = 0.1638630083434D+04 ISTATE -5 - shortening step at time 68698.164317799383 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1983622360562D+12 R2 = 0.4103155002541D-04 ISTATE -5 - shortening step at time 6235.8739733701632 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2175425236678D+13 R2 = 0.2798923464187D-04 ISTATE -5 - shortening step at time 68698.164317799383 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2169291027381D+12 R2 = 0.5365473266735D-06 ISTATE -5 - shortening step at time 6859.4615193820009 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2175690787318D+13 R2 = 0.1545897327792D+04 ISTATE -5 - shortening step at time 68698.164317799383 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2175870755396D+13 R2 = 0.1075513934507D+04 ISTATE -5 - shortening step at time 68698.164317799383 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2176051905841D+13 R2 = 0.1670772161188D+04 ISTATE -5 - shortening step at time 68698.164317799383 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2386122103571D+12 R2 = 0.1363458090284D-05 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2176218245021D+13 R2 = 0.5105568090226D-04 ISTATE -5 - shortening step at time 68698.164317799383 years At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3145955389220D+11 ISTATE -1: Reducing time step to 6.5230703933728842 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2389367286839D+12 R2 = 0.6604835304922D+03 ISTATE -5 - shortening step at time 7545.4078348625080 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2422909105821D+12 R2 = 0.1018973411271D+04 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2179478043583D+13 R2 = 0.7104676350741D-06 ISTATE -5 - shortening step at time 68867.665981666360 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2423512857475D+12 R2 = 0.9559086012548D-05 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2424211093524D+12 R2 = 0.8098922398953D+03 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2179704528682D+13 R2 = 0.2088997747131D-04 ISTATE -5 - shortening step at time 68867.665981666360 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2426102301217D+12 R2 = 0.9600717520505D+03 ISTATE -5 - shortening step at time 7545.4078348625080 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2426650251307D+12 R2 = 0.5637719081770D-04 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2183037000162D+13 R2 = 0.1255600544190D-04 ISTATE -5 - shortening step at time 68867.665981666360 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2191017536452D+13 R2 = 0.8163221176138D+04 ISTATE -5 - shortening step at time 68867.665981666360 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2466734050798D+12 R2 = 0.2321741240297D-04 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2191855137643D+13 R2 = 0.2731554399400D-04 ISTATE -5 - shortening step at time 68867.665981666360 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2202181058226D+13 R2 = 0.1904366202058D+04 ISTATE -5 - shortening step at time 68867.665981666360 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2470436685570D+12 R2 = 0.3480941412579D-04 ISTATE -5 - shortening step at time 7545.4078348625080 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2202284859247D+13 R2 = 0.3196762178788D+03 ISTATE -5 - shortening step at time 68867.665981666360 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2209186653205D+13 R2 = 0.2240490827659D+04 ISTATE -5 - shortening step at time 68867.665981666360 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2481866690350D+12 R2 = 0.2512725589163D-04 ISTATE -5 - shortening step at time 7545.4078348625080 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2210604655298D+13 R2 = 0.2453560213375D-04 ISTATE -5 - shortening step at time 68867.665981666360 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2482958051129D+12 R2 = 0.1101959010519D-04 ISTATE -5 - shortening step at time 7854.0085137660944 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2212835481802D+13 R2 = 0.1928515337786D-05 ISTATE -5 - shortening step at time 68867.665981666360 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2492846924718D+12 R2 = 0.3522516490322D-04 ISTATE -5 - shortening step at time 7854.0085137660944 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4667711582324D+11 R2 = 0.1661959149325D-08 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4703235939718D+11 R2 = 0.2550673186182D+03 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2493261518670D+12 R2 = 0.2789918086655D-04 ISTATE -5 - shortening step at time 7854.0085137660944 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4812051917234D+11 R2 = 0.8898458259116D+03 ISTATE -5 - shortening step at time 1411.9065318322757 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2493583249368D+12 R2 = 0.2324114237308D+03 ISTATE -5 - shortening step at time 7854.0085137660944 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4876402868103D+11 R2 = 0.5941226447997D+03 ISTATE -5 - shortening step at time 1411.9065318322757 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2435483440505D+13 R2 = 0.2035026098739D+02 ISTATE -5 - shortening step at time 77029.084896850938 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2435751230421D+13 R2 = 0.2002603703023D+03 ISTATE -5 - shortening step at time 77029.084896850938 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494194185835D+12 R2 = 0.1193992639569D-03 ISTATE -5 - shortening step at time 7854.0085137660944 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4999364139056D+11 R2 = 0.7105311609392D+02 ISTATE -5 - shortening step at time 1553.0972186779782 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2501132480908D+12 R2 = 0.4431954091987D+03 ISTATE -5 - shortening step at time 7854.0085137660944 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2501555813337D+12 R2 = 0.3168431869497D+03 ISTATE -5 - shortening step at time 7854.0085137660944 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2435894429113D+13 R2 = 0.1116068504945D-04 ISTATE -5 - shortening step at time 77029.084896850938 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2508842181866D+12 R2 = 0.8060772534767D+03 ISTATE -5 - shortening step at time 7854.0085137660944 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2509721581838D+12 R2 = 0.5411949701950D+03 ISTATE -5 - shortening step at time 7854.0085137660944 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2547489022315D+12 R2 = 0.2689532265797D+03 ISTATE -5 - shortening step at time 7854.0085137660944 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2436418192217D+13 R2 = 0.6236288495742D-04 ISTATE -5 - shortening step at time 77029.084896850938 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5965370964662D+11 R2 = 0.2589126274959D-08 ISTATE -5 - shortening step at time 1879.2477160635456 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2584460428258D+12 R2 = 0.6736509751567D+03 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2436687322381D+13 R2 = 0.1667028286447D-04 ISTATE -5 - shortening step at time 77029.084896850938 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2441383737255D+13 R2 = 0.3392733727510D+04 ISTATE -5 - shortening step at time 77029.084896850938 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2585475547142D+12 R2 = 0.7808708256938D-04 ISTATE -5 - shortening step at time 8061.6741212487623 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7238445369886D+11 R2 = 0.3894029370653D+02 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2586369092904D+12 R2 = 0.9072859226507D-05 ISTATE -5 - shortening step at time 8061.6741212487623 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2587172326253D+12 R2 = 0.1392001560072D+04 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2587722341178D+12 R2 = 0.5250802310820D+03 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2588134565277D+12 R2 = 0.2515397896017D+03 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7251533473660D+11 R2 = 0.1684235907489D-06 ISTATE -5 - shortening step at time 2273.8898350073569 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2590126111473D+12 R2 = 0.9116786583862D+03 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7269769962584D+11 R2 = 0.1460437186801D+03 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7272424446569D+11 R2 = 0.1322274848946D+03 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2684200520957D+13 R2 = 0.6305946085134D-05 ISTATE -5 - shortening step at time 84731.995223052523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7272681708216D+11 R2 = 0.1625217142267D-05 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2606629529198D+12 R2 = 0.4848659357717D-04 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7273239115892D+11 R2 = 0.6073103302472D+02 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2608345866170D+12 R2 = 0.4243817799067D+03 ISTATE -5 - shortening step at time 8061.6741212487623 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7273796337959D+11 R2 = 0.7525505697590D+02 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2686298151213D+13 R2 = 0.4947520727638D-04 ISTATE -5 - shortening step at time 84731.995223052523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2686398729497D+13 R2 = 0.9769400886737D+03 ISTATE -5 - shortening step at time 84731.995223052523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2686685470787D+13 R2 = 0.1537572765418D+04 ISTATE -5 - shortening step at time 84731.995223052523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2612943622300D+12 R2 = 0.4706143375367D-04 ISTATE -5 - shortening step at time 8061.6741212487623 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7278386424560D+11 R2 = 0.4220108873783D-07 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7280620104396D+11 R2 = 0.1800797654531D+03 ISTATE -5 - shortening step at time 2273.8898350073569 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2732226673769D+12 R2 = 0.3275197766377D+04 ISTATE -5 - shortening step at time 8268.8089313279143 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2689723204961D+13 R2 = 0.3987926953866D-04 ISTATE -5 - shortening step at time 84731.995223052523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7282749793550D+11 R2 = 0.1969386566753D+03 ISTATE -5 - shortening step at time 2273.8898350073569 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2690055051016D+13 R2 = 0.1174531228483D+04 ISTATE -5 - shortening step at time 84731.995223052523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2690680340930D+13 R2 = 0.3215047094406D+04 ISTATE -5 - shortening step at time 84731.995223052523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7333674865732D+11 R2 = 0.7127287807314D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2996138520490D+12 R2 = 0.2413738579087D+04 ISTATE -5 - shortening step at time 9095.6900216044742 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7336604560480D+11 R2 = 0.1891759403032D+03 ISTATE -5 - shortening step at time 2304.6676561868353 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7337815758474D+11 R2 = 0.4118590126426D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7338204970027D+11 R2 = 0.8931167688291D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7338423729895D+11 R2 = 0.3657572896026D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2693539922903D+13 R2 = 0.2087392839390D-04 ISTATE -5 - shortening step at time 84731.995223052523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7338642234610D+11 R2 = 0.4429913761343D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2693673872957D+13 R2 = 0.1381242904914D+04 ISTATE -5 - shortening step at time 84731.995223052523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7338860499512D+11 R2 = 0.5800490327284D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3162981568685D+12 R2 = 0.8051801570235D-06 ISTATE -5 - shortening step at time 10005.259240623071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7339272524888D+11 R2 = 0.4984709300356D+02 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2696894721130D+13 R2 = 0.1420704674428D+04 ISTATE -5 - shortening step at time 84731.995223052523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7339363436803D+11 R2 = 0.1611604084886D-06 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2698000745063D+13 R2 = 0.6543915354330D-05 ISTATE -5 - shortening step at time 85344.769656000193 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2700530985992D+13 R2 = 0.3406444401143D+04 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7339528668214D+11 R2 = 0.2013760200730D-06 ISTATE -5 - shortening step at time 2304.6676561868353 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2700728404282D+13 R2 = 0.1065572863242D+04 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7379127538339D+11 R2 = 0.4208840194856D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2700932399653D+13 R2 = 0.2826650264015D+04 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7380797916303D+11 R2 = 0.8949170910279D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2701114987205D+13 R2 = 0.5056244885874D+03 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2703880930640D+13 R2 = 0.3904854095159D+04 ISTATE -5 - shortening step at time 85344.769656000193 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7382465351650D+11 R2 = 0.3813678980863D-07 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2704002665550D+13 R2 = 0.2724181272582D-04 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7383602289237D+11 R2 = 0.8143752146095D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7383723163768D+11 R2 = 0.1886315897470D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2709598963683D+13 R2 = 0.1822990220106D+04 ISTATE -5 - shortening step at time 85344.769656000193 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7383979326888D+11 R2 = 0.5052144328537D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2711767263828D+13 R2 = 0.5696810230380D+04 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7384240419003D+11 R2 = 0.2485696538092D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7386901449481D+11 R2 = 0.3641141518058D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7387109955123D+11 R2 = 0.2802146119919D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2711902034552D+13 R2 = 0.7038749998920D-04 ISTATE -5 - shortening step at time 85344.769656000193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7387317974874D+11 R2 = 0.6544967864434D+02 ISTATE -5 - shortening step at time 2322.6356544979622 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2717196417284D+13 R2 = 0.1612080950974D+04 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2717370271709D+13 R2 = 0.1925811236514D+04 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8154507463010D+11 R2 = 0.5877222816674D+02 ISTATE -5 - shortening step at time 2571.5347938257087 years At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8030946464514D+10 ISTATE -1: Reducing time step to 2.5194202298083881 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6831322855614D+12 R2 = 0.9513573828226D+03 ISTATE -5 - shortening step at time 21447.165468186689 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2720452058954D+13 R2 = 0.7591065940542D-04 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2720542902645D+13 R2 = 0.6777635188244D+03 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8984344954054D+11 R2 = 0.2715503777121D+03 ISTATE -5 - shortening step at time 2828.6883345184465 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8984535765469D+11 R2 = 0.2769796310177D+02 ISTATE -5 - shortening step at time 2828.6883345184465 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8984750523474D+11 R2 = 0.2117285786081D+02 ISTATE -5 - shortening step at time 2828.6883345184465 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8984913298877D+11 R2 = 0.5588447888305D+02 ISTATE -5 - shortening step at time 2828.6883345184465 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2720654330194D+13 R2 = 0.9191580654110D-05 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8985140358662D+11 R2 = 0.3770416677457D+02 ISTATE -5 - shortening step at time 2828.6883345184465 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2720777394483D+13 R2 = 0.9076820639335D+03 ISTATE -5 - shortening step at time 85819.684637714585 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8985513998327D+11 R2 = 0.5161198301729D+02 ISTATE -5 - shortening step at time 2828.6883345184465 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2725334214684D+13 R2 = 0.1876881337666D+04 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2725879068662D+13 R2 = 0.3200421944333D+04 ISTATE -5 - shortening step at time 85819.684637714585 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8985563895030D+11 R2 = 0.5022176035861D-06 ISTATE -5 - shortening step at time 2828.6883345184465 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2727434691310D+13 R2 = 0.2816426149513D-04 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8991279692368D+11 R2 = 0.3252986000396D-07 ISTATE -5 - shortening step at time 2828.6883345184465 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9000197581861D+11 R2 = 0.1511473753931D+03 ISTATE -5 - shortening step at time 2828.6883345184465 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2733293925059D+13 R2 = 0.2604630035426D-03 ISTATE -5 - shortening step at time 85819.684637714585 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2733712637335D+13 R2 = 0.1667043535858D+03 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9000536387819D+11 R2 = 0.5499885208435D-05 ISTATE -5 - shortening step at time 2828.6883345184465 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2734261049946D+13 R2 = 0.4096735574692D+03 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7979868883660D+12 R2 = 0.2522041405881D+03 ISTATE -5 - shortening step at time 23591.882526345631 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2734523192359D+13 R2 = 0.4281306489558D-04 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9052103339115D+11 R2 = 0.1547248768622D-08 ISTATE -5 - shortening step at time 2848.2710088035128 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2737306706554D+13 R2 = 0.1794653110218D+04 ISTATE -5 - shortening step at time 86496.643198063801 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2737931117157D+13 R2 = 0.1075522988059D+04 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9937242249501D+11 R2 = 0.3501210772815D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9938811545616D+11 R2 = 0.8035316387137D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9939044509366D+11 R2 = 0.3037675153725D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746278804922D+13 R2 = 0.3426382727586D-04 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9939289146002D+11 R2 = 0.7303773671822D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9939532125080D+11 R2 = 0.4872329776051D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9939751263499D+11 R2 = 0.3569271214153D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9941008721324D+11 R2 = 0.3937910248217D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746530293131D+13 R2 = 0.3138160060255D-04 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9941267354731D+11 R2 = 0.4701654485083D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746709940546D+13 R2 = 0.9536717296442D+03 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9941534221710D+11 R2 = 0.4791834171578D+02 ISTATE -5 - shortening step at time 3133.0981775919367 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2749531076454D+13 R2 = 0.1250082982957D-04 ISTATE -5 - shortening step at time 86496.643198063801 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9941665653899D+11 R2 = 0.5375627918862D-06 ISTATE -5 - shortening step at time 3133.0981775919367 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2750773865659D+13 R2 = 0.2759363858204D+04 ISTATE -5 - shortening step at time 86496.643198063801 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1016562484490D+12 R2 = 0.1682316870175D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1020028218026D+12 R2 = 0.4133503772966D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years [Parallel(n_jobs=4)]: Done 6 out of 9 | elapsed: 1.0min remaining: 30.8s At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1022044136234D+12 R2 = 0.3210459058230D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1026058405018D+12 R2 = 0.2362666663873D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9023324869168D+12 R2 = 0.4342180732029D+02 ISTATE -5 - shortening step at time 28546.179094321713 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1026080743002D+12 R2 = 0.4306301756727D+02 ISTATE -5 - shortening step at time 3146.0967259174340 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1028089608934D+12 R2 = 0.1366312924657D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1030977751018D+12 R2 = 0.3755934160172D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1039440427924D+12 R2 = 0.4796056889744D+03 ISTATE -5 - shortening step at time 3146.0967259174340 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1056371922602D+12 R2 = 0.9276880972432D-08 ISTATE -5 - shortening step at time 3146.0967259174340 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1205620221170D+12 R2 = 0.4038361148300D-08 ISTATE -5 - shortening step at time 3806.7772033794372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1206333407913D+12 R2 = 0.1047582999899D-07 ISTATE -5 - shortening step at time 3806.7772033794372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1207833047258D+12 R2 = 0.1309528616226D+03 ISTATE -5 - shortening step at time 3806.7772033794372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1216352732917D+12 R2 = 0.7559296805880D-07 ISTATE -5 - shortening step at time 3806.7772033794372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1224591976192D+12 R2 = 0.8212877946969D+03 ISTATE -5 - shortening step at time 3806.7772033794372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1224672439221D+12 R2 = 0.6133542824338D+02 ISTATE -5 - shortening step at time 3806.7772033794372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1224732310632D+12 R2 = 0.5099972434822D+02 ISTATE -5 - shortening step at time 3806.7772033794372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1091529249047D+13 R2 = 0.1129791620925D-06 ISTATE -5 - shortening step at time 34540.878201435975 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1224790340738D+12 R2 = 0.9176962335081D+02 ISTATE -5 - shortening step at time 3806.7772033794372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1224870669461D+12 R2 = 0.9900997027710D+02 ISTATE -5 - shortening step at time 3806.7772033794372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1224942445010D+12 R2 = 0.1006135737528D+03 ISTATE -5 - shortening step at time 3806.7772033794372 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8030961443326D+10 ISTATE -1: Reducing time step to 2.5193728285026644 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2224153783411D+12 R2 = 0.4946349198905D+03 ISTATE -5 - shortening step at time 6867.2802057990066 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1166202207293D+13 R2 = 0.6227113320826D+03 ISTATE -5 - shortening step at time 34540.878201435975 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2275460842366D+12 R2 = 0.1808100476343D+04 ISTATE -5 - shortening step at time 6867.2802057990066 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1197495549389D+13 R2 = 0.6176592107244D+03 ISTATE -5 - shortening step at time 34540.878201435975 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2388435168907D+12 R2 = 0.1811762384237D-09 ISTATE -5 - shortening step at time 7554.0083901076259 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1197768382835D+13 R2 = 0.3388914643729D-05 ISTATE -5 - shortening step at time 34540.878201435975 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2389609610055D+12 R2 = 0.1593105666443D+03 ISTATE -5 - shortening step at time 7554.0083901076259 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2389619020951D+12 R2 = 0.1100648466630D+02 ISTATE -5 - shortening step at time 7554.0083901076259 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2389693792593D+12 R2 = 0.4556902458428D+02 ISTATE -5 - shortening step at time 7554.0083901076259 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2389778957095D+12 R2 = 0.9445009008944D+02 ISTATE -5 - shortening step at time 7554.0083901076259 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2389844197954D+12 R2 = 0.4290754353190D+02 ISTATE -5 - shortening step at time 7554.0083901076259 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2390216229949D+12 R2 = 0.1955462572264D+03 ISTATE -5 - shortening step at time 7554.0083901076259 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2390799432536D+12 R2 = 0.1469397019063D-07 ISTATE -5 - shortening step at time 7554.0083901076259 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2394188769276D+12 R2 = 0.3146988226651D+03 ISTATE -5 - shortening step at time 7554.0083901076259 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2394823585643D+12 R2 = 0.3676961120649D-07 ISTATE -5 - shortening step at time 7554.0083901076259 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1348942166388D+13 R2 = 0.2061030378307D+03 ISTATE -5 - shortening step at time 41794.464435478709 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353493137308D+13 R2 = 0.3696641443903D+03 ISTATE -5 - shortening step at time 41794.464435478709 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4244217275285D+12 R2 = 0.2124301495131D+02 ISTATE -5 - shortening step at time 13425.875373217212 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1427690285560D+13 R2 = 0.6610076286649D-05 ISTATE -5 - shortening step at time 41794.464435478709 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1439657003678D+13 R2 = 0.1583771582003D+03 ISTATE -5 - shortening step at time 41794.464435478709 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5134366499231D+12 R2 = 0.1900232397215D-09 ISTATE -5 - shortening step at time 16245.309905808022 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1449088739869D+13 R2 = 0.2483562245847D+03 ISTATE -5 - shortening step at time 41794.464435478709 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5519326624128D+12 R2 = 0.6139688352388D-09 ISTATE -5 - shortening step at time 16245.309905808022 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1598083838392D+13 R2 = 0.1039710340647D-05 ISTATE -5 - shortening step at time 50571.304159136162 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8030975920233D+10 ISTATE -1: Reducing time step to 2.5193270155040008 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1754307430876D+13 ISTATE -1: Reducing time step to 11.237784333134034 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8705999172505D+12 R2 = 0.6620228431235D+03 ISTATE -5 - shortening step at time 26163.236891767134 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1765394563113D+13 R2 = 0.2759647612635D+03 ISTATE -5 - shortening step at time 55628.435780763626 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1765453267376D+13 R2 = 0.7456552536491D+02 ISTATE -5 - shortening step at time 55628.435780763626 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8773123482354D+12 R2 = 0.2839306602071D+03 ISTATE -5 - shortening step at time 26163.236891767134 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1765800228550D+13 R2 = 0.2268078838145D+03 ISTATE -5 - shortening step at time 55628.435780763626 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1770713981777D+13 R2 = 0.9587146143763D+02 ISTATE -5 - shortening step at time 55628.435780763626 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1777749979257D+13 R2 = 0.2726118501580D+03 ISTATE -5 - shortening step at time 55628.435780763626 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1778870255635D+13 R2 = 0.3623938319951D+03 ISTATE -5 - shortening step at time 55628.435780763626 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8896422272374D+12 R2 = 0.3740265404818D-08 ISTATE -5 - shortening step at time 26163.236891767134 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1779293925381D+13 R2 = 0.1702381196975D+03 ISTATE -5 - shortening step at time 55628.435780763626 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1779482420466D+13 R2 = 0.3188258347299D+03 ISTATE -5 - shortening step at time 55628.435780763626 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1779665697561D+13 R2 = 0.2371535514586D+03 ISTATE -5 - shortening step at time 55628.435780763626 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1779795195064D+13 R2 = 0.7414502322998D-03 ISTATE -5 - shortening step at time 55628.435780763626 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1783632344829D+13 R2 = 0.1723168087237D+03 ISTATE -5 - shortening step at time 56322.632755182836 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1783799532214D+13 R2 = 0.1320005746413D-04 ISTATE -5 - shortening step at time 56322.632755182836 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1784038214294D+13 R2 = 0.2831268937805D+03 ISTATE -5 - shortening step at time 56322.632755182836 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9310605711840D+12 R2 = 0.4477842265492D-08 ISTATE -5 - shortening step at time 28779.561204724025 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1791078961217D+13 R2 = 0.5004776482406D+02 ISTATE -5 - shortening step at time 56322.632755182836 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9520691476295D+12 R2 = 0.3349481200949D+03 ISTATE -5 - shortening step at time 28779.561204724025 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9549574919712D+12 R2 = 0.3896512613845D+03 ISTATE -5 - shortening step at time 28779.561204724025 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1797404632259D+13 R2 = 0.9748310970136D+02 ISTATE -5 - shortening step at time 56322.632755182836 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1798224596592D+13 R2 = 0.1018789978241D+03 ISTATE -5 - shortening step at time 56322.632755182836 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1805666765220D+13 R2 = 0.2057360290801D-05 ISTATE -5 - shortening step at time 56322.632755182836 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9814597372254D+12 R2 = 0.6008532905159D-09 ISTATE -5 - shortening step at time 28779.561204724025 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1806096254167D+13 R2 = 0.6749430668413D+02 ISTATE -5 - shortening step at time 56322.632755182836 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9888909463992D+12 R2 = 0.5846903254723D+03 ISTATE -5 - shortening step at time 28779.561204724025 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1806448527807D+13 R2 = 0.6313048244909D-05 ISTATE -5 - shortening step at time 56322.632755182836 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1812875280631D+13 R2 = 0.3051702631091D+03 ISTATE -5 - shortening step at time 56322.632755182836 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9907644339628D+12 R2 = 0.2424136949394D-08 ISTATE -5 - shortening step at time 28779.561204724025 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8030988971643D+10 ISTATE -1: Reducing time step to 2.5192857135728524 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1812893994370D+13 R2 = 0.1892857107038D-06 ISTATE -5 - shortening step at time 57369.470906047063 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9950072637703D+12 R2 = 0.1148372294280D+03 ISTATE -5 - shortening step at time 28779.561204724025 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1813680224116D+13 R2 = 0.3130356735436D+03 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1817106762523D+13 R2 = 0.3405709789057D-05 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1820457949879D+13 R2 = 0.1582042208077D+04 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1825506407378D+13 R2 = 0.1901725897431D-04 ISTATE -5 - shortening step at time 57369.470906047063 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1825575729417D+13 R2 = 0.5902733411334D+03 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1829340532078D+13 R2 = 0.2522755432800D+03 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1841639423515D+13 R2 = 0.1065368223914D-04 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1102245309440D+13 R2 = 0.5110689445178D+03 ISTATE -5 - shortening step at time 34823.270567264146 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1843812813800D+13 R2 = 0.5086546723875D-04 ISTATE -5 - shortening step at time 57369.470906047063 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1844835138374D+13 R2 = 0.6646706482983D+02 ISTATE -5 - shortening step at time 57369.470906047063 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1845033480979D+13 R2 = 0.1151004552652D+03 ISTATE -5 - shortening step at time 58380.858809289071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1845812249641D+13 R2 = 0.2707141252127D+03 ISTATE -5 - shortening step at time 58380.858809289071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1849008825386D+13 R2 = 0.2120146207746D-05 ISTATE -5 - shortening step at time 58380.858809289071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1849226421288D+13 R2 = 0.3941421780074D-05 ISTATE -5 - shortening step at time 58380.858809289071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1849563937495D+13 R2 = 0.4781175875384D+02 ISTATE -5 - shortening step at time 58380.858809289071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1849744790629D+13 R2 = 0.6800243487907D-06 ISTATE -5 - shortening step at time 58380.858809289071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1849866677144D+13 R2 = 0.1415277361883D+03 ISTATE -5 - shortening step at time 58380.858809289071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1849970847785D+13 R2 = 0.2313139244553D-05 ISTATE -5 - shortening step at time 58380.858809289071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1850078536706D+13 R2 = 0.3345262924762D+02 ISTATE -5 - shortening step at time 58380.858809289071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1850182767166D+13 R2 = 0.2656928534392D-05 ISTATE -5 - shortening step at time 58380.858809289071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1850397720989D+13 R2 = 0.7392922733841D+01 ISTATE -5 - shortening step at time 58550.087568539799 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1331533080007D+13 R2 = 0.8808031120531D+00 ISTATE -5 - shortening step at time 42136.159212942868 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8031000847633D+10 ISTATE -1: Reducing time step to 2.5192481313277360 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.1974030764924D+13 ISTATE -1: Reducing time step to 193.57697462493374 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1989288942741D+13 R2 = 0.1382657275043D+04 ISTATE -5 - shortening step at time 58550.087568539799 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8031011238627D+10 ISTATE -1: Reducing time step to 2.5192152484336630 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2035481450614D+13 R2 = 0.1881222952847D-05 ISTATE -5 - shortening step at time 64405.097721336650 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2035538018843D+13 R2 = 0.4893613817360D-04 ISTATE -5 - shortening step at time 64405.097721336650 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2035942872957D+13 R2 = 0.8728897054204D+02 ISTATE -5 - shortening step at time 64405.097721336650 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2036086379169D+13 R2 = 0.5426741426781D-05 ISTATE -5 - shortening step at time 64405.097721336650 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2040579929014D+13 R2 = 0.1565088146485D+03 ISTATE -5 - shortening step at time 64405.097721336650 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2040664854615D+13 R2 = 0.1264081953375D+03 ISTATE -5 - shortening step at time 64405.097721336650 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2043072233968D+13 R2 = 0.1094052209220D-04 ISTATE -5 - shortening step at time 64405.097721336650 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2043270780882D+13 R2 = 0.1147815545748D+03 ISTATE -5 - shortening step at time 64405.097721336650 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8031023192965D+10 ISTATE -1: Reducing time step to 2.5191774182502025 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2050158288488D+13 R2 = 0.2354750174226D-05 ISTATE -5 - shortening step at time 64405.097721336650 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2051864640019D+13 R2 = 0.1803062196706D+03 ISTATE -5 - shortening step at time 64405.097721336650 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1464966281820D+13 R2 = 0.6886151091632D+02 ISTATE -5 - shortening step at time 46349.776138841473 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1466694823056D+13 R2 = 0.1321843389145D-08 ISTATE -5 - shortening step at time 46349.776138841473 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1466700170471D+13 R2 = 0.1835552011837D+02 ISTATE -5 - shortening step at time 46349.776138841473 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1467154593094D+13 R2 = 0.7365913701687D-08 ISTATE -5 - shortening step at time 46349.776138841473 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1467394633278D+13 R2 = 0.7267697653641D+02 ISTATE -5 - shortening step at time 46349.776138841473 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1467618054010D+13 R2 = 0.5555803910745D+02 ISTATE -5 - shortening step at time 46349.776138841473 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1467665526132D+13 R2 = 0.7550217666679D+02 ISTATE -5 - shortening step at time 46349.776138841473 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1468164570165D+13 R2 = 0.2904117890494D-09 ISTATE -5 - shortening step at time 46349.776138841473 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1468933995051D+13 R2 = 0.1021055987758D+03 ISTATE -5 - shortening step at time 46349.776138841473 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1468956155387D+13 R2 = 0.1655527672020D+03 ISTATE -5 - shortening step at time 46349.776138841473 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1470326815208D+13 R2 = 0.1387598241892D-08 ISTATE -5 - shortening step at time 46485.954284400555 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1473662971244D+13 R2 = 0.1154568532584D-07 ISTATE -5 - shortening step at time 46485.954284400555 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1478026836551D+13 R2 = 0.1110903836398D-09 ISTATE -5 - shortening step at time 46485.954284400555 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1478478285505D+13 R2 = 0.1895550307652D+02 ISTATE -5 - shortening step at time 46485.954284400555 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1479653209064D+13 R2 = 0.2349825300157D+03 ISTATE -5 - shortening step at time 46485.954284400555 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1481174075923D+13 R2 = 0.1369200351531D-08 ISTATE -5 - shortening step at time 46485.954284400555 years At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8031033821938D+10 ISTATE -1: Reducing time step to 2.5191437822589036 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1481583863693D+13 R2 = 0.3874009265418D-09 ISTATE -5 - shortening step at time 46485.954284400555 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1482333311330D+13 R2 = 0.7345399556628D+02 ISTATE -5 - shortening step at time 46485.954284400555 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1482801436307D+13 R2 = 0.1483888731063D+02 ISTATE -5 - shortening step at time 46485.954284400555 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1484012867070D+13 R2 = 0.3231358445397D+03 ISTATE -5 - shortening step at time 46485.954284400555 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1484053615033D+13 R2 = 0.3827214903649D+01 ISTATE -5 - shortening step at time 46962.432502202697 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2257076657522D+13 R2 = 0.7526161135852D-07 ISTATE -5 - shortening step at time 71425.669396866215 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2483028761093D+13 R2 = 0.4039722777613D-06 ISTATE -5 - shortening step at time 78568.238039473494 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2483163174368D+13 R2 = 0.4116872269133D+03 ISTATE -5 - shortening step at time 78568.238039473494 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8031044009975D+10 ISTATE -1: Reducing time step to 2.5191115416344392 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.8031053819970D+10 ISTATE -1: Reducing time step to 2.5190804973455947 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1632441826329D+13 R2 = 0.9378083484277D-10 ISTATE -5 - shortening step at time 51658.676872094613 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1632447874687D+13 R2 = 0.6394913503570D+01 ISTATE -5 - shortening step at time 51658.676872094613 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1632448719412D+13 R2 = 0.4500695650967D+01 ISTATE -5 - shortening step at time 51658.676872094613 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1632449944869D+13 R2 = 0.6894188144843D-08 ISTATE -5 - shortening step at time 51658.676872094613 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1632461479052D+13 R2 = 0.1130296183546D+02 ISTATE -5 - shortening step at time 51658.676872094613 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1638297839175D+13 R2 = 0.2076041457947D+03 ISTATE -5 - shortening step at time 51658.676872094613 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1638349636251D+13 R2 = 0.3227978957599D-08 ISTATE -5 - shortening step at time 51658.676872094613 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1638382015552D+13 R2 = 0.5934392299868D+02 ISTATE -5 - shortening step at time 51658.676872094613 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1638403711432D+13 R2 = 0.4789050951629D-08 ISTATE -5 - shortening step at time 51658.676872094613 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.5140620797059D+11 ISTATE -1: Reducing time step to 8.2997773932778998 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1722595404186D+13 R2 = 0.2738964752941D+03 ISTATE -5 - shortening step at time 51658.676872094613 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1722620657923D+13 R2 = 0.1934186569015D-09 ISTATE -5 - shortening step at time 54512.512790685163 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1722621584991D+13 R2 = 0.4737373281221D+01 ISTATE -5 - shortening step at time 54512.512790685163 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1722623570098D+13 R2 = 0.1671324822561D+02 ISTATE -5 - shortening step at time 54512.512790685163 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1722672956431D+13 R2 = 0.2851600178138D-09 ISTATE -5 - shortening step at time 54512.512790685163 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1723420352035D+13 R2 = 0.6968311844897D+02 ISTATE -5 - shortening step at time 54512.512790685163 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1723420765564D+13 R2 = 0.1418973691369D+02 ISTATE -5 - shortening step at time 54512.512790685163 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1723432316315D+13 R2 = 0.5287521656087D+02 ISTATE -5 - shortening step at time 54512.512790685163 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1723432693832D+13 R2 = 0.2496174143147D+01 ISTATE -5 - shortening step at time 54512.512790685163 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1727008339589D+13 R2 = 0.1826796107764D+03 ISTATE -5 - shortening step at time 54512.512790685163 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1727008442334D+13 R2 = 0.2786950381547D-06 ISTATE -5 - shortening step at time 54512.512790685163 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7273590364539D+11 R2 = 0.1253124782127D-06 ISTATE -5 - shortening step at time 2275.7126773839468 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7276594614057D+11 R2 = 0.9946992856936D+02 ISTATE -5 - shortening step at time 2275.7126773839468 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7279037585749D+11 R2 = 0.1359625458084D+03 ISTATE -5 - shortening step at time 2275.7126773839468 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7281759294952D+11 R2 = 0.1722820312698D+03 ISTATE -5 - shortening step at time 2275.7126773839468 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7289505172852D+11 R2 = 0.4669784439162D+03 ISTATE -5 - shortening step at time 2275.7126773839468 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7975381964124D+11 R2 = 0.7696980702357D-06 ISTATE -5 - shortening step at time 2503.2839993795596 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7978997752650D+11 R2 = 0.1321141864892D+03 ISTATE -5 - shortening step at time 2503.2839993795596 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.7989901885370D+11 R2 = 0.9380717621610D-06 ISTATE -5 - shortening step at time 2503.2839993795596 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.8762522745567D+11 R2 = 0.2874500631288D+03 ISTATE -5 - shortening step at time 2753.6124590004570 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1057874307400D+12 R2 = 0.6569119387244D-06 ISTATE -5 - shortening step at time 3331.8712198232756 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2743093501359D+13 R2 = 0.3028023460866D+03 ISTATE -5 - shortening step at time 86425.063716633609 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1058307826160D+12 R2 = 0.4533237131328D-05 ISTATE -5 - shortening step at time 3331.8712198232756 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2745315065411D+13 R2 = 0.1795436579319D+03 ISTATE -5 - shortening step at time 86425.063716633609 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2745409293963D+13 R2 = 0.3006020662964D-04 ISTATE -5 - shortening step at time 86425.063716633609 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746176602943D+13 R2 = 0.1976221624260D+03 ISTATE -5 - shortening step at time 86425.063716633609 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1287477047761D+12 R2 = 0.3615379544242D-05 ISTATE -5 - shortening step at time 4031.5643507497657 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1288634894623D+12 R2 = 0.3246668291149D+03 ISTATE -5 - shortening step at time 4031.5643507497657 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1289559717527D+12 R2 = 0.2274198739958D+03 ISTATE -5 - shortening step at time 4031.5643507497657 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746563345462D+13 R2 = 0.2942097747386D-05 ISTATE -5 - shortening step at time 86425.063716633609 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746621785947D+13 R2 = 0.1009091055869D+03 ISTATE -5 - shortening step at time 86425.063716633609 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2746743157986D+13 R2 = 0.1045677156191D+03 ISTATE -5 - shortening step at time 86425.063716633609 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1413197166448D+12 R2 = 0.1727613071061D-05 ISTATE -5 - shortening step at time 4434.7208819447269 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2751283549067D+13 R2 = 0.1789735129189D+03 ISTATE -5 - shortening step at time 86425.063716633609 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1422842788665D+12 R2 = 0.1598537851365D-04 ISTATE -5 - shortening step at time 4434.7208819447269 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2751588377467D+13 R2 = 0.2443863363679D-05 ISTATE -5 - shortening step at time 86425.063716633609 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1423245329681D+12 R2 = 0.3430750006022D-05 ISTATE -5 - shortening step at time 4434.7208819447269 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2757107407195D+13 R2 = 0.1689664627354D+03 ISTATE -5 - shortening step at time 86425.063716633609 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1445755592289D+12 R2 = 0.3707400712375D+03 ISTATE -5 - shortening step at time 4434.7208819447269 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1448363505580D+12 R2 = 0.3179716875363D+03 ISTATE -5 - shortening step at time 4434.7208819447269 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2757167638968D+13 R2 = 0.2990343233866D-06 ISTATE -5 - shortening step at time 87250.234404920528 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1449466708762D+12 R2 = 0.3795309713535D-04 ISTATE -5 - shortening step at time 4434.7208819447269 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1462951557477D+12 R2 = 0.3520662908253D-06 ISTATE -5 - shortening step at time 4434.7208819447269 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1545147000358D+12 R2 = 0.9972740213152D+02 ISTATE -5 - shortening step at time 4878.1930758711851 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1545922893114D+12 R2 = 0.3050734910851D-04 ISTATE -5 - shortening step at time 4878.1930758711851 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1548030503254D+12 R2 = 0.3657656652804D+03 ISTATE -5 - shortening step at time 4878.1930758711851 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1550135513403D+12 R2 = 0.1872280082051D-04 ISTATE -5 - shortening step at time 4878.1930758711851 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1883503693650D+12 R2 = 0.6896947627417D+03 ISTATE -5 - shortening step at time 5902.6138776755452 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1884022610961D+12 R2 = 0.7411613283204D+03 ISTATE -5 - shortening step at time 5902.6138776755452 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1885414175273D+12 R2 = 0.1266406691555D+03 ISTATE -5 - shortening step at time 5902.6138776755452 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1886172704759D+12 R2 = 0.1764906550898D+03 ISTATE -5 - shortening step at time 5902.6138776755452 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1887535076883D+12 R2 = 0.4485645423991D-04 ISTATE -5 - shortening step at time 5902.6138776755452 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1888006733117D+12 R2 = 0.1240603139035D-04 ISTATE -5 - shortening step at time 5902.6138776755452 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1888729192297D+12 R2 = 0.3079097966382D-05 ISTATE -5 - shortening step at time 5902.6138776755452 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1890787070519D+12 R2 = 0.4002741052418D+03 ISTATE -5 - shortening step at time 5902.6138776755452 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901694428262D+12 R2 = 0.1112526378345D+04 ISTATE -5 - shortening step at time 5902.6138776755452 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902525951648D+12 R2 = 0.1108991521564D-04 ISTATE -5 - shortening step at time 5902.6138776755452 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2534488683040D+12 R2 = 0.6494101205517D-06 ISTATE -5 - shortening step at time 8013.4879946197107 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2787219472467D+12 R2 = 0.3160098089404D+02 ISTATE -5 - shortening step at time 8814.8369851381231 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3065893408688D+12 R2 = 0.1249020176110D-05 ISTATE -5 - shortening step at time 9696.3208938140269 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3377033751059D+12 R2 = 0.7731395560378D+03 ISTATE -5 - shortening step at time 10665.953214373734 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3383800739562D+12 R2 = 0.1546435513614D+03 ISTATE -5 - shortening step at time 10665.953214373734 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3386868640048D+12 R2 = 0.4784373862850D+03 ISTATE -5 - shortening step at time 10665.953214373734 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3388008182374D+12 R2 = 0.1371072914888D-04 ISTATE -5 - shortening step at time 10665.953214373734 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3389647004608D+12 R2 = 0.1428677883942D-04 ISTATE -5 - shortening step at time 10665.953214373734 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3390700408440D+12 R2 = 0.1085037591374D+03 ISTATE -5 - shortening step at time 10665.953214373734 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3392667787265D+12 R2 = 0.1417583936827D+03 ISTATE -5 - shortening step at time 10665.953214373734 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3478129076050D+12 R2 = 0.1415259352776D-04 ISTATE -5 - shortening step at time 10665.953214373734 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3508716882493D+12 R2 = 0.1540615854325D+03 ISTATE -5 - shortening step at time 10665.953214373734 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3509093063860D+12 R2 = 0.9199965437029D+02 ISTATE -5 - shortening step at time 10665.953214373734 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3551069035029D+12 R2 = 0.4535095516839D+03 ISTATE -5 - shortening step at time 11104.724885632490 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3574611015722D+12 R2 = 0.5566336739555D-05 ISTATE -5 - shortening step at time 11104.724885632490 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3631450944267D+12 R2 = 0.1640697780974D+03 ISTATE -5 - shortening step at time 11104.724885632490 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3677527120015D+12 R2 = 0.1540840760677D+03 ISTATE -5 - shortening step at time 11104.724885632490 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3678138575607D+12 R2 = 0.1621648613843D-04 ISTATE -5 - shortening step at time 11104.724885632490 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3695094025412D+12 R2 = 0.4321890262889D+03 ISTATE -5 - shortening step at time 11104.724885632490 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3696430822466D+12 R2 = 0.4289460908183D+02 ISTATE -5 - shortening step at time 11104.724885632490 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3697955995448D+12 R2 = 0.1572328981013D+03 ISTATE -5 - shortening step at time 11104.724885632490 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3707369781614D+12 R2 = 0.3632782998988D-04 ISTATE -5 - shortening step at time 11104.724885632490 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3709209715758D+12 R2 = 0.2461361044811D-04 ISTATE -5 - shortening step at time 11104.724885632490 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3767186565305D+12 R2 = 0.2904185138434D+03 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3772953999393D+12 R2 = 0.2322023822626D+03 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3806703304247D+12 R2 = 0.3073122716096D+03 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3807182785078D+12 R2 = 0.3229909036107D-04 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3807398370528D+12 R2 = 0.1217058398966D-04 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3893725883883D+12 R2 = 0.1375525410083D+03 ISTATE -5 - shortening step at time 11738.005429612791 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3893998295968D+12 R2 = 0.1750132828356D+02 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3902265398763D+12 R2 = 0.1870778467945D+03 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3903151562892D+12 R2 = 0.7624425635531D-05 ISTATE -5 - shortening step at time 11738.005429612791 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3903365622760D+12 R2 = 0.1384313221596D+03 ISTATE -5 - shortening step at time 11738.005429612791 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3985024462937D+12 R2 = 0.2268834103260D+04 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4020071146463D+12 R2 = 0.1649242299849D+03 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4023069513223D+12 R2 = 0.1730085103896D-04 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4082939999453D+12 R2 = 0.1675175022048D+03 ISTATE -5 - shortening step at time 12352.422856835341 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4086238406809D+12 R2 = 0.8844107172308D+02 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4129576200609D+12 R2 = 0.1560385430184D+03 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4133422899858D+12 R2 = 0.1148947962975D-03 ISTATE -5 - shortening step at time 12352.422856835341 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4160319057442D+12 R2 = 0.1581941206423D+03 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4175804050100D+12 R2 = 0.1653712643034D+03 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4211856160666D+12 R2 = 0.1673603152898D-04 ISTATE -5 - shortening step at time 12352.422856835341 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4238688558013D+12 R2 = 0.2083263938084D-03 ISTATE -5 - shortening step at time 13328.658736283545 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4278551358259D+12 R2 = 0.4938961867683D+02 ISTATE -5 - shortening step at time 13328.658736283545 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4290036680883D+12 R2 = 0.6941073437972D+00 ISTATE -5 - shortening step at time 13328.658736283545 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4343088700108D+12 R2 = 0.3569618285163D-03 ISTATE -5 - shortening step at time 13328.658736283545 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4408172377923D+12 R2 = 0.1712779086833D+03 ISTATE -5 - shortening step at time 13328.658736283545 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.4439795749063D+12 R2 = 0.3973343606823D+03 ISTATE -5 - shortening step at time 13328.658736283545 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5150181664586D+12 R2 = 0.8927013026100D+02 ISTATE -5 - shortening step at time 16127.677770019071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5151018407653D+12 R2 = 0.3373427450496D-05 ISTATE -5 - shortening step at time 16127.677770019071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5151479167278D+12 R2 = 0.6821291168810D+02 ISTATE -5 - shortening step at time 16127.677770019071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5152072713620D+12 R2 = 0.1709759094944D+03 ISTATE -5 - shortening step at time 16127.677770019071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5154037723685D+12 R2 = 0.9278097191718D-05 ISTATE -5 - shortening step at time 16127.677770019071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5172237105038D+12 R2 = 0.2092131306044D-04 ISTATE -5 - shortening step at time 16127.677770019071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5173427104715D+12 R2 = 0.1756604996546D+03 ISTATE -5 - shortening step at time 16127.677770019071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5176643336449D+12 R2 = 0.1334261801090D+03 ISTATE -5 - shortening step at time 16127.677770019071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5177004392509D+12 R2 = 0.5193167289344D-05 ISTATE -5 - shortening step at time 16127.677770019071 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5183470031806D+12 R2 = 0.1649773078461D-05 ISTATE -5 - shortening step at time 16127.677770019071 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5269598018719D+12 R2 = 0.2271948142348D+04 ISTATE -5 - shortening step at time 16403.386176602486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5270295306884D+12 R2 = 0.4252105229077D+03 ISTATE -5 - shortening step at time 16403.386176602486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5786888907475D+12 R2 = 0.8347777663490D-05 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5789156792869D+12 R2 = 0.6287591177047D-05 ISTATE -5 - shortening step at time 18043.725185349937 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5790603784399D+12 R2 = 0.3045534035303D+02 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5803182763612D+12 R2 = 0.3318209524185D-05 ISTATE -5 - shortening step at time 18043.725185349937 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5804360015733D+12 R2 = 0.4591153622230D+03 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5804638239275D+12 R2 = 0.1002858708359D-05 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5805520438436D+12 R2 = 0.1690244790271D-05 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.5839372637779D+12 R2 = 0.8145838008784D-05 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6071388532184D+12 R2 = 0.1974738359724D+03 ISTATE -5 - shortening step at time 18043.725185349937 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6075400891859D+12 R2 = 0.1157467893494D+03 ISTATE -5 - shortening step at time 18043.725185349937 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6076043744101D+12 R2 = 0.1857229774100D-06 ISTATE -5 - shortening step at time 19225.952189427670 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6683383355603D+12 R2 = 0.1357286813527D-05 ISTATE -5 - shortening step at time 21148.547866752855 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6890517869959D+12 R2 = 0.2896185378632D+03 ISTATE -5 - shortening step at time 21148.547866752855 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6890669611772D+12 R2 = 0.7874880693151D+02 ISTATE -5 - shortening step at time 21148.547866752855 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6890769519267D+12 R2 = 0.6213890031111D-05 ISTATE -5 - shortening step at time 21148.547866752855 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.6890821562345D+12 R2 = 0.2947193480178D+02 ISTATE -5 - shortening step at time 21148.547866752855 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9025718621387D+12 R2 = 0.2834993485688D+03 ISTATE -5 - shortening step at time 28148.719040969128 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9832137254988D+12 R2 = 0.2501615094311D-04 ISTATE -5 - shortening step at time 30963.591616183799 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9832743410179D+12 R2 = 0.1055758740576D+03 ISTATE -5 - shortening step at time 30963.591616183799 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9874553445299D+12 R2 = 0.3364564410168D-05 ISTATE -5 - shortening step at time 30963.591616183799 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9893657193553D+12 R2 = 0.2507579158795D+02 ISTATE -5 - shortening step at time 30963.591616183799 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9895096276485D+12 R2 = 0.3743889595606D-04 ISTATE -5 - shortening step at time 30963.591616183799 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9912722332124D+12 R2 = 0.2553045374917D+03 ISTATE -5 - shortening step at time 30963.591616183799 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9914609654873D+12 R2 = 0.2521681792866D+03 ISTATE -5 - shortening step at time 30963.591616183799 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9914863519641D+12 R2 = 0.3608086861139D+02 ISTATE -5 - shortening step at time 30963.591616183799 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9921625730751D+12 R2 = 0.1936067928049D-04 ISTATE -5 - shortening step at time 30963.591616183799 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9921950039976D+12 R2 = 0.3022716145426D+02 ISTATE -5 - shortening step at time 30963.591616183799 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.9922662308799D+12 R2 = 0.3595150456874D-04 ISTATE -5 - shortening step at time 31398.576075873138 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1091447943419D+13 R2 = 0.3822776008601D+01 ISTATE -5 - shortening step at time 34538.434432060843 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899738146353D+13 R2 = 0.4244243801300D-10 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899744487571D+13 R2 = 0.1170295151250D+02 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899746258378D+13 R2 = 0.1072884343564D+02 ISTATE -5 - shortening step at time 60117.383789318228 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899746666696D+13 R2 = 0.6312979961170D+01 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899747072066D+13 R2 = 0.7747644616584D+01 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899747479992D+13 R2 = 0.4756186934209D+01 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899747884135D+13 R2 = 0.6245426763882D+01 ISTATE -5 - shortening step at time 60117.383789318228 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899749879864D+13 R2 = 0.4388976392631D+01 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899750284296D+13 R2 = 0.2863826738835D+01 ISTATE -5 - shortening step at time 60117.383789318228 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899751075750D+13 R2 = 0.9002412544516D+01 ISTATE -5 - shortening step at time 60117.383789318228 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899798605310D+13 R2 = 0.1311857961022D+02 ISTATE -5 - shortening step at time 60118.704928804633 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899798737766D+13 R2 = 0.4547560772288D+01 ISTATE -5 - shortening step at time 60118.704928804633 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899798870222D+13 R2 = 0.4547570626754D+01 ISTATE -5 - shortening step at time 60118.704928804633 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899799002679D+13 R2 = 0.2155118485657D+01 ISTATE -5 - shortening step at time 60118.704928804633 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899799135136D+13 R2 = 0.1625854452010D+01 ISTATE -5 - shortening step at time 60118.704928804633 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899799365538D+13 R2 = 0.3592288272866D+01 ISTATE -5 - shortening step at time 60118.704928804633 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899799497996D+13 R2 = 0.1524782404823D+01 ISTATE -5 - shortening step at time 60118.704928804633 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899799574455D+13 R2 = 0.3163324981150D-07 ISTATE -5 - shortening step at time 60118.704928804633 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899799993197D+13 R2 = 0.7340925341369D+01 ISTATE -5 - shortening step at time 60118.704928804633 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899800125655D+13 R2 = 0.3468534381666D+01 ISTATE -5 - shortening step at time 60118.704928804633 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899810135759D+13 R2 = 0.1578594739458D-08 ISTATE -5 - shortening step at time 60120.257140995149 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899811084889D+13 R2 = 0.2856140280068D+01 ISTATE -5 - shortening step at time 60120.257140995149 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899811161318D+13 R2 = 0.1240950012278D+01 ISTATE -5 - shortening step at time 60120.257140995149 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1899811432889D+13 R2 = 0.1246499804960D-07 ISTATE -5 - shortening step at time 60120.257140995149 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900023150072D+13 R2 = 0.1402312202786D-07 ISTATE -5 - shortening step at time 60120.257140995149 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900318012937D+13 R2 = 0.2089050308118D-09 ISTATE -5 - shortening step at time 60120.257140995149 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900323575112D+13 R2 = 0.1418269637787D+02 ISTATE -5 - shortening step at time 60120.257140995149 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900325396626D+13 R2 = 0.5944693224038D-07 ISTATE -5 - shortening step at time 60120.257140995149 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900327423422D+13 R2 = 0.4539407291183D+02 ISTATE -5 - shortening step at time 60120.257140995149 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900327838747D+13 R2 = 0.6389745696651D+01 ISTATE -5 - shortening step at time 60120.257140995149 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1900862090159D+13 R2 = 0.3187510012663D-09 ISTATE -5 - shortening step at time 60136.956922381010 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901064254333D+13 R2 = 0.1500684395820D-08 ISTATE -5 - shortening step at time 60136.956922381010 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901071973257D+13 R2 = 0.9069381687711D+01 ISTATE -5 - shortening step at time 60136.956922381010 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901167159860D+13 R2 = 0.6659930739679D+02 ISTATE -5 - shortening step at time 60136.956922381010 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901179558837D+13 R2 = 0.1854923293044D+02 ISTATE -5 - shortening step at time 60136.956922381010 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901694552363D+13 R2 = 0.4550302409388D+02 ISTATE -5 - shortening step at time 60136.956922381010 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901728855774D+13 R2 = 0.1601225793306D-09 ISTATE -5 - shortening step at time 60136.956922381010 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901733768149D+13 R2 = 0.1539657487241D+02 ISTATE -5 - shortening step at time 60136.956922381010 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1901931375869D+13 R2 = 0.1156972296281D+02 ISTATE -5 - shortening step at time 60136.956922381010 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902014565722D+13 R2 = 0.4275043444137D-08 ISTATE -5 - shortening step at time 60136.956922381010 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902024572813D+13 R2 = 0.3757303088972D+01 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902030910889D+13 R2 = 0.5655554245925D+01 ISTATE -5 - shortening step at time 60190.334358302243 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902262191911D+13 R2 = 0.5679671696902D+02 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902908213109D+13 R2 = 0.6652559780007D+02 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1902997198469D+13 R2 = 0.5989056424825D-09 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1903146487146D+13 R2 = 0.1530367814507D-07 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1903201415562D+13 R2 = 0.5156446413007D-08 ISTATE -5 - shortening step at time 60190.334358302243 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1903553272546D+13 R2 = 0.6866947273501D+02 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1903811595098D+13 R2 = 0.1406741973912D-08 ISTATE -5 - shortening step at time 60190.334358302243 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1903916995625D+13 R2 = 0.8269892483588D+02 ISTATE -5 - shortening step at time 60190.334358302243 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1904380335942D+13 R2 = 0.1295085149389D+03 ISTATE -5 - shortening step at time 60250.537836228497 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906465401497D+13 R2 = 0.2092054084857D+03 ISTATE -5 - shortening step at time 60250.537836228497 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906598912482D+13 R2 = 0.2340741331887D-08 ISTATE -5 - shortening step at time 60250.537836228497 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906620485864D+13 R2 = 0.4190400533913D-09 ISTATE -5 - shortening step at time 60250.537836228497 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906689319834D+13 R2 = 0.2525895158905D+02 ISTATE -5 - shortening step at time 60250.537836228497 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906692831232D+13 R2 = 0.2094573770335D+02 ISTATE -5 - shortening step at time 60250.537836228497 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906823037585D+13 R2 = 0.2989850479711D+02 ISTATE -5 - shortening step at time 60250.537836228497 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906827191352D+13 R2 = 0.2367796654898D+02 ISTATE -5 - shortening step at time 60250.537836228497 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906853174131D+13 R2 = 0.1726949208562D-07 ISTATE -5 - shortening step at time 60250.537836228497 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906856328985D+13 R2 = 0.2512169576239D+02 ISTATE -5 - shortening step at time 60250.537836228497 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906866027422D+13 R2 = 0.1123657481320D-09 ISTATE -5 - shortening step at time 60343.554714717735 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906886347158D+13 R2 = 0.2787634665665D-09 ISTATE -5 - shortening step at time 60343.554714717735 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1906999871730D+13 R2 = 0.2672499627957D-08 ISTATE -5 - shortening step at time 60343.554714717735 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907001355164D+13 R2 = 0.6219182440270D+01 ISTATE -5 - shortening step at time 60343.554714717735 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907001767694D+13 R2 = 0.3001330758540D+01 ISTATE -5 - shortening step at time 60343.554714717735 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907004068407D+13 R2 = 0.1985075980652D+02 ISTATE -5 - shortening step at time 60343.554714717735 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907004733814D+13 R2 = 0.4618802672304D+01 ISTATE -5 - shortening step at time 60343.554714717735 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907005431370D+13 R2 = 0.4775643841355D+01 ISTATE -5 - shortening step at time 60343.554714717735 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907009071500D+13 R2 = 0.8791462743814D+01 ISTATE -5 - shortening step at time 60343.554714717735 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907009741620D+13 R2 = 0.5582409354989D+01 ISTATE -5 - shortening step at time 60343.554714717735 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907531897020D+13 R2 = 0.2957195337794D+02 ISTATE -5 - shortening step at time 60348.409544940951 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907532309115D+13 R2 = 0.7880228591060D+01 ISTATE -5 - shortening step at time 60348.409544940951 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907533556232D+13 R2 = 0.8723936201597D+01 ISTATE -5 - shortening step at time 60348.409544940951 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907534635252D+13 R2 = 0.6596562984810D+01 ISTATE -5 - shortening step at time 60348.409544940951 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907536371827D+13 R2 = 0.9867001751762D+01 ISTATE -5 - shortening step at time 60348.409544940951 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907772970834D+13 R2 = 0.2385418639537D-09 ISTATE -5 - shortening step at time 60348.409544940951 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907773382496D+13 R2 = 0.3119805718293D+01 ISTATE -5 - shortening step at time 60348.409544940951 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907774807392D+13 R2 = 0.6640353906036D+01 ISTATE -5 - shortening step at time 60348.409544940951 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907775446024D+13 R2 = 0.3842241837737D+01 ISTATE -5 - shortening step at time 60348.409544940951 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1907783673217D+13 R2 = 0.1994859779159D+02 ISTATE -5 - shortening step at time 60348.409544940951 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098572462895D+13 R2 = 0.3145156292188D+01 ISTATE -5 - shortening step at time 66410.192595700515 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098572566617D+13 R2 = 0.8747846151338D+00 ISTATE -5 - shortening step at time 66410.192595700515 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098793817368D+13 R2 = 0.3641415963151D-09 ISTATE -5 - shortening step at time 66410.192595700515 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098794221559D+13 R2 = 0.3225895057827D+01 ISTATE -5 - shortening step at time 66410.192595700515 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098801253004D+13 R2 = 0.4187166970388D+02 ISTATE -5 - shortening step at time 66410.192595700515 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098802548697D+13 R2 = 0.1016601879252D+02 ISTATE -5 - shortening step at time 66410.192595700515 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2098968613104D+13 R2 = 0.7880317507865D-09 ISTATE -5 - shortening step at time 66410.192595700515 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2099155072980D+13 R2 = 0.1218928919247D-08 ISTATE -5 - shortening step at time 66410.192595700515 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2099157424583D+13 R2 = 0.2764173942692D+02 ISTATE -5 - shortening step at time 66410.192595700515 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2099167514091D+13 R2 = 0.2592897729217D+02 ISTATE -5 - shortening step at time 66410.192595700515 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100133381248D+13 R2 = 0.6099108533856D+02 ISTATE -5 - shortening step at time 66429.351711727708 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100137948834D+13 R2 = 0.3692147174371D+01 ISTATE -5 - shortening step at time 66429.351711727708 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100204986592D+13 R2 = 0.7206731256958D-09 ISTATE -5 - shortening step at time 66429.351711727708 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100290757139D+13 R2 = 0.3486046094393D+02 ISTATE -5 - shortening step at time 66429.351711727708 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100699861152D+13 R2 = 0.3426310748642D-08 ISTATE -5 - shortening step at time 66429.351711727708 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100702994749D+13 R2 = 0.4369923789101D+02 ISTATE -5 - shortening step at time 66429.351711727708 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100714484810D+13 R2 = 0.5424368933859D+01 ISTATE -5 - shortening step at time 66429.351711727708 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100972038229D+13 R2 = 0.3766035147020D-07 ISTATE -5 - shortening step at time 66429.351711727708 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2100981002091D+13 R2 = 0.5190622801165D+02 ISTATE -5 - shortening step at time 66429.351711727708 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101415797301D+13 R2 = 0.2637102860636D+02 ISTATE -5 - shortening step at time 66429.351711727708 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101444487386D+13 R2 = 0.7133745455811D+02 ISTATE -5 - shortening step at time 66500.499914597371 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101450859798D+13 R2 = 0.2460492557079D+02 ISTATE -5 - shortening step at time 66500.499914597371 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101728569373D+13 R2 = 0.7024076044294D+02 ISTATE -5 - shortening step at time 66500.499914597371 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101860862275D+13 R2 = 0.1651543110495D-09 ISTATE -5 - shortening step at time 66500.499914597371 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101862667935D+13 R2 = 0.4167556961020D+01 ISTATE -5 - shortening step at time 66500.499914597371 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101863084460D+13 R2 = 0.2924544300434D+01 ISTATE -5 - shortening step at time 66500.499914597371 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101863500986D+13 R2 = 0.8087113329994D+01 ISTATE -5 - shortening step at time 66500.499914597371 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2101866886309D+13 R2 = 0.1751497883094D+02 ISTATE -5 - shortening step at time 66500.499914597371 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2102042620135D+13 R2 = 0.5643603098977D+02 ISTATE -5 - shortening step at time 66500.499914597371 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2102083316201D+13 R2 = 0.4073430554547D+02 ISTATE -5 - shortening step at time 66500.499914597371 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2241652182577D+13 R2 = 0.1552240843161D+05 ISTATE -5 - shortening step at time 66521.623930422546 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2241725303348D+13 R2 = 0.4911766594006D+02 ISTATE -5 - shortening step at time 66521.623930422546 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2312304843714D+13 R2 = 0.3733801008556D+01 ISTATE -5 - shortening step at time 73173.787909463907 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533107131D+13 R2 = 0.3600407926077D+01 ISTATE -5 - shortening step at time 80491.168445009345 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533126680D+13 R2 = 0.1038131108551D+00 ISTATE -5 - shortening step at time 80491.168445009345 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533280733D+13 R2 = 0.1352237749289D+01 ISTATE -5 - shortening step at time 80491.168445009345 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533301947D+13 R2 = 0.7283133299840D-01 ISTATE -5 - shortening step at time 80491.168445009345 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533464224D+13 R2 = 0.5571030573543D+00 ISTATE -5 - shortening step at time 80491.168445009345 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533487346D+13 R2 = 0.7938377625381D-01 ISTATE -5 - shortening step at time 80491.168445009345 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533658141D+13 R2 = 0.8581943131503D+00 ISTATE -5 - shortening step at time 80491.168445009345 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533726970D+13 R2 = 0.2367081667755D-07 ISTATE -5 - shortening step at time 80491.168445009345 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543533862606D+13 R2 = 0.2228332244864D+00 ISTATE -5 - shortening step at time 80491.168445009345 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543534729871D+13 R2 = 0.9327138588709D-09 ISTATE -5 - shortening step at time 80491.168445009345 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543657531399D+13 R2 = 0.1133724801651D+02 ISTATE -5 - shortening step at time 80491.605375670086 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543658374278D+13 R2 = 0.4959336640725D+01 ISTATE -5 - shortening step at time 80491.605375670086 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543659135519D+13 R2 = 0.5623611917176D+01 ISTATE -5 - shortening step at time 80491.605375670086 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543661464774D+13 R2 = 0.6281729977366D+01 ISTATE -5 - shortening step at time 80491.605375670086 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543661632154D+13 R2 = 0.1695936181687D+01 ISTATE -5 - shortening step at time 80491.605375670086 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543661799535D+13 R2 = 0.1673818667494D+01 ISTATE -5 - shortening step at time 80491.605375670086 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543661905829D+13 R2 = 0.1906085883605D-06 ISTATE -5 - shortening step at time 80491.605375670086 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543662995719D+13 R2 = 0.9194252489077D+01 ISTATE -5 - shortening step at time 80491.605375670086 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543663060518D+13 R2 = 0.7054344528262D-08 ISTATE -5 - shortening step at time 80491.605375670086 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543663140359D+13 R2 = 0.7053666665130D-08 ISTATE -5 - shortening step at time 80491.605375670086 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543667947498D+13 R2 = 0.2189526562494D+01 ISTATE -5 - shortening step at time 80495.668998696245 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543668043778D+13 R2 = 0.1369737249619D+01 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543668102025D+13 R2 = 0.1004459979567D+01 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543687648091D+13 R2 = 0.1151314081426D-08 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543687702323D+13 R2 = 0.3210337742144D-07 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543687803537D+13 R2 = 0.1489693229750D-07 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543687873202D+13 R2 = 0.1268986534522D-07 ISTATE -5 - shortening step at time 80495.668998696245 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543687971366D+13 R2 = 0.2219853069713D+00 ISTATE -5 - shortening step at time 80495.668998696245 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543688989869D+13 R2 = 0.7585707204039D+01 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543716214116D+13 R2 = 0.7513970053393D+02 ISTATE -5 - shortening step at time 80495.668998696245 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543725295969D+13 R2 = 0.3521487938808D-09 ISTATE -5 - shortening step at time 80497.348547960486 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543737826420D+13 R2 = 0.5573868354340D+02 ISTATE -5 - shortening step at time 80497.348547960486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543778382001D+13 R2 = 0.9289803286391D-09 ISTATE -5 - shortening step at time 80497.348547960486 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543778787159D+13 R2 = 0.3091521714006D+01 ISTATE -5 - shortening step at time 80497.348547960486 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2543781575516D+13 R2 = 0.1659632259350D+02 ISTATE -5 - shortening step at time 80497.348547960486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2544078918156D+13 R2 = 0.5472488287266D+02 ISTATE -5 - shortening step at time 80497.348547960486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2544078979373D+13 R2 = 0.4936719447607D-07 ISTATE -5 - shortening step at time 80497.348547960486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2544079105116D+13 R2 = 0.1928406443159D-06 ISTATE -5 - shortening step at time 80497.348547960486 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2544087364013D+13 R2 = 0.2233022198610D+02 ISTATE -5 - shortening step at time 80497.348547960486 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214125414215D+13 R2 = 0.6647045162393D+02 ISTATE -5 - shortening step at time 37992.278698727372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2544087531410D+13 R2 = 0.2059395277891D+01 ISTATE -5 - shortening step at time 80497.348547960486 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214130705997D+13 R2 = 0.2336170115408D-05 ISTATE -5 - shortening step at time 37992.278698727372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214134950785D+13 R2 = 0.2069135752231D-05 ISTATE -5 - shortening step at time 37992.278698727372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214217593180D+13 R2 = 0.1884535971354D-05 ISTATE -5 - shortening step at time 37992.278698727372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214241939055D+13 R2 = 0.4164095693010D+02 ISTATE -5 - shortening step at time 37992.278698727372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214293555535D+13 R2 = 0.3883081231447D+02 ISTATE -5 - shortening step at time 37992.278698727372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214298017418D+13 R2 = 0.1530959634743D+03 ISTATE -5 - shortening step at time 37992.278698727372 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214360664606D+13 R2 = 0.8288431197137D+02 ISTATE -5 - shortening step at time 37992.278698727372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214370397711D+13 R2 = 0.1084561061125D+02 ISTATE -5 - shortening step at time 37992.278698727372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1214385206741D+13 R2 = 0.1363206951992D-04 ISTATE -5 - shortening step at time 37992.278698727372 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1341281768938D+13 R2 = 0.4073831385910D+02 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3053929131144D+13 R2 = 0.3401985275818D+03 ISTATE -5 - shortening step at time 95975.259925620267 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1341304008795D+13 R2 = 0.1518840324968D-05 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1341530034308D+13 R2 = 0.1031084663737D+03 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1342326634759D+13 R2 = 0.1987374531392D-05 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1350580230009D+13 R2 = 0.3281668725352D+02 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1350603169359D+13 R2 = 0.8969131722579D-05 ISTATE -5 - shortening step at time 42272.903682526841 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1352437146719D+13 R2 = 0.4796520253697D+02 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353012307175D+13 R2 = 0.4570614268992D+02 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353022630181D+13 R2 = 0.3160699888341D-05 ISTATE -5 - shortening step at time 42272.903682526841 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353129140202D+13 R2 = 0.4409918518769D+02 ISTATE -5 - shortening step at time 42272.903682526841 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353132092579D+13 R2 = 0.1516592270479D-05 ISTATE -5 - shortening step at time 42820.542411471193 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353166397061D+13 R2 = 0.4644840737804D-04 ISTATE -5 - shortening step at time 42820.542411471193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353200958906D+13 R2 = 0.4379119583153D+02 ISTATE -5 - shortening step at time 42820.542411471193 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353217117624D+13 R2 = 0.5296720614192D-05 ISTATE -5 - shortening step at time 42820.542411471193 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1353275007953D+13 R2 = 0.7815128344813D+02 ISTATE -5 - shortening step at time 42820.542411471193 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2798513217436D+13 R2 = 0.1177900251745D-09 ISTATE -5 - shortening step at time 88560.010924259521 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2798513333986D+13 R2 = 0.1743842331915D+01 ISTATE -5 - shortening step at time 88560.010924259521 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800325288151D+13 R2 = 0.1709633888119D+03 ISTATE -5 - shortening step at time 88560.010924259521 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800325371937D+13 R2 = 0.3103722822461D-07 ISTATE -5 - shortening step at time 88560.010924259521 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800325779283D+13 R2 = 0.4781065368562D+01 ISTATE -5 - shortening step at time 88560.010924259521 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800326180317D+13 R2 = 0.3199395983645D+01 ISTATE -5 - shortening step at time 88560.010924259521 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800326587664D+13 R2 = 0.7487592188962D+01 ISTATE -5 - shortening step at time 88560.010924259521 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800615029654D+13 R2 = 0.1284820348503D-08 ISTATE -5 - shortening step at time 88560.010924259521 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2800911062926D+13 R2 = 0.8283433820813D-09 ISTATE -5 - shortening step at time 88560.010924259521 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801155899406D+13 R2 = 0.5356677134688D+02 ISTATE -5 - shortening step at time 88560.010924259521 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801179662325D+13 R2 = 0.1692078220062D+02 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801182812249D+13 R2 = 0.7786152893037D+01 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801183065646D+13 R2 = 0.3058578225474D+01 ISTATE -5 - shortening step at time 88644.174031829796 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801183466091D+13 R2 = 0.4714993981260D+01 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801185285953D+13 R2 = 0.5417138849931D+01 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801185468224D+13 R2 = 0.6047074820409D+01 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801185874764D+13 R2 = 0.7450796946178D+01 ISTATE -5 - shortening step at time 88644.174031829796 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801548195500D+13 R2 = 0.1398842888256D+03 ISTATE -5 - shortening step at time 88644.174031829796 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801551419680D+13 R2 = 0.1025569347114D-07 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801551787294D+13 R2 = 0.2706804810340D+01 ISTATE -5 - shortening step at time 88644.174031829796 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801561466430D+13 R2 = 0.2564141542485D+01 ISTATE -5 - shortening step at time 88656.702129556579 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801561566710D+13 R2 = 0.1595922395787D+01 ISTATE -5 - shortening step at time 88656.702129556579 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801563697102D+13 R2 = 0.5313780124222D+01 ISTATE -5 - shortening step at time 88656.702129556579 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801563833723D+13 R2 = 0.1436745852194D+01 ISTATE -5 - shortening step at time 88656.702129556579 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801566112962D+13 R2 = 0.1867520725065D-06 ISTATE -5 - shortening step at time 88656.702129556579 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801566480080D+13 R2 = 0.3057861173520D+01 ISTATE -5 - shortening step at time 88656.702129556579 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801566652171D+13 R2 = 0.1383233365696D+01 ISTATE -5 - shortening step at time 88656.702129556579 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801576988940D+13 R2 = 0.3964596169950D+02 ISTATE -5 - shortening step at time 88656.702129556579 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801577356534D+13 R2 = 0.3188714705933D+01 ISTATE -5 - shortening step at time 88656.702129556579 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801577463109D+13 R2 = 0.2864258022367D-07 ISTATE -5 - shortening step at time 88656.702129556579 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801581609196D+13 R2 = 0.1909522551751D+01 ISTATE -5 - shortening step at time 88657.514655350111 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801582381617D+13 R2 = 0.4171292984195D+01 ISTATE -5 - shortening step at time 88657.514655350111 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801582423790D+13 R2 = 0.5912962381792D+00 ISTATE -5 - shortening step at time 88657.514655350111 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801583284257D+13 R2 = 0.7929815964719D+01 ISTATE -5 - shortening step at time 88657.514655350111 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801583424141D+13 R2 = 0.4799925376288D+01 ISTATE -5 - shortening step at time 88657.514655350111 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801583569568D+13 R2 = 0.2114589668983D+01 ISTATE -5 - shortening step at time 88657.514655350111 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2801583638827D+13 R2 = 0.5306811279337D+00 ISTATE -5 - shortening step at time 88657.514655350111 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2804378255490D+13 R2 = 0.2125586102174D-09 ISTATE -5 - shortening step at time 88657.514655350111 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2805989498139D+13 R2 = 0.9693330324640D-09 ISTATE -5 - shortening step at time 88657.514655350111 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2806570380258D+13 R2 = 0.3039220002715D-08 ISTATE -5 - shortening step at time 88657.514655350111 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087252990536D+13 R2 = 0.3798976431553D+01 ISTATE -5 - shortening step at time 97697.072316383739 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087340331979D+13 R2 = 0.1624012479329D-09 ISTATE -5 - shortening step at time 97697.072316383739 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087347263103D+13 R2 = 0.4754020548872D-09 ISTATE -5 - shortening step at time 97697.072316383739 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087350806945D+13 R2 = 0.2131888963728D+02 ISTATE -5 - shortening step at time 97697.072316383739 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087351220122D+13 R2 = 0.3140981203413D+01 ISTATE -5 - shortening step at time 97697.072316383739 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087353576835D+13 R2 = 0.1799480054769D+02 ISTATE -5 - shortening step at time 97697.072316383739 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3087366511311D+13 R2 = 0.1571198006416D+02 ISTATE -5 - shortening step at time 97697.072316383739 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1491245395275D+13 R2 = 0.1761065824241D-05 ISTATE -5 - shortening step at time 47102.597673539603 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1491313907158D+13 R2 = 0.1723009059987D+02 ISTATE -5 - shortening step at time 47102.597673539603 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1491390082711D+13 R2 = 0.4406428139553D+02 ISTATE -5 - shortening step at time 47102.597673539603 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1491403757649D+13 R2 = 0.3930029920472D+02 ISTATE -5 - shortening step at time 47102.597673539603 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1492377002126D+13 R2 = 0.1664729917690D-05 ISTATE -5 - shortening step at time 47102.597673539603 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1492384190320D+13 R2 = 0.5755695847894D-05 ISTATE -5 - shortening step at time 47102.597673539603 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1492462647126D+13 R2 = 0.1217944211635D+03 ISTATE -5 - shortening step at time 47102.597673539603 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1493107528328D+13 R2 = 0.2053622981437D+03 ISTATE -5 - shortening step at time 47102.597673539603 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1493127134136D+13 R2 = 0.2080450239969D+02 ISTATE -5 - shortening step at time 47102.597673539603 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1494247314959D+13 R2 = 0.6072088819099D+02 ISTATE -5 - shortening step at time 47102.597673539603 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1494480928768D+13 R2 = 0.9458499283487D-06 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1498988070456D+13 R2 = 0.4549700566272D+02 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1500928895274D+13 R2 = 0.2388152409098D+02 ISTATE -5 - shortening step at time 47286.307435421826 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1500966253771D+13 R2 = 0.1894189129116D+02 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1501049292759D+13 R2 = 0.6267612300356D-05 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1504535618183D+13 R2 = 0.4255182904945D-06 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1504994062002D+13 R2 = 0.3873310594314D+03 ISTATE -5 - shortening step at time 47286.307435421826 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1505020362154D+13 R2 = 0.4108967163629D+02 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1506398454476D+13 R2 = 0.1005697403327D-05 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1506413273166D+13 R2 = 0.3480680171777D+02 ISTATE -5 - shortening step at time 47286.307435421826 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1506428751713D+13 R2 = 0.1556764588926D-06 ISTATE -5 - shortening step at time 47671.306112842183 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1657073485847D+13 R2 = 0.2108506466959D+01 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1669807613741D+13 R2 = 0.4248672923246D+02 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1670281266697D+13 R2 = 0.9712338090541D-05 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1670287215680D+13 R2 = 0.1808308242661D-05 ISTATE -5 - shortening step at time 52438.437860698905 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1670385079170D+13 R2 = 0.4273690384264D+02 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1670404585752D+13 R2 = 0.4238773564244D+02 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1671194077272D+13 R2 = 0.4751028979385D+02 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1671199011106D+13 R2 = 0.7352725946759D-05 ISTATE -5 - shortening step at time 52438.437860698905 years [Parallel(n_jobs=4)]: Done 7 out of 9 | elapsed: 9.4min remaining: 2.7min At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1671217031531D+13 R2 = 0.4267024334505D+02 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1675109097142D+13 R2 = 0.9271351053583D-06 ISTATE -5 - shortening step at time 52438.437860698905 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1675113389573D+13 R2 = 0.2022546197968D-05 ISTATE -5 - shortening step at time 53009.781555117523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1680391951246D+13 R2 = 0.4054652079093D+02 ISTATE -5 - shortening step at time 53009.781555117523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1680420342984D+13 R2 = 0.3970948932857D+02 ISTATE -5 - shortening step at time 53009.781555117523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1682110422067D+13 R2 = 0.2452118851046D+02 ISTATE -5 - shortening step at time 53009.781555117523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1682129704006D+13 R2 = 0.4166221637560D+02 ISTATE -5 - shortening step at time 53009.781555117523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1684174408520D+13 R2 = 0.2932941308908D-05 ISTATE -5 - shortening step at time 53009.781555117523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1684210046305D+13 R2 = 0.4918982653653D+02 ISTATE -5 - shortening step at time 53009.781555117523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1684213335712D+13 R2 = 0.5124119173517D-05 ISTATE -5 - shortening step at time 53009.781555117523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1690211325834D+13 R2 = 0.3023829249054D+02 ISTATE -5 - shortening step at time 53009.781555117523 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1690277999616D+13 R2 = 0.4293480101406D+02 ISTATE -5 - shortening step at time 53009.781555117523 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1690286374326D+13 R2 = 0.4290117565537D+00 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1700439775394D+13 R2 = 0.1614751773061D+02 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1700463757814D+13 R2 = 0.7790329706046D-06 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1701044174863D+13 R2 = 0.1262887224274D-05 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1701078018758D+13 R2 = 0.1340617989264D-05 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1701189277620D+13 R2 = 0.1137870477994D+02 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1703775398285D+13 R2 = 0.1278851535033D+03 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1703827209965D+13 R2 = 0.2585263034714D+02 ISTATE -5 - shortening step at time 53489.810114422333 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1703836984833D+13 R2 = 0.3651671319708D+01 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1703876800754D+13 R2 = 0.5637258396862D+02 ISTATE -5 - shortening step at time 53489.810114422333 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1703895700564D+13 R2 = 0.9498012152455D-07 ISTATE -5 - shortening step at time 53920.151922591314 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1885624788646D+13 R2 = 0.1451320619532D+03 ISTATE -5 - shortening step at time 59312.168400407048 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1885628251782D+13 R2 = 0.8673222471416D+01 ISTATE -5 - shortening step at time 59312.168400407048 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.1885633001963D+13 R2 = 0.2517194136400D-05 ISTATE -5 - shortening step at time 59312.168400407048 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2268373307768D+13 R2 = 0.4351100758190D+02 ISTATE -5 - shortening step at time 71767.726875539607 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2318671729635D+13 ISTATE -1: Reducing time step to 556.88137104699535 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3179237139631D+13 ISTATE -1: Reducing time step to 685.80117380094657 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3179241047137D+13 R2 = 0.5402613530406D-09 ISTATE -5 - shortening step at time 97697.072316383739 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.2456593792614D+13 ISTATE -1: Reducing time step to 120.41913992767032 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2456605192307D+13 R2 = 0.4336213490771D+02 ISTATE -5 - shortening step at time 71767.726875539607 years

At current T(=R1), MXSTEP(=I1) steps
taken on this call before reaching TOUT.
In the above message, I1 = 10000 In the above message, R1 = 0.3277491493995D+13 ISTATE -1: Reducing time step to 374.86966801556952 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494661504879D+13 R2 = 0.5787696020173D-07 ISTATE -5 - shortening step at time 78944.501274169510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494689924542D+13 R2 = 0.8284479700165D-06 ISTATE -5 - shortening step at time 78944.501274169510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494697775941D+13 R2 = 0.8626180249795D+00 ISTATE -5 - shortening step at time 78944.501274169510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494704043322D+13 R2 = 0.8323252552841D+01 ISTATE -5 - shortening step at time 78944.501274169510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494710549252D+13 R2 = 0.9131854741649D-06 ISTATE -5 - shortening step at time 78944.501274169510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494804184702D+13 R2 = 0.1262596452075D+02 ISTATE -5 - shortening step at time 78944.501274169510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494851242418D+13 R2 = 0.4587228382525D+02 ISTATE -5 - shortening step at time 78944.501274169510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494859684936D+13 R2 = 0.1380201238577D-05 ISTATE -5 - shortening step at time 78944.501274169510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494889476315D+13 R2 = 0.3433946800387D+02 ISTATE -5 - shortening step at time 78944.501274169510 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494892134575D+13 R2 = 0.1175443474902D-05 ISTATE -5 - shortening step at time 78944.501274169510 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494961868682D+13 R2 = 0.2180073104697D+02 ISTATE -5 - shortening step at time 78952.282739729868 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2494963956819D+13 R2 = 0.7113096382690D+01 ISTATE -5 - shortening step at time 78952.282739729868 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2495014609321D+13 R2 = 0.1194313065093D+03 ISTATE -5 - shortening step at time 78952.282739729868 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2495022071055D+13 R2 = 0.8962685950767D+01 ISTATE -5 - shortening step at time 78952.282739729868 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2495024479833D+13 R2 = 0.1478749262966D-04 ISTATE -5 - shortening step at time 78952.282739729868 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2495029709513D+13 R2 = 0.1345301208586D+03 ISTATE -5 - shortening step at time 78952.282739729868 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2497845343844D+13 R2 = 0.2102782702597D+02 ISTATE -5 - shortening step at time 78952.282739729868 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2497856754718D+13 R2 = 0.1778190357067D+02 ISTATE -5 - shortening step at time 78952.282739729868 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2499925166009D+13 R2 = 0.4906498610341D+02 ISTATE -5 - shortening step at time 78952.282739729868 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.2499929684496D+13 R2 = 0.1987465805126D+02 ISTATE -5 - shortening step at time 78952.282739729868 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3031808141893D+13 R2 = 0.4317535992921D+02 ISTATE -5 - shortening step at time 95725.159790072867 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3031809795308D+13 R2 = 0.8297798769547D+01 ISTATE -5 - shortening step at time 95725.159790072867 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3031812478320D+13 R2 = 0.1749401833492D-04 ISTATE -5 - shortening step at time 95725.159790072867 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3041993188779D+13 R2 = 0.1781774460333D+02 ISTATE -5 - shortening step at time 95725.159790072867 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3042001498960D+13 R2 = 0.1312846642968D-04 ISTATE -5 - shortening step at time 95725.159790072867 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3042064195111D+13 R2 = 0.4702814028576D-05 ISTATE -5 - shortening step at time 95725.159790072867 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3042073427456D+13 R2 = 0.9911190692136D+01 ISTATE -5 - shortening step at time 95725.159790072867 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3042077414578D+13 R2 = 0.1209916820412D+02 ISTATE -5 - shortening step at time 95725.159790072867 years At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3042093081334D+13 R2 = 0.2109333346823D+02 ISTATE -5 - shortening step at time 95725.159790072867 years

At T(=R1) and step size H(=R2), the
corrector convergence failed repeatedly
or with ABS(H) = HMIN.
In the above message, R1 = 0.3042099653302D+13 R2 = 0.1023113238489D+02 ISTATE -5 - shortening step at time 95725.159790072867 years [Parallel(n_jobs=4)]: Done 9 out of 9 | elapsed: 28.7min finished

model_table[["Result", "Dissipation Time"] + out_species] = results
model_table
shock_velocitydensityoutputFileResultDissipation TimeCOH2OCH3OH
010.010000.0../grid_folder/shocks/10.0_10000.0.csv0.01171.8987347.727502e-059.032445e-111.091258e-13
130.010000.0../grid_folder/shocks/30.0_10000.0.csv0.01171.8987343.365962e-051.190018e-056.000710e-14
250.010000.0../grid_folder/shocks/50.0_10000.0.csv0.01171.8987341.764835e-058.205893e-062.386004e-09
310.0100000.0../grid_folder/shocks/10.0_100000.0.csv0.0117.1898737.202338e-113.043583e-114.026625e-14
430.0100000.0../grid_folder/shocks/30.0_100000.0.csv0.0117.1898733.111801e-243.403524e-223.227464e-22
550.0100000.0../grid_folder/shocks/50.0_100000.0.csv0.0117.1898732.108334e-242.208829e-222.307490e-22
610.01000000.0../grid_folder/shocks/10.0_1000000.0.csv0.011.7189873.586509e-272.642741e-235.058576e-23
730.01000000.0../grid_folder/shocks/30.0_1000000.0.csv0.011.7189874.718451e-251.063721e-201.000000e-30
850.01000000.0../grid_folder/shocks/50.0_1000000.0.csv0.011.7189871.000000e-304.127471e-232.321015e-23

Summary​

There are many ways to run grids of models and users will naturally develop their own methods. This notebook is just a simple example of how to run UCLCHEM for many parameter combinations whilst producing a useful output (the model_table) to keep track of all the combinations that were run. In a real script, we'd save the model file to csv at the end.

For much larger grids, it's recommended that you find a way to make your script robust to failure. Over a huge range of parameters, it is quite likely UCLCHEM will hit integration trouble for at least a few parameter combinations. Very occasionally, UCLCHEM will get caught in a loop where it fails to integrate and cannot adjust its strategy to manage it. This isn't a problem for small grids as the model can be stopped and the tolerances adjusted. However, for very large grids, you may end up locking all threads as they each get stuck on a different model. The best solution we've found for this case is to add a check so that models in your dataframe are skipped if their file already exists, this allows you to stop and restart the grid script as needed.