{ "cells": [ { "cell_type": "markdown", "id": "b3e6f14a", "metadata": {}, "source": [ "# Running a Grid\n", "\n", "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." ] }, { "cell_type": "code", "execution_count": 1, "id": "1b0acbd1", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:20:29.090600Z", "iopub.status.busy": "2026-01-23T13:20:29.090433Z", "iopub.status.idle": "2026-01-23T13:20:30.364468Z", "shell.execute_reply": "2026-01-23T13:20:30.363566Z" }, "lines_to_next_cell": 2 }, "outputs": [], "source": [ "import uclchem\n", "import numpy as np\n", "import pandas as pd\n", "import os\n", "from joblib import Parallel, delayed" ] }, { "cell_type": "markdown", "id": "934a28c3", "metadata": {}, "source": [ "## A Simple Grid\n", "### Define Parameter Space\n", "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." ] }, { "cell_type": "code", "execution_count": 2, "id": "1c756097", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:20:30.366818Z", "iopub.status.busy": "2026-01-23T13:20:30.366499Z", "iopub.status.idle": "2026-01-23T13:20:30.373672Z", "shell.execute_reply": "2026-01-23T13:20:30.372774Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "27 models to run\n" ] } ], "source": [ "# This part can be substituted with any choice of grid\n", "# here we just vary the density, temperature and zeta\n", "temperatures = np.linspace(10, 50, 3)\n", "densities = np.logspace(4, 6, 3)\n", "zetas = np.logspace(1, 3, 3)\n", "\n", "# meshgrid will give all combinations, then we shape into columns and put into a table\n", "parameterSpace = np.asarray(np.meshgrid(temperatures, densities, zetas)).reshape(3, -1)\n", "model_table = pd.DataFrame(parameterSpace.T, columns=[\"temperature\", \"density\", \"zeta\"])\n", "\n", "# keep track of where each model output will be saved and make sure that folder exists\n", "model_table[\"outputFile\"] = model_table.apply(\n", " lambda row: f\"../grid_folder/{row.temperature}_{row.density}_{row.zeta}.csv\", axis=1\n", ")\n", "print(f\"{model_table.shape[0]} models to run\")\n", "if not os.path.exists(\"../grid_folder\"):\n", " os.makedirs(\"../grid_folder\")" ] }, { "cell_type": "code", "execution_count": 3, "id": "598c65ef", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:20:30.375285Z", "iopub.status.busy": "2026-01-23T13:20:30.375110Z", "iopub.status.idle": "2026-01-23T13:20:30.385857Z", "shell.execute_reply": "2026-01-23T13:20:30.385142Z" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
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
\n", "
" ], "text/plain": [ " temperature density zeta outputFile\n", "0 10.0 10000.0 10.0 ../grid_folder/10.0_10000.0_10.0.csv\n", "1 10.0 10000.0 100.0 ../grid_folder/10.0_10000.0_100.0.csv\n", "2 10.0 10000.0 1000.0 ../grid_folder/10.0_10000.0_1000.0.csv\n", "3 30.0 10000.0 10.0 ../grid_folder/30.0_10000.0_10.0.csv\n", "4 30.0 10000.0 100.0 ../grid_folder/30.0_10000.0_100.0.csv" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model_table.head()" ] }, { "cell_type": "markdown", "id": "70ef474a", "metadata": {}, "source": [ "### Set up the model\n", "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." ] }, { "cell_type": "code", "execution_count": 4, "id": "ba38382a", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:20:30.387716Z", "iopub.status.busy": "2026-01-23T13:20:30.387541Z", "iopub.status.idle": "2026-01-23T13:20:30.390886Z", "shell.execute_reply": "2026-01-23T13:20:30.390104Z" } }, "outputs": [], "source": [ "def run_model(row):\n", " # basic set of parameters we'll use for this grid.\n", " ParameterDictionary = {\n", " \"endatfinaldensity\": False,\n", " \"freefall\": False,\n", " \"initialDens\": row.density,\n", " \"initialTemp\": row.temperature,\n", " \"zeta\": row.zeta,\n", " \"outputFile\": row.outputFile,\n", " \"finalTime\": 1.0e6,\n", " \"baseAv\": 10,\n", " \"abstol_min\": 1e-22,\n", " }\n", " result = uclchem.model.cloud(param_dict=ParameterDictionary)\n", " return result[0] # just the integer error code" ] }, { "cell_type": "markdown", "id": "9f40726e", "metadata": {}, "source": [ "### Run Grid \n", "\n", "#### The Simple Way\n", "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." ] }, { "cell_type": "code", "execution_count": 5, "id": "047a7869", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:20:30.392632Z", "iopub.status.busy": "2026-01-23T13:20:30.392451Z", "iopub.status.idle": "2026-01-23T13:21:03.302315Z", "shell.execute_reply": "2026-01-23T13:21:03.301409Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 33 s, sys: 53.4 ms, total: 33.1 s\n", "Wall time: 32.9 s\n" ] } ], "source": [ "%%time\n", "result = model_table.head().apply(run_model, axis=1)" ] }, { "cell_type": "markdown", "id": "680e604b", "metadata": {}, "source": [ "#### The Fast Way\n", "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." ] }, { "cell_type": "code", "execution_count": 6, "id": "02f3bd08", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:21:03.304159Z", "iopub.status.busy": "2026-01-23T13:21:03.303975Z", "iopub.status.idle": "2026-01-23T13:51:47.479998Z", "shell.execute_reply": "2026-01-23T13:51:47.479232Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Using backend LokyBackend with 4 concurrent workers.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 1 tasks | elapsed: 5.4s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 2 tasks | elapsed: 7.4s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 3 tasks | elapsed: 7.9s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 4 tasks | elapsed: 10.6s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 5 tasks | elapsed: 17.0s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 6 tasks | elapsed: 17.4s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 7 tasks | elapsed: 18.8s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 8 tasks | elapsed: 34.9s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 9 tasks | elapsed: 45.7s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 10 tasks | elapsed: 51.4s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2191895905534D+14\n", " ISTATE -1: Reducing time step to 636.20553054125469 years\n", "[Parallel(n_jobs=4)]: Done 11 tasks | elapsed: 56.8s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 12 tasks | elapsed: 1.0min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 13 tasks | elapsed: 1.1min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 14 tasks | elapsed: 1.2min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 15 tasks | elapsed: 1.2min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 16 tasks | elapsed: 1.3min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2504442802377D+14\n", " ISTATE -1: Reducing time step to 745.48094854954229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2476657443718D+14\n", " ISTATE -1: Reducing time step to 1624.7644635097790 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2819991563550D+14\n", " ISTATE -1: Reducing time step to 759.76065846194081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.4496803001966D+13\n", " ISTATE -1: Reducing time step to 5769.6108392470896 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1454019818894D+14\n", " ISTATE -1: Reducing time step to 3986.7146513662046 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5751822716203D+13\n", " ISTATE -1: Reducing time step to 1798.0294058984198 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2772525662499D+14\n", " ISTATE -1: Reducing time step to 2261.8461571572584 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3137336576678D+14\n", " ISTATE -1: Reducing time step to 717.19695124866485 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 17 tasks | elapsed: 2.9min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.7535473793995D+13\n", " ISTATE -1: Reducing time step to 6153.5640347494127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3045002460788D+14\n", " ISTATE -1: Reducing time step to 3639.1626875302859 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8771488880069D+13\n", " ISTATE -1: Reducing time step to 2242.1238306607829 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.4425657604093D+13\n", " ISTATE -1: Reducing time step to 5994.7545067568799 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1725352478004D+14\n", " ISTATE -1: Reducing time step to 5400.2381183102607 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 18 tasks | elapsed: 4.6min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 19 tasks | elapsed: 4.7min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1077922650652D+14\n", " ISTATE -1: Reducing time step to 5888.5238012759164 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5222282623770D+13\n", " ISTATE -1: Reducing time step to 3473.7892170492946 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1868735902723D+14\n", " ISTATE -1: Reducing time step to 862.78790138094314 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1206106114160D+14\n", " ISTATE -1: Reducing time step to 1832.0850222451663 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 20 tasks | elapsed: 6.1min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 21 out of 27 | elapsed: 6.2min remaining: 1.8min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 22 out of 27 | elapsed: 6.4min remaining: 1.4min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1392801624497D+14\n", " ISTATE -1: Reducing time step to 5923.9993130616076 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8668418988916D+13\n", " ISTATE -1: Reducing time step to 2568.2943771443161 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2034358735116D+14\n", " ISTATE -1: Reducing time step to 5621.5590990953879 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.6069601941938D+13\n", " ISTATE -1: Reducing time step to 792.39892972491896 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.9432373392976D+13\n", " ISTATE -1: Reducing time step to 150.71711308137100 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1010494802163D+14\n", " ISTATE -1: Reducing time step to 8022.3165067799564 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1029554309999D+14\n", " ISTATE -1: Reducing time step to 7419.1675156373349 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1074724111953D+14\n", " ISTATE -1: Reducing time step to 5989.7433818922464 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2104696402880D+14\n", " ISTATE -1: Reducing time step to 3395.6835037551468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1516932933766D+14\n", " ISTATE -1: Reducing time step to 1995.7932650083274 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2181745123550D+14\n", " ISTATE -1: Reducing time step to 957.43281330469915 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2170321267094D+14\n", " ISTATE -1: Reducing time step to 1318.9472635029604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2997843054817D+14\n", " ISTATE -1: Reducing time step to 5131.5489746727471 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 23 out of 27 | elapsed: 8.2min remaining: 1.4min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.7130524983197D+13\n", " ISTATE -1: Reducing time step to 7435.0476323193789 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2440305451822D+14\n", " ISTATE -1: Reducing time step to 2775.1439710379318 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2346444139127D+14\n", " ISTATE -1: Reducing time step to 5745.4387208504932 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2701714809834D+14\n", " ISTATE -1: Reducing time step to 4502.6959584355627 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1696985696307D+14\n", " ISTATE -1: Reducing time step to 6297.9210967738290 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.7946274821797D+13\n", " ISTATE -1: Reducing time step to 4853.5607628401431 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2829348565192D+14\n", " ISTATE -1: Reducing time step to 463.65300716885736 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2480037850487D+14\n", " ISTATE -1: Reducing time step to 1517.7895641799696 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2936174082358D+14\n", " ISTATE -1: Reducing time step to 7083.0987651085852 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3012785341818D+14\n", " ISTATE -1: Reducing time step to 4658.6917840466349 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1812811609638D+14\n", " ISTATE -1: Reducing time step to 2632.5440380191635 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8780697438927D+13\n", " ISTATE -1: Reducing time step to 2212.9828211815798 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3057458241113D+14\n", " ISTATE -1: Reducing time step to 3244.9924181821066 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2660060470854D+14\n", " ISTATE -1: Reducing time step to 5820.8712622380244 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3123370340660D+14\n", " ISTATE -1: Reducing time step to 1159.1664520846966 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 24 out of 27 | elapsed: 12.0min remaining: 1.5min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2012974616146D+14\n", " ISTATE -1: Reducing time step to 6298.2717348012002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2791940228870D+14\n", " ISTATE -1: Reducing time step to 1647.4611362518253 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2127613400443D+14\n", " ISTATE -1: Reducing time step to 2670.4620510886111 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1028109140877D+14\n", " ISTATE -1: Reducing time step to 7464.9007163850083 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2973564905247D+14\n", " ISTATE -1: Reducing time step to 5899.8448585706146 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1109687155985D+14\n", " ISTATE -1: Reducing time step to 4883.3179213293161 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2325442920335D+14\n", " ISTATE -1: Reducing time step to 6410.0342621270320 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3105436501895D+14\n", " ISTATE -1: Reducing time step to 1726.6930037470490 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2443766171797D+14\n", " ISTATE -1: Reducing time step to 2665.6275144950746 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 25 out of 27 | elapsed: 15.9min remaining: 1.3min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1190534593534D+14\n", " ISTATE -1: Reducing time step to 2324.8546696406602 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2641853294649D+14\n", " ISTATE -1: Reducing time step to 6397.0477330038548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1344542771886D+14\n", " ISTATE -1: Reducing time step to 7451.1782159130971 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2754212510414D+14\n", " ISTATE -1: Reducing time step to 2841.3762950457490 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1422543037710D+14\n", " ISTATE -1: Reducing time step to 4982.8153365840080 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1499856836437D+14\n", " ISTATE -1: Reducing time step to 2536.1760999174012 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2957927601047D+14\n", " ISTATE -1: Reducing time step to 6394.6962646841539 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1576094907542D+14\n", " ISTATE -1: Reducing time step to 123.57887709509686 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3069964631600D+14\n", " ISTATE -1: Reducing time step to 2849.2205614305617 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1656824608428D+14\n", " ISTATE -1: Reducing time step to 7568.8416182140054 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1732206083581D+14\n", " ISTATE -1: Reducing time step to 5183.3518626347841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1807053112855D+14\n", " ISTATE -1: Reducing time step to 2814.7749515991204 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1882328005858D+14\n", " ISTATE -1: Reducing time step to 432.65804890868753 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.1971141988310D+14\n", " ISTATE -1: Reducing time step to 7622.0890911146898 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2043435281675D+14\n", " ISTATE -1: Reducing time step to 5334.3266087653865 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2116239504635D+14\n", " ISTATE -1: Reducing time step to 3030.3954680890406 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2190576994886D+14\n", " ISTATE -1: Reducing time step to 677.94320991687835 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2284862046104D+14\n", " ISTATE -1: Reducing time step to 7694.2391620075268 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2360064063786D+14\n", " ISTATE -1: Reducing time step to 5314.4284404007067 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2428761715215D+14\n", " ISTATE -1: Reducing time step to 3140.4520969605069 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2498091668252D+14\n", " ISTATE -1: Reducing time step to 946.46620866930766 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2591286133835D+14\n", " ISTATE -1: Reducing time step to 7997.2743648877440 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2668090539375D+14\n", " ISTATE -1: Reducing time step to 5566.7551660327872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2746048402724D+14\n", " ISTATE -1: Reducing time step to 3099.7341372102442 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2823987468775D+14\n", " ISTATE -1: Reducing time step to 633.30795960390481 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2921810041912D+14\n", " ISTATE -1: Reducing time step to 7537.6570138362931 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2997851640986D+14\n", " ISTATE -1: Reducing time step to 5131.2772604556340 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3077236718937D+14\n", " ISTATE -1: Reducing time step to 2619.0912118961460 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 27 out of 27 | elapsed: 30.7min finished\n", "CPU times: user 2.38 s, sys: 1.07 s, total: 3.45 s\n", "Wall time: 30min 44s\n" ] } ], "source": [ "%%time\n", "results = Parallel(n_jobs=4, verbose=100)(\n", " delayed(run_model)(row) for idx, row in model_table.iterrows()\n", ")" ] }, { "cell_type": "markdown", "id": "14be2380", "metadata": {}, "source": [ "## Checking Your Grid\n", "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." ] }, { "cell_type": "code", "execution_count": 7, "id": "29f0e996", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:51:47.481884Z", "iopub.status.busy": "2026-01-23T13:51:47.481703Z", "iopub.status.idle": "2026-01-23T13:51:47.485074Z", "shell.execute_reply": "2026-01-23T13:51:47.484373Z" } }, "outputs": [], "source": [ "def element_check(output_file):\n", " df = uclchem.analysis.read_output_file(output_file)\n", " # get conservation values\n", " conserves = uclchem.analysis.check_element_conservation(df)\n", " # check if any error is greater than 1%\n", " return all([float(x[:-1]) < 1 for x in conserves.values()])" ] }, { "cell_type": "code", "execution_count": 8, "id": "9b034f69", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:51:47.486756Z", "iopub.status.busy": "2026-01-23T13:51:47.486582Z", "iopub.status.idle": "2026-01-23T13:51:48.920824Z", "shell.execute_reply": "2026-01-23T13:51:48.919817Z" } }, "outputs": [], "source": [ "model_table[\"run_result\"] = results\n", "model_table[\"elements_conserved\"] = model_table[\"outputFile\"].map(element_check)\n", "# check both conditions are met\n", "model_table[\"Successful\"] = (model_table.run_result >= 0) & (\n", " model_table.elements_conserved\n", ")" ] }, { "cell_type": "code", "execution_count": 9, "id": "2d4c42d0", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:51:48.922614Z", "iopub.status.busy": "2026-01-23T13:51:48.922435Z", "iopub.status.idle": "2026-01-23T13:51:48.931162Z", "shell.execute_reply": "2026-01-23T13:51:48.930477Z" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
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
\n", "
" ], "text/plain": [ " temperature density zeta outputFile \\\n", "0 10.0 10000.0 10.0 ../grid_folder/10.0_10000.0_10.0.csv \n", "1 10.0 10000.0 100.0 ../grid_folder/10.0_10000.0_100.0.csv \n", "2 10.0 10000.0 1000.0 ../grid_folder/10.0_10000.0_1000.0.csv \n", "3 30.0 10000.0 10.0 ../grid_folder/30.0_10000.0_10.0.csv \n", "4 30.0 10000.0 100.0 ../grid_folder/30.0_10000.0_100.0.csv \n", "\n", " run_result elements_conserved Successful \n", "0 0 True True \n", "1 0 True True \n", "2 0 True True \n", "3 0 True True \n", "4 0 True True " ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model_table.head()" ] }, { "cell_type": "markdown", "id": "de012a06", "metadata": {}, "source": [ "## Complex Grid\n", "\n", "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.\n", "\n", "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." ] }, { "cell_type": "code", "execution_count": 10, "id": "f223e226", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:51:48.932927Z", "iopub.status.busy": "2026-01-23T13:51:48.932757Z", "iopub.status.idle": "2026-01-23T13:51:48.937320Z", "shell.execute_reply": "2026-01-23T13:51:48.936632Z" } }, "outputs": [], "source": [ "out_species = [\"CO\", \"H2O\", \"CH3OH\"]\n", "\n", "\n", "def run_prelim(density):\n", " # basic set of parameters we'll use for this grid.\n", " ParameterDictionary = {\n", " \"endatfinaldensity\": True,\n", " \"freefall\": True,\n", " \"initialDens\": 1e2,\n", " \"finalDens\": float(density),\n", " \"initialTemp\": 10.0,\n", " \"abundSaveFile\": f\"../grid_folder/starts/{density:.0f}.csv\",\n", " \"baseAv\": 1,\n", " }\n", " result = uclchem.model.cloud(param_dict=ParameterDictionary)\n", " return result\n", "\n", "\n", "def run_model(row):\n", " # basic set of parameters we'll use for this grid.\n", " ParameterDictionary = {\n", " \"endatfinaldensity\": False,\n", " \"freefall\": False,\n", " \"initialDens\": float(row.density),\n", " \"initialTemp\": 10.0,\n", " \"outputFile\": row.outputFile,\n", " \"abundLoadFile\": f\"../grid_folder/starts/{row.density:.0f}.csv\",\n", " \"finalTime\": 1.0e5,\n", " \"abstol_factor\": 1e-14,\n", " \"abstol_min\": 1e-20,\n", " \"reltol\": 1e-6,\n", " \"baseAv\": 1,\n", " }\n", " result = uclchem.model.cshock(\n", " row.shock_velocity, param_dict=ParameterDictionary, out_species=out_species\n", " )\n", " # First check UCLCHEM's result flag to seeif it ran succesfully, if it is return the abundances\n", " if result[0] == 0:\n", " return result[:]\n", " # if not, return NaNs because model failed\n", " else:\n", " return [np.nan] * len(out_species)" ] }, { "cell_type": "markdown", "id": "fc1c0833", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": 11, "id": "7a84f395", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:51:48.939257Z", "iopub.status.busy": "2026-01-23T13:51:48.939089Z", "iopub.status.idle": "2026-01-23T13:51:48.944749Z", "shell.execute_reply": "2026-01-23T13:51:48.944091Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "9 models to run\n" ] } ], "source": [ "# This part can be substituted with any choice of grid\n", "# here we just combine various initial and final densities into an easily iterable array\n", "shock_velocities = np.linspace(10, 50, 3)\n", "densities = np.logspace(4, 6, 3)\n", "\n", "parameterSpace = np.asarray(np.meshgrid(shock_velocities, densities)).reshape(2, -1)\n", "model_table = pd.DataFrame(parameterSpace.T, columns=[\"shock_velocity\", \"density\"])\n", "model_table[\"outputFile\"] = model_table.apply(\n", " lambda row: f\"../grid_folder/shocks/{row.shock_velocity}_{row.density}.csv\", axis=1\n", ")\n", "print(f\"{model_table.shape[0]} models to run\")\n", "\n", "for folder in [\"starts\", \"shocks\"]:\n", " if not os.path.exists(f\"../grid_folder/{folder}\"):\n", " os.makedirs(f\"../grid_folder/{folder}\")" ] }, { "cell_type": "markdown", "id": "f82aabdc", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": 12, "id": "bba105c6", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:51:48.946749Z", "iopub.status.busy": "2026-01-23T13:51:48.946583Z", "iopub.status.idle": "2026-01-23T13:52:01.193960Z", "shell.execute_reply": "2026-01-23T13:52:01.193152Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Using backend LokyBackend with 4 concurrent workers.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 1 tasks | elapsed: 5.8s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 3 out of 3 | elapsed: 12.2s finished\n" ] } ], "source": [ "results = Parallel(n_jobs=4, verbose=100)(\n", " delayed(run_prelim)(dens) for dens in densities\n", ")" ] }, { "cell_type": "code", "execution_count": 13, "id": "bc388e8d", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T13:52:01.196060Z", "iopub.status.busy": "2026-01-23T13:52:01.195860Z", "iopub.status.idle": "2026-01-23T14:04:50.004677Z", "shell.execute_reply": "2026-01-23T14:04:50.003811Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Using backend LokyBackend with 4 concurrent workers.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5362514440691D+09\n", " ISTATE -1: Reducing time step to 6.0849861447472550E-002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 1 tasks | elapsed: 21.5s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 2 tasks | elapsed: 22.0s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5363045516236D+09\n", " ISTATE -1: Reducing time step to 6.0681799563646902E-002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 3 out of 9 | elapsed: 38.9s remaining: 1.3min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5618345989660D+09\n", " ISTATE -1: Reducing time step to 9.7080384465543207E-002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5619695390730D+09\n", " ISTATE -1: Reducing time step to 9.6653358804184270E-002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.4975202967478D+12\n", " ISTATE -1: Reducing time step to 142.51769576403430 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4634229582778D+12 R2 = 0.7409011654259D-06\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4634593930225D+12 R2 = 0.2109613930675D+03\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4659160765697D+12 R2 = 0.1691287277281D-06\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4659567224956D+12 R2 = 0.2232998693519D+03\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4659973915688D+12 R2 = 0.1396203402377D+03\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4679779970390D+12 R2 = 0.2206009589263D+04\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4897545038651D+12 R2 = 0.6167536628903D-08\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4898558918736D+12 R2 = 0.2309863904578D+03\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4901229638506D+12 R2 = 0.2649677462972D-06\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5854982555335D+12\n", " ISTATE -1: Reducing time step to 35.801374375175385 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4909857402765D+12 R2 = 0.3672751684579D-05\n", " ISTATE -5 - shortening step at time 14189.660644914280 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5020258266792D+12 R2 = 0.9351857673688D+03\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5025890285067D+12 R2 = 0.1385212570315D+04\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5026995846681D+12 R2 = 0.2964917846055D-04\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6102317213134D+12 R2 = 0.1030636949382D-06\n", " ISTATE -5 - shortening step at time 18886.439546438512 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6105068915156D+12 R2 = 0.2977375781994D+04\n", " ISTATE -5 - shortening step at time 18886.439546438512 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5035806210572D+12 R2 = 0.1483847874020D+04\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5036185048237D+12 R2 = 0.2352487803944D+03\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5036565163387D+12 R2 = 0.2255334451936D+03\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5042680847352D+12 R2 = 0.7607478939598D-04\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5044301662649D+12 R2 = 0.2144756302979D+03\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5044697566013D+12 R2 = 0.2141349262770D+03\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5044778129110D+12 R2 = 0.1985839376623D+03\n", " ISTATE -5 - shortening step at time 15537.523426472675 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5143429428839D+12 R2 = 0.2367328903468D+04\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5146375728482D+12 R2 = 0.1693012514468D+03\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8806880928474D+12 R2 = 0.1780658782468D+04\n", " ISTATE -5 - shortening step at time 27651.638537272993 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5620884867766D+09\n", " ISTATE -1: Reducing time step to 9.6276942015132261E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5159188975333D+12 R2 = 0.1433176532294D+04\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8813008203055D+12 R2 = 0.1846944382638D+04\n", " ISTATE -5 - shortening step at time 27651.638537272993 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5159287601565D+12 R2 = 0.7578124443126D+02\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8816074294044D+12 R2 = 0.3073510795888D+04\n", " ISTATE -5 - shortening step at time 27651.638537272993 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8834192927680D+12 R2 = 0.2712944744286D+04\n", " ISTATE -5 - shortening step at time 27651.638537272993 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8853199607909D+12 R2 = 0.1955281014010D+04\n", " ISTATE -5 - shortening step at time 27651.638537272993 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5161221770113D+12 R2 = 0.1594061583340D-04\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8865651268659D+12 R2 = 0.9786841537305D+04\n", " ISTATE -5 - shortening step at time 27651.638537272993 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5163807488951D+12 R2 = 0.7939329464298D+03\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5163884499963D+12 R2 = 0.4610574537452D-05\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5164010265141D+12 R2 = 0.3320975072278D+02\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5165586606836D+12 R2 = 0.1181916771827D-03\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1073022505968D+13 R2 = 0.6545813264517D-04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5170627048449D+12 R2 = 0.6813647882664D+03\n", " ISTATE -5 - shortening step at time 15964.487750348924 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1074048115646D+13 R2 = 0.3892710929217D+04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1074301262494D+13 R2 = 0.2187716129752D+04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5193068716191D+12 R2 = 0.4224651113107D+03\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1075311960837D+13 R2 = 0.4533821854353D+04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5247148521350D+12 R2 = 0.1847540692510D+03\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5253476006952D+12 R2 = 0.1610719654445D+04\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5253736962783D+12 R2 = 0.2125143669737D+03\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1075421332467D+13 R2 = 0.3267155125035D-04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1077103802193D+13 R2 = 0.3924755615352D+04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5255670213920D+12 R2 = 0.5353408620385D+02\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5255942515767D+12 R2 = 0.2134272168505D+03\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5264987145946D+12 R2 = 0.1409231052886D+04\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1077307317699D+13 R2 = 0.1544853331372D-03\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5269163317455D+12 R2 = 0.6643956463110D+03\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1078939039984D+13 R2 = 0.5952082129731D-04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5269277709814D+12 R2 = 0.7181893664751D-05\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5269646085894D+12 R2 = 0.2154636444033D+03\n", " ISTATE -5 - shortening step at time 16362.743824204599 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1079877785096D+13 R2 = 0.2795431279899D-04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1080116729987D+13 R2 = 0.1843214651850D+04\n", " ISTATE -5 - shortening step at time 33458.484080486494 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3171727215677D+11 R2 = 0.4812752815576D-08\n", " ISTATE -5 - shortening step at time 964.35107535228644 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3263544058046D+11 R2 = 0.6576878916535D+03\n", " ISTATE -5 - shortening step at time 964.35107535228644 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3275994482516D+11 R2 = 0.6261298442161D+03\n", " ISTATE -5 - shortening step at time 964.35107535228644 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3293692929762D+11 R2 = 0.9004740104825D+03\n", " ISTATE -5 - shortening step at time 964.35107535228644 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5719679931138D+12 R2 = 0.6852580479066D-05\n", " ISTATE -5 - shortening step at time 16676.095208524592 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3324039478193D+11 R2 = 0.3166370553127D-04\n", " ISTATE -5 - shortening step at time 964.35107535228644 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5805454391957D+12 R2 = 0.3909117449397D-05\n", " ISTATE -5 - shortening step at time 18343.705126966142 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1317559285269D+13 R2 = 0.1478445698546D-04\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3467873632840D+11 R2 = 0.5320381386791D-04\n", " ISTATE -5 - shortening step at time 1060.7862058794365 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1319565440712D+13 R2 = 0.6779137533395D+04\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5818542179756D+12 R2 = 0.5283390659365D-05\n", " ISTATE -5 - shortening step at time 18343.705126966142 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1321634039140D+13 R2 = 0.2454498525316D+04\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3544154847413D+11 R2 = 0.1579773302163D-05\n", " ISTATE -5 - shortening step at time 1060.7862058794365 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1321789021727D+13 R2 = 0.6345115420875D-03\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1322120356968D+13 R2 = 0.1833211258673D+04\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1322318578253D+13 R2 = 0.2659457073002D+03\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3581923483885D+11 R2 = 0.3108865604115D-04\n", " ISTATE -5 - shortening step at time 1060.7862058794365 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1322522997905D+13 R2 = 0.1774609957825D+04\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6385968248579D+12 R2 = 0.9073839566917D-05\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6418774949356D+12 R2 = 0.2987093483374D-03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1322629450393D+13 R2 = 0.5836142507189D-03\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3593950174620D+11 R2 = 0.6931646831294D-05\n", " ISTATE -5 - shortening step at time 1060.7862058794365 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6443801150842D+12 R2 = 0.4995072825039D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1322774260630D+13 R2 = 0.7869109117991D+03\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6446142072203D+12 R2 = 0.6156810227982D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1322944472614D+13 R2 = 0.8077989272639D+03\n", " ISTATE -5 - shortening step at time 41358.901896798874 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6446418337160D+12 R2 = 0.5328371233563D+02\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6446669487252D+12 R2 = 0.2233834078765D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3610497639072D+11 R2 = 0.1926454955239D-04\n", " ISTATE -5 - shortening step at time 1060.7862058794365 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6446767184868D+12 R2 = 0.2010969432020D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6452878262468D+12 R2 = 0.9807402792884D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6456261323941D+12 R2 = 0.7226445728102D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6456794587167D+12 R2 = 0.2566493098019D+03\n", " ISTATE -5 - shortening step at time 20178.076077010766 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3795255891254D+11 R2 = 0.7419169725031D-06\n", " ISTATE -5 - shortening step at time 1166.8648517584941 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6488341250168D+12 R2 = 0.8961446525141D+03\n", " ISTATE -5 - shortening step at time 20432.894263188264 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7112006877262D+12 R2 = 0.2600607350930D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1947784709628D+13 R2 = 0.2938841914801D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3864028341912D+11 R2 = 0.4081098468552D-04\n", " ISTATE -5 - shortening step at time 1166.8648517584941 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7167597660411D+12 R2 = 0.3650778508024D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1947971834582D+13 R2 = 0.3990801601807D-04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7329129173987D+12 R2 = 0.1256307688037D+04\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1949219040921D+13 R2 = 0.3645507432120D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1949766997236D+13 R2 = 0.1697371744831D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3988381556490D+11 R2 = 0.5539014768145D-04\n", " ISTATE -5 - shortening step at time 1166.8648517584941 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7435373212351D+12 R2 = 0.2695691463664D+04\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1950045260893D+13 R2 = 0.1861092767947D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7439714756371D+12 R2 = 0.7343376834788D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1950703966880D+13 R2 = 0.1659342836973D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1950845542309D+13 R2 = 0.7142728169352D+03\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7439997145674D+12 R2 = 0.6012697576620D+02\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1951067385833D+13 R2 = 0.1160810203445D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7451119873898D+12 R2 = 0.7273056408472D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4177458389214D+11 R2 = 0.1243594873911D-04\n", " ISTATE -5 - shortening step at time 1283.5513647545695 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1951585138952D+13 R2 = 0.3748441945214D+04\n", " ISTATE -5 - shortening step at time 61295.037034193017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7453829835203D+12 R2 = 0.6835447031891D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7454180198813D+12 R2 = 0.2439339747200D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4289028257843D+11 R2 = 0.1922400462118D+02\n", " ISTATE -5 - shortening step at time 1283.5513647545695 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7459041482621D+12 R2 = 0.9882867963364D+03\n", " ISTATE -5 - shortening step at time 22476.184176665251 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4370628209458D+11 R2 = 0.1730013227508D+04\n", " ISTATE -5 - shortening step at time 1283.5513647545695 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7496090104020D+12 R2 = 0.4090150088238D+03\n", " ISTATE -5 - shortening step at time 23604.561653863453 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4551966576465D+11 R2 = 0.4539261734698D-04\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8607864374361D+12 R2 = 0.9114853319569D+04\n", " ISTATE -5 - shortening step at time 25965.018382026403 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5621858571154D+09\n", " ISTATE -1: Reducing time step to 9.5968808026882249E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4558568224129D+11 R2 = 0.2903987519637D-05\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4565993121052D+11 R2 = 0.9087648645346D+03\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4571744103674D+11 R2 = 0.2155953635377D+02\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9636494667491D+12 R2 = 0.2614545233997D+04\n", " ISTATE -5 - shortening step at time 28561.520839283323 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135693592187D+13 R2 = 0.6741961410947D-05\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2136490862732D+13 R2 = 0.3236270594710D+04\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4628816963694D+11 R2 = 0.2404828011159D-04\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2136627943884D+13 R2 = 0.6252304801688D+03\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4631883939542D+11 R2 = 0.7612441175734D+02\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2136883345844D+13 R2 = 0.1838768946019D+04\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9966013416576D+12 R2 = 0.2737140556567D+03\n", " ISTATE -5 - shortening step at time 31417.673604171378 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4645888704765D+11 R2 = 0.2534414309361D+03\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2138510431086D+13 R2 = 0.4425178215940D+04\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4666918408417D+11 R2 = 0.6126001928747D+03\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1095628060372D+13 R2 = 0.3442345693282D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096141976356D+13 R2 = 0.6991118333953D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096211410731D+13 R2 = 0.3864973467867D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2141344009281D+13 R2 = 0.3057684822017D-05\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4676749089683D+11 R2 = 0.1474206257849D-04\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096287605540D+13 R2 = 0.2615941096542D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2141466094414D+13 R2 = 0.7014714008594D+01\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096310248105D+13 R2 = 0.2148702675378D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096774251397D+13 R2 = 0.9353648292214D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096801827294D+13 R2 = 0.2009449058356D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4733751764488D+11 R2 = 0.4049633656775D-05\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096905152260D+13 R2 = 0.3064237120879D+03\n", " ISTATE -5 - shortening step at time 34559.441713644228 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2141655567565D+13 R2 = 0.2818622453065D-04\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2141823123215D+13 R2 = 0.1234562084359D+04\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2149155957201D+13 R2 = 0.5649236704285D+04\n", " ISTATE -5 - shortening step at time 67424.542198999887 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1201832261609D+13 R2 = 0.1801642900024D-05\n", " ISTATE -5 - shortening step at time 38015.386708969949 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1332280964005D+13 R2 = 0.1270528095041D+04\n", " ISTATE -5 - shortening step at time 41816.926286224385 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1333110430450D+13 R2 = 0.9867335619817D+03\n", " ISTATE -5 - shortening step at time 41816.926286224385 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1335250361335D+13 R2 = 0.2989240648991D+04\n", " ISTATE -5 - shortening step at time 41816.926286224385 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7682878737706D+11 R2 = 0.4039615940564D-05\n", " ISTATE -5 - shortening step at time 2412.5808165911344 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1336709144257D+13 R2 = 0.7641552418640D+03\n", " ISTATE -5 - shortening step at time 41816.926286224385 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 4 out of 9 | elapsed: 1.5min remaining: 1.9min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8254921602193D+11 R2 = 0.2887929921328D-04\n", " ISTATE -5 - shortening step at time 2412.5808165911344 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1455947552812D+13 R2 = 0.5076033735275D+03\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456015622456D+13 R2 = 0.5744539290544D+03\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456473036544D+13 R2 = 0.5372200938646D+03\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456573806115D+13 R2 = 0.5811079316906D+03\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456590139940D+13 R2 = 0.2490126472779D+03\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8461775633496D+11 R2 = 0.1335669980358D-05\n", " ISTATE -5 - shortening step at time 2653.8389557706569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456922361373D+13 R2 = 0.1142096131627D+04\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456926512892D+13 R2 = 0.3058209499512D-06\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8546355455308D+11 R2 = 0.2382385850809D-07\n", " ISTATE -5 - shortening step at time 2653.8389557706569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456981032705D+13 R2 = 0.1235658200494D+03\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8702547985746D+11 R2 = 0.7296615185151D+03\n", " ISTATE -5 - shortening step at time 2653.8389557706569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8712060657838D+11 R2 = 0.4959050777960D+03\n", " ISTATE -5 - shortening step at time 2653.8389557706569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456994659768D+13 R2 = 0.1298361735291D-05\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8723214517682D+11 R2 = 0.2811019597553D-04\n", " ISTATE -5 - shortening step at time 2653.8389557706569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8736938277812D+11 R2 = 0.4081603289470D+02\n", " ISTATE -5 - shortening step at time 2653.8389557706569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1456999023384D+13 R2 = 0.5781261277148D-05\n", " ISTATE -5 - shortening step at time 45998.619911840040 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1458597458689D+13 R2 = 0.3030681659485D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1458897527716D+13 R2 = 0.6991310366617D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459208405516D+13 R2 = 0.3059469619096D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9276296453578D+11 R2 = 0.4875468468778D-04\n", " ISTATE -5 - shortening step at time 2919.2229146201739 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459370726528D+13 R2 = 0.6975792909346D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459423116357D+13 R2 = 0.5112216266622D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459431238908D+13 R2 = 0.1436950308168D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459615582493D+13 R2 = 0.6299380510116D+03\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459946903513D+13 R2 = 0.1493891366248D+04\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9337013599527D+11 R2 = 0.1546354325109D-04\n", " ISTATE -5 - shortening step at time 2919.2229146201739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9922622260993D+11 R2 = 0.1626287629619D+04\n", " ISTATE -5 - shortening step at time 2919.2229146201739 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459951414493D+13 R2 = 0.3708989870620D-06\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1459967550312D+13 R2 = 0.9196271087902D-05\n", " ISTATE -5 - shortening step at time 46107.564031130198 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1018468730138D+12 R2 = 0.5723683869071D-06\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1461737381636D+13 R2 = 0.2465509712121D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1019802882339D+12 R2 = 0.4523719174227D-04\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1461825599565D+13 R2 = 0.1318932363130D-04\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1022873001844D+12 R2 = 0.3754146625154D+03\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1461831895092D+13 R2 = 0.2057336041798D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1031825701530D+12 R2 = 0.1215376774929D+04\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1461838268316D+13 R2 = 0.1940859667402D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1032245661788D+12 R2 = 0.1941637285413D+03\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1462337256724D+13 R2 = 0.6760549509903D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1462341865400D+13 R2 = 0.1167681964833D-04\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1032803434724D+12 R2 = 0.2446293909760D-04\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1062074702746D+12 R2 = 0.1932898331287D+04\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1063637070762D+12 R2 = 0.7729671041634D+03\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1476792050063D+13 R2 = 0.1346015600566D+04\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1064632823374D+12 R2 = 0.3353642401729D+03\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1477110338282D+13 R2 = 0.7361345930181D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1477137099869D+13 R2 = 0.3475872683254D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1477258415976D+13 R2 = 0.3607095524788D+03\n", " ISTATE -5 - shortening step at time 46201.504756696049 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1479149208055D+13 R2 = 0.3798933263834D+03\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1066082634532D+12 R2 = 0.1138548200468D-04\n", " ISTATE -5 - shortening step at time 3211.1452756818894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1479159779337D+13 R2 = 0.2457632211111D+03\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5622758431120D+09\n", " ISTATE -1: Reducing time step to 9.5684042210484072E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480194340115D+13 R2 = 0.1354305943573D+04\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480206506057D+13 R2 = 0.3991714353571D+03\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480232286567D+13 R2 = 0.3516903691998D+03\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480236486292D+13 R2 = 0.1971833541563D-05\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480244898880D+13 R2 = 0.2221428972898D+02\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480446209751D+13 R2 = 0.6690880015745D+03\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1429668204576D+12 R2 = 0.1274611012902D-05\n", " ISTATE -5 - shortening step at time 4490.3673380621995 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480460393322D+13 R2 = 0.4886355382375D-05\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1480486668027D+13 R2 = 0.2934007569729D+03\n", " ISTATE -5 - shortening step at time 46748.684049874260 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1564792175310D+12 R2 = 0.1102470622149D-05\n", " ISTATE -5 - shortening step at time 4939.4041789271196 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482446652715D+13 R2 = 0.2254272840553D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482518468053D+13 R2 = 0.4905158940316D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482525548082D+13 R2 = 0.2347249592095D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482633124774D+13 R2 = 0.7238644243936D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482850849368D+13 R2 = 0.6712527857960D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2084662001757D+12 R2 = 0.1265054793022D+03\n", " ISTATE -5 - shortening step at time 6574.3473896374035 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482856820416D+13 R2 = 0.2640775133854D-05\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482862389125D+13 R2 = 0.6789360533423D-06\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2559196084396D+12 R2 = 0.9527958328865D-05\n", " ISTATE -5 - shortening step at time 7954.9606862995061 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482870044214D+13 R2 = 0.2664056591373D-05\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482891704564D+13 R2 = 0.2237265321224D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2767117841042D+12 R2 = 0.4689410849564D+02\n", " ISTATE -5 - shortening step at time 8750.4569445904999 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1484409729690D+13 R2 = 0.9662740321859D+03\n", " ISTATE -5 - shortening step at time 46850.843924904548 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1489635435223D+13 R2 = 0.2490182376403D+04\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3028629192748D+12 R2 = 0.4329348742453D-05\n", " ISTATE -5 - shortening step at time 8750.4569445904999 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1489642226351D+13 R2 = 0.1095485652122D-05\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3037570547154D+12 R2 = 0.8474621184478D+03\n", " ISTATE -5 - shortening step at time 8750.4569445904999 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1489665810257D+13 R2 = 0.2107469499903D+03\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3042790790410D+12 R2 = 0.1478395392061D+01\n", " ISTATE -5 - shortening step at time 9625.5028476767002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1489672353673D+13 R2 = 0.3091331048365D-05\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1489824076613D+13 R2 = 0.1852954427950D+03\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1490934261309D+13 R2 = 0.1933543597098D+04\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3346713188169D+12 R2 = 0.3650808711779D-06\n", " ISTATE -5 - shortening step at time 10588.053361934242 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1490957629182D+13 R2 = 0.3275953621003D+03\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1490984204967D+13 R2 = 0.4918700706858D+03\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1494982451318D+13 R2 = 0.2437963128134D+04\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1498501488506D+13 R2 = 0.2073171174028D+04\n", " ISTATE -5 - shortening step at time 46974.991445891363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1501107009464D+13 R2 = 0.1271067830749D+03\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4210342284161D+12 R2 = 0.1577460571616D+04\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1514915802124D+13 R2 = 0.8068555030592D+04\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4218802257250D+12 R2 = 0.3333243781240D-04\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4219725691460D+12 R2 = 0.3389180414165D+03\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1516699277223D+13 R2 = 0.1273635087424D+04\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4240942936242D+12 R2 = 0.3240374128649D+03\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1516725844026D+13 R2 = 0.5285135912325D+03\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1516729995423D+13 R2 = 0.5699530628931D+01\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4249309471017D+12 R2 = 0.4400678848068D+03\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1519746680784D+13 R2 = 0.3398185654030D+04\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1519807891809D+13 R2 = 0.5991071826652D+03\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1519834476280D+13 R2 = 0.2493684189699D+03\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4268230443466D+12 R2 = 0.1346833368953D+03\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1519902561514D+13 R2 = 0.5085925797690D+03\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1519929134158D+13 R2 = 0.3388809577738D+03\n", " ISTATE -5 - shortening step at time 47420.933180582470 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1674449661493D+13 R2 = 0.4064801847640D+03\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4448924760898D+12 R2 = 0.3829884487077D+03\n", " ISTATE -5 - shortening step at time 12811.545123305941 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1675947623693D+13 R2 = 0.4538963456621D+03\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1687591319617D+13 R2 = 0.6951941326439D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1690216784769D+13 R2 = 0.1738890774720D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1691176264150D+13 R2 = 0.1381544906341D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1692082094833D+13 R2 = 0.1310538169112D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1694284159363D+13 R2 = 0.4954818933411D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1694377263631D+13 R2 = 0.4556911725346D+03\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1695530521353D+13 R2 = 0.1133185346958D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1696349403679D+13 R2 = 0.1136800643435D+04\n", " ISTATE -5 - shortening step at time 52908.926702917139 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1698444550233D+13 R2 = 0.1558286251368D-06\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5623576457105D+09\n", " ISTATE -1: Reducing time step to 9.5425173224235368E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4899656263993D+12 R2 = 0.9437038253798D+01\n", " ISTATE -5 - shortening step at time 15501.970271192482 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1699428385784D+13 R2 = 0.4220811029826D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1699443124505D+13 R2 = 0.1803431915887D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1700317190276D+13 R2 = 0.9311935217119D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1700342777803D+13 R2 = 0.4432013741898D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5047618554633D+12 R2 = 0.9508717252325D+02\n", " ISTATE -5 - shortening step at time 15501.970271192482 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1701798065355D+13 R2 = 0.3121314120161D+04\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1702815886596D+13 R2 = 0.1824344097971D+04\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5147106931248D+12 R2 = 0.1273389040308D+04\n", " ISTATE -5 - shortening step at time 15501.970271192482 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1702841490985D+13 R2 = 0.4439792780512D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1702867092928D+13 R2 = 0.4726589462704D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1702892691209D+13 R2 = 0.4244575891339D+03\n", " ISTATE -5 - shortening step at time 53681.943154397079 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704441133719D+13 R2 = 0.1460405273929D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704624945396D+13 R2 = 0.4323023499726D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704636666535D+13 R2 = 0.2880923839316D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704706811439D+13 R2 = 0.4508628333577D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704751779010D+13 R2 = 0.4372021982209D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5389409635180D+12 R2 = 0.1765393032186D-06\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704795229000D+13 R2 = 0.1108758550492D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704917823482D+13 R2 = 0.3453888707609D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1704935963576D+13 R2 = 0.3071944283079D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1705720089337D+13 R2 = 0.1311622478266D+04\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1705815129163D+13 R2 = 0.4456791832304D+03\n", " ISTATE -5 - shortening step at time 53889.009215461905 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5626137630330D+12 R2 = 0.4334115359337D-06\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1708202932924D+13 R2 = 0.3103845410259D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1708503485391D+13 R2 = 0.8619604822309D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5636116413518D+12 R2 = 0.2355926878164D+03\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1708697166454D+13 R2 = 0.9998646067368D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5642980688560D+12 R2 = 0.4977383225450D+03\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1709484539528D+13 R2 = 0.6377990697954D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1709916433718D+13 R2 = 0.9513090136807D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5648006076862D+12 R2 = 0.2085064257104D+03\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1709931213708D+13 R2 = 0.2066297651154D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5655570728903D+12 R2 = 0.2347093321589D+03\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1709956818613D+13 R2 = 0.4646442388978D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1709982422912D+13 R2 = 0.3370826705238D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1711360654922D+13 R2 = 0.7669692163257D+03\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5671343391989D+12 R2 = 0.1036244963819D+04\n", " ISTATE -5 - shortening step at time 17052.167667907503 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5927888717257D+12 R2 = 0.9497788486446D-06\n", " ISTATE -5 - shortening step at time 18757.384841253606 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6520606174466D+12 R2 = 0.1666743680029D-06\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6529219250061D+12 R2 = 0.8038389169528D-05\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6529702343828D+12 R2 = 0.2542356424841D+03\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1728967718240D+13 R2 = 0.2043879012437D+04\n", " ISTATE -5 - shortening step at time 53981.491429215937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4700433387328D+11 R2 = 0.2135338417467D-05\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1730980020886D+13 R2 = 0.1823717103014D+03\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4715460944379D+11 R2 = 0.1224206207059D+04\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6601663831472D+12 R2 = 0.6846445796078D+03\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1732720826168D+13 R2 = 0.1741578359553D+04\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6606830039496D+12 R2 = 0.1176500625285D+03\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1732788797981D+13 R2 = 0.5355317777098D+03\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1733054861790D+13 R2 = 0.4151212925025D+03\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4769935438059D+11 R2 = 0.6303337467496D-05\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1734416623552D+13 R2 = 0.3011982686126D+04\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6611864120504D+12 R2 = 0.6617051544459D+02\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4774014561168D+11 R2 = 0.5396756840570D+02\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6626091596153D+12 R2 = 0.3497454470680D+03\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6631726380844D+12 R2 = 0.6514860855940D+03\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4778670860619D+11 R2 = 0.8520191827514D-05\n", " ISTATE -5 - shortening step at time 1411.9065318322757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6718907296149D+12 R2 = 0.2810836281547D-05\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6731803600560D+12 R2 = 0.1043548129445D+03\n", " ISTATE -5 - shortening step at time 20633.123772589872 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6743383826420D+12 R2 = 0.4135394129782D-07\n", " ISTATE -5 - shortening step at time 21303.175951140478 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5624303523180D+09\n", " ISTATE -1: Reducing time step to 9.5195089019642964E-002 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7246543359066D+11 R2 = 0.1523722092240D-05\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7253047608305D+11 R2 = 0.2706065137827D-04\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6891374130247D+12 R2 = 0.2133166428057D+03\n", " ISTATE -5 - shortening step at time 21303.175951140478 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7398491644596D+11 R2 = 0.6445310243026D-05\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7403055053747D+11 R2 = 0.2144336716225D+03\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7409917241524D+11 R2 = 0.4011941522276D+03\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6913063349309D+12 R2 = 0.5818889013667D-05\n", " ISTATE -5 - shortening step at time 21303.175951140478 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1760262042829D+13 R2 = 0.1658508526973D+04\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1760268839303D+13 R2 = 0.2333383161955D+03\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7477568793209D+11 R2 = 0.6301884010385D-05\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7482227078097D+11 R2 = 0.1346305374970D+03\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7157202450516D+12 R2 = 0.1475211952669D-04\n", " ISTATE -5 - shortening step at time 21303.175951140478 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7486537213872D+11 R2 = 0.7845713504347D-05\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7495159453502D+11 R2 = 0.6465550891284D+03\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7290000716048D+12 R2 = 0.1950881616658D+03\n", " ISTATE -5 - shortening step at time 21303.175951140478 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7505385469295D+11 R2 = 0.2680252613335D+02\n", " ISTATE -5 - shortening step at time 2273.8898350073569 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7293766349714D+12 R2 = 0.1634776600921D-05\n", " ISTATE -5 - shortening step at time 21303.175951140478 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8354146833861D+11 R2 = 0.1028554737520D-06\n", " ISTATE -5 - shortening step at time 2612.6342389767215 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8373805759679D+11 R2 = 0.4825921821506D+03\n", " ISTATE -5 - shortening step at time 2612.6342389767215 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7543980625788D+12 R2 = 0.2039306826717D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1770414525655D+13 R2 = 0.1315914219406D+03\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1770562518866D+13 R2 = 0.4668135022007D+03\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7547640016067D+12 R2 = 0.3407988036642D-05\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1782132057443D+13 R2 = 0.3780423417762D+04\n", " ISTATE -5 - shortening step at time 54714.168298721168 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1784145259335D+13 R2 = 0.2495095779721D+03\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1784151370016D+13 R2 = 0.8092557406256D+02\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1784153915618D+13 R2 = 0.6400290044128D+01\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1784158886987D+13 R2 = 0.1706783497649D+03\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1784163856471D+13 R2 = 0.1706136436143D+03\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7610996808474D+12 R2 = 0.6231388368499D-05\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1785014852863D+13 R2 = 0.1144420270833D+04\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1004162346646D+12 R2 = 0.7197074902261D-07\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1785039078556D+13 R2 = 0.3749073966191D+03\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1785046493317D+13 R2 = 0.1869822725836D+02\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1004662360308D+12 R2 = 0.8373905612368D-05\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1785052303766D+13 R2 = 0.4786843259105D-05\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1042144064774D+12 R2 = 0.9464785982023D+03\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7738911270694D+12 R2 = 0.1395021373571D-04\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1785201252554D+13 R2 = 0.4724215761621D+03\n", " ISTATE -5 - shortening step at time 56396.584096286526 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1045314477688D+12 R2 = 0.6745496327676D+03\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1052994895546D+12 R2 = 0.9081550376955D+03\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1061379109884D+12 R2 = 0.8238977832964D+03\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1063640797231D+12 R2 = 0.1175724317310D+03\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1787098481048D+13 R2 = 0.8633042799617D-07\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1065142666198D+12 R2 = 0.6164063014324D+03\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7819933635282D+12 R2 = 0.1933696574622D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1787118607031D+13 R2 = 0.2487296032318D+03\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1787122201249D+13 R2 = 0.1057110251146D+03\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7825825956755D+12 R2 = 0.1764148026830D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1065858020187D+12 R2 = 0.7283446012920D-05\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1066363658654D+12 R2 = 0.5720875185256D+02\n", " ISTATE -5 - shortening step at time 3161.2875661999537 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7883338211855D+12 R2 = 0.1879390370283D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1872952029029D+13 R2 = 0.1706681715038D+05\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7902293256716D+12 R2 = 0.1848730387356D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1069435073217D+12 R2 = 0.9794861358001D-05\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7906491497198D+12 R2 = 0.5500429593197D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1872956611641D+13 R2 = 0.1192407283005D-05\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1872977003162D+13 R2 = 0.2198527131189D+03\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7926735536900D+12 R2 = 0.6489901719234D+03\n", " ISTATE -5 - shortening step at time 23433.494054161820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1071395660749D+12 R2 = 0.3476987191390D-04\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1874979706840D+13 R2 = 0.1330853328672D+04\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1875005342566D+13 R2 = 0.2836516075456D+03\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1875024974428D+13 R2 = 0.2181215778010D+03\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1096911758505D+12 R2 = 0.8349489987987D+03\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1875039050040D+13 R2 = 0.2150098862130D+03\n", " ISTATE -5 - shortening step at time 56493.710523857648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1109582381246D+12 R2 = 0.5332584040977D+03\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877127874347D+13 R2 = 0.2700859685577D+03\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1116703721360D+12 R2 = 0.2205944923260D+04\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877131196361D+13 R2 = 0.8473358620777D+01\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1117718379301D+12 R2 = 0.6592258078360D+03\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8111854793459D+12 R2 = 0.5911480674730D-05\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1118247832384D+12 R2 = 0.2488182988382D+03\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877133878492D+13 R2 = 0.3458157303216D-04\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877253168046D+13 R2 = 0.6057263813113D+03\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1118927135678D+12 R2 = 0.8461988661541D-04\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1121255775082D+12 R2 = 0.1392027192183D+04\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8129795810940D+12 R2 = 0.1340631661462D-04\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1122546991860D+12 R2 = 0.3428807009299D+03\n", " ISTATE -5 - shortening step at time 3374.5685400457951 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8130725412092D+12 R2 = 0.2112952753468D+03\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877284332289D+13 R2 = 0.1871967901804D-05\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877307439012D+13 R2 = 0.4556729467954D+03\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8149089936706D+12 R2 = 0.2012062469661D+03\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1125384816215D+12 R2 = 0.3163189195109D-05\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877310138526D+13 R2 = 0.5662963514575D-06\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8150856807245D+12 R2 = 0.1384173718266D+02\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8152058073847D+12 R2 = 0.9801702012073D+02\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5624983116549D+09\n", " ISTATE -1: Reducing time step to 9.4980027823796012E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877312831304D+13 R2 = 0.1166933499417D-04\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1127138144812D+12 R2 = 0.4793324244777D-05\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877336171072D+13 R2 = 0.2763282240184D+03\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8221580122463D+12 R2 = 0.2467549371234D+03\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1127528717529D+12 R2 = 0.1612384245053D-04\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1877549825795D+13 R2 = 0.1837946616123D-05\n", " ISTATE -5 - shortening step at time 59336.678798731889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878716983697D+13 R2 = 0.1795512770943D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8422891417450D+12 R2 = 0.1973239538813D+03\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1127636034527D+12 R2 = 0.1059909052783D-04\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878734644319D+13 R2 = 0.2876589911220D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878739338427D+13 R2 = 0.1110874206437D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8428117860356D+12 R2 = 0.1649232213201D+03\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878799309959D+13 R2 = 0.3246779057645D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8430994442019D+12 R2 = 0.2130543738554D+03\n", " ISTATE -5 - shortening step at time 25084.606129430595 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878935298901D+13 R2 = 0.1829962444435D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1128248102747D+12 R2 = 0.1678519196803D-04\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878940277397D+13 R2 = 0.1709230277296D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8431473153766D+12 R2 = 0.6955274082009D-06\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878943705560D+13 R2 = 0.3175854400788D-05\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1149233634784D+12 R2 = 0.9039639003883D-05\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878961229274D+13 R2 = 0.6016037574622D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8455553632179D+12 R2 = 0.4227109874812D+03\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1878979182890D+13 R2 = 0.1727554368250D+03\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1887638956234D+13 R2 = 0.5891446358863D+04\n", " ISTATE -5 - shortening step at time 59416.133727703578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1161253564323D+12 R2 = 0.9075016092698D-06\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889087176289D+13 R2 = 0.2007471175902D+03\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1162106273976D+12 R2 = 0.2010254531171D+03\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8456918805560D+12 R2 = 0.5518280881271D-05\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1221917528887D+12 R2 = 0.2081644634526D+03\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8484281424679D+12 R2 = 0.1110128166467D+03\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889094763868D+13 R2 = 0.2084230340737D-05\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889511043735D+13 R2 = 0.3220115848349D+03\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889547081819D+13 R2 = 0.4150186473759D+03\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1222679293594D+12 R2 = 0.5621381662979D-05\n", " ISTATE -5 - shortening step at time 3552.3638982907432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889644242821D+13 R2 = 0.1245304609284D+03\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889649163623D+13 R2 = 0.1330894920246D+03\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1240562133654D+12 R2 = 0.2979564287537D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8511620215001D+12 R2 = 0.2632933140679D-05\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889781066254D+13 R2 = 0.4216681003193D+03\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889822005209D+13 R2 = 0.1033327613444D+02\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889827761524D+13 R2 = 0.3116616327574D+01\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1261537599030D+12 R2 = 0.3109793909508D-05\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8529685688553D+12 R2 = 0.1779595210462D+03\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1262672359780D+12 R2 = 0.3263620069251D-03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1889832249426D+13 R2 = 0.4326835232013D-06\n", " ISTATE -5 - shortening step at time 59735.410007407670 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1282077843406D+12 R2 = 0.2830448325214D-05\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1282687817430D+12 R2 = 0.2233563007305D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1943106943761D+13 R2 = 0.9060644312690D+03\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1283191048934D+12 R2 = 0.3483235685766D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8842080992759D+12 R2 = 0.4850385375929D+03\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1283854802826D+12 R2 = 0.9013959016136D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1285451231895D+12 R2 = 0.1630675944870D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1285758483469D+12 R2 = 0.2177369037583D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1286249296609D+12 R2 = 0.4339179903348D+03\n", " ISTATE -5 - shortening step at time 3869.2382708685145 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9116742525080D+12 R2 = 0.1245096696948D+03\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1309720488695D+12 R2 = 0.2659124501437D-05\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952883007740D+13 R2 = 0.2480300461410D+04\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9175432719794D+12 R2 = 0.6776263044992D+03\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1311113042437D+12 R2 = 0.7422662356597D+03\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9175828834972D+12 R2 = 0.4347238752164D+02\n", " ISTATE -5 - shortening step at time 26680.362158288026 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1312277382249D+12 R2 = 0.8107366105589D+02\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952886389451D+13 R2 = 0.1172131575989D-05\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952911581993D+13 R2 = 0.2863290625278D+03\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1329048981009D+12 R2 = 0.1314239839238D-05\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952936708519D+13 R2 = 0.2668110790394D+03\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1330353857675D+12 R2 = 0.2147841888395D+03\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952959973529D+13 R2 = 0.3036570806383D+03\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952968154827D+13 R2 = 0.2160351324237D+02\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1331890846371D+12 R2 = 0.1590519794805D+03\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1333980560249D+12 R2 = 0.5537375240505D+03\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1952976926886D+13 R2 = 0.1258092647761D-04\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1953047434184D+13 R2 = 0.8611274434550D+03\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1353735251055D+12 R2 = 0.3985710423572D-05\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1354072787496D+12 R2 = 0.1301221768135D+03\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1953052348497D+13 R2 = 0.1918973842211D-05\n", " ISTATE -5 - shortening step at time 59804.818019819097 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1354751412668D+12 R2 = 0.2863476171922D+03\n", " ISTATE -5 - shortening step at time 4070.4091664854468 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1954748700807D+13 R2 = 0.1873487246729D+03\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1954790946261D+13 R2 = 0.5480245390914D+03\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1009391317410D+13 R2 = 0.4658488160230D-07\n", " ISTATE -5 - shortening step at time 31941.177016577421 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1392361755978D+12 R2 = 0.7564684900106D+03\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1954794043279D+13 R2 = 0.7784583244776D+02\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1954833080075D+13 R2 = 0.3876600807840D+03\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1404508818618D+12 R2 = 0.4980561354968D+03\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1954836875406D+13 R2 = 0.6220242329972D+02\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1957177904827D+13 R2 = 0.2018479044203D+04\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1957202705566D+13 R2 = 0.2366725716023D+03\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1405082363893D+12 R2 = 0.1013271703886D-03\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1406076589176D+12 R2 = 0.2212362712556D+03\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1116285537532D+13 R2 = 0.5668396802264D+02\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1957209856209D+13 R2 = 0.3092495401732D-05\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1957234645724D+13 R2 = 0.2872332705883D+03\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1116502765216D+13 R2 = 0.8625929690405D+02\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1409333066013D+12 R2 = 0.6187878106556D-04\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1409858314090D+12 R2 = 0.2447767365334D+03\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1957238795120D+13 R2 = 0.4048630539133D-06\n", " ISTATE -5 - shortening step at time 61805.454066372433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958298837457D+13 R2 = 0.1492455364727D+03\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1119248538339D+13 R2 = 0.1516125129698D+02\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958329198518D+13 R2 = 0.2407562878891D+03\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1410385807102D+12 R2 = 0.4405531497319D-05\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958408342073D+13 R2 = 0.1570270039236D+02\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958416626572D+13 R2 = 0.8884644978361D+02\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958472355597D+13 R2 = 0.4203342513445D+03\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1411418726467D+12 R2 = 0.1278804375332D-04\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958492519691D+13 R2 = 0.2106388236245D+03\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958497930513D+13 R2 = 0.8941376379185D+02\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958507692990D+13 R2 = 0.1343157587903D+03\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5625615811999D+09\n", " ISTATE -1: Reducing time step to 9.4779807741900160E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958518767768D+13 R2 = 0.2136006418553D+02\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1419930212734D+12 R2 = 0.4444831912991D-05\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1958618658539D+13 R2 = 0.6358834647804D+03\n", " ISTATE -5 - shortening step at time 61937.936554441862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1424820371965D+12 R2 = 0.2553850143631D+03\n", " ISTATE -5 - shortening step at time 4287.1880147722632 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1959662480043D+13 R2 = 0.1925865643557D+03\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1959667091417D+13 R2 = 0.1203854822658D+03\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1130888267725D+13 R2 = 0.3898814426660D-03\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1960257337677D+13 R2 = 0.2524697302612D+03\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1961801264916D+13 R2 = 0.7936188864614D+03\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1446685670707D+12 R2 = 0.1636531426343D-04\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1973940424394D+13 R2 = 0.6927648338804D+04\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1448332696552D+12 R2 = 0.2120462454344D+03\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1973956301261D+13 R2 = 0.4192991482007D+02\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1137312359910D+13 R2 = 0.1786639193719D+03\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1448926772694D+12 R2 = 0.3669170985241D-04\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1973979495148D+13 R2 = 0.7217063441038D-05\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1142966338730D+13 R2 = 0.3173085403324D+02\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1449375592339D+12 R2 = 0.2036727302884D-02\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1144640584979D+13 R2 = 0.1920724493860D+03\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1973986736792D+13 R2 = 0.1181776337239D-05\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1974011540169D+13 R2 = 0.2364728554042D+03\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1974398404367D+13 R2 = 0.2467671722371D+03\n", " ISTATE -5 - shortening step at time 61981.603118330328 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1454741618007D+12 R2 = 0.2626253265445D-05\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2011713393547D+13 R2 = 0.1155549526086D+04\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1146624798164D+13 R2 = 0.4503980202861D-05\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1476505444053D+12 R2 = 0.2971282714730D-04\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1146892700606D+13 R2 = 0.1962600800686D+03\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2015003944986D+13 R2 = 0.3507363872575D+03\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2015039033504D+13 R2 = 0.2111252896336D+03\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019074693061D+13 R2 = 0.3342334512449D+04\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1481494989713D+12 R2 = 0.3573604866602D-05\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1154547382752D+13 R2 = 0.1667632154242D+03\n", " ISTATE -5 - shortening step at time 35135.295479772169 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1482134352009D+12 R2 = 0.2214610461354D+03\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019079567663D+13 R2 = 0.6146160612854D-05\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019104427687D+13 R2 = 0.2801388945310D+03\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1163380735766D+13 R2 = 0.1590532780313D+04\n", " ISTATE -5 - shortening step at time 36536.309580760266 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1491920703326D+12 R2 = 0.6336142422432D-05\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1492561748900D+12 R2 = 0.3145859262691D+02\n", " ISTATE -5 - shortening step at time 4508.9252277388750 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019108581506D+13 R2 = 0.4517573260911D-06\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019126650390D+13 R2 = 0.2048544139214D+03\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1270037615654D+13 R2 = 0.1316944611747D-06\n", " ISTATE -5 - shortening step at time 40189.941409929794 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1497189185962D+12 R2 = 0.2623781045407D-05\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019129335046D+13 R2 = 0.1184144617746D-05\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1499267013420D+12 R2 = 0.3228678257111D+03\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1500007077955D+12 R2 = 0.2956117275980D+03\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2019136034646D+13 R2 = 0.2890977820728D-05\n", " ISTATE -5 - shortening step at time 62480.962163510390 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1284556400060D+13 R2 = 0.5526203537871D+03\n", " ISTATE -5 - shortening step at time 40189.941409929794 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1501094353072D+12 R2 = 0.1883518672237D-04\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1501788590606D+12 R2 = 0.4019614825969D+02\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2021873296040D+13 R2 = 0.1251625441338D+04\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2021912840579D+13 R2 = 0.4907715606251D+03\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2021945131779D+13 R2 = 0.3011431369946D+02\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2021958580166D+13 R2 = 0.2098536064077D+03\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1502509757730D+12 R2 = 0.2383379267781D-04\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2021964460437D+13 R2 = 0.7443335487055D-05\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1507475100410D+12 R2 = 0.4469896442896D-05\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2021968334058D+13 R2 = 0.7286933385563D-06\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2022069383613D+13 R2 = 0.6350468068275D+03\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1545065470617D+12 R2 = 0.1366066139645D-05\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2022922767686D+13 R2 = 0.2777537841113D+04\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1547316559346D+12 R2 = 0.9838439743245D-05\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2022932989313D+13 R2 = 0.6943780743970D-05\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1551721089241D+12 R2 = 0.3611290637269D+03\n", " ISTATE -5 - shortening step at time 4723.2966737341894 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2022957580086D+13 R2 = 0.3835388668172D+03\n", " ISTATE -5 - shortening step at time 63896.709957142521 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1553965846401D+12 R2 = 0.5825711618421D+02\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1580799612786D+12 R2 = 0.3986718474365D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1581430911615D+12 R2 = 0.3687525603572D+02\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2251848685750D+13 R2 = 0.3462973420665D+04\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1584585403176D+12 R2 = 0.3433528215667D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1584864325245D+12 R2 = 0.8173738541657D+02\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1585114721650D+12 R2 = 0.1273768107100D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2264033614406D+13 R2 = 0.7944865581340D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1593765936744D+12 R2 = 0.3345740475900D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2264057884615D+13 R2 = 0.3203664326959D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1594342321126D+12 R2 = 0.2208921797772D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2264082152612D+13 R2 = 0.3348371465469D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1597255050870D+12 R2 = 0.4123386731167D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1598158217228D+12 R2 = 0.3118355904198D+03\n", " ISTATE -5 - shortening step at time 4910.5097760790604 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2270543476602D+13 R2 = 0.6212956818432D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2272053573998D+13 R2 = 0.1238556182807D+04\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1625091987360D+12 R2 = 0.1238586848858D-04\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2272073968263D+13 R2 = 0.3885678633889D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1625830434400D+12 R2 = 0.3786062210958D+03\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2272098245647D+13 R2 = 0.4276770933168D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2272104890542D+13 R2 = 0.1447937359164D-05\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1627870722979D+12 R2 = 0.7782598046450D-04\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2272129164620D+13 R2 = 0.3603543189716D+03\n", " ISTATE -5 - shortening step at time 70419.410959679662 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1629962188299D+12 R2 = 0.3826417361402D+03\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1631169252981D+12 R2 = 0.7820064505201D+03\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2274454858818D+13 R2 = 0.8851706930439D+03\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5626222500089D+09\n", " ISTATE -1: Reducing time step to 9.4587817837001306E-002 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1694983958035D+12 R2 = 0.3858398752479D+03\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2383354682283D+13 R2 = 0.5009934710239D+04\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1711876402107D+12 R2 = 0.4526347285646D+03\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2392999789892D+13 R2 = 0.1103748877789D+04\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393053266177D+13 R2 = 0.7600420623326D+03\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1715461445114D+12 R2 = 0.1327788265898D-05\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393161892932D+13 R2 = 0.1443358123769D+04\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1716177730764D+12 R2 = 0.1936491935169D+03\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393695668424D+13 R2 = 0.4002895567627D+03\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1718749372885D+12 R2 = 0.3346219585501D-04\n", " ISTATE -5 - shortening step at time 5057.4627127478770 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393699261450D+13 R2 = 0.2307402421570D-05\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393922894998D+13 R2 = 0.3947324879759D+03\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393938758787D+13 R2 = 0.1829151187821D+03\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2393943613957D+13 R2 = 0.1023401850075D+03\n", " ISTATE -5 - shortening step at time 71902.821665179566 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1725547508622D+12 R2 = 0.1014025426469D-05\n", " ISTATE -5 - shortening step at time 5439.0802939401174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2395549633103D+13 R2 = 0.1404832984336D+03\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2395551904630D+13 R2 = 0.5611800999886D+01\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2395617357960D+13 R2 = 0.1004763770575D+04\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2395619268071D+13 R2 = 0.5899860979655D-06\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2081304476836D+12 R2 = 0.5789590156473D-05\n", " ISTATE -5 - shortening step at time 6581.2874409586602 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2398447213533D+13 R2 = 0.4723163605864D+03\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2082830346605D+12 R2 = 0.9320142467196D-04\n", " ISTATE -5 - shortening step at time 6581.2874409586602 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2398575328483D+13 R2 = 0.5440083440204D+03\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2398583096621D+13 R2 = 0.2051251535203D+02\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2398606996470D+13 R2 = 0.2017386935816D+03\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2398613090441D+13 R2 = 0.2847727096988D-05\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2398616918445D+13 R2 = 0.1166377189166D-05\n", " ISTATE -5 - shortening step at time 75757.709302447372 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400097671797D+13 R2 = 0.1090498234626D+03\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400114248884D+13 R2 = 0.2937331258605D+03\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400119792562D+13 R2 = 0.6383890834939D-06\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400122492297D+13 R2 = 0.1083462433224D-04\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400144214631D+13 R2 = 0.2795959207115D+03\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400146698580D+13 R2 = 0.5717564208052D-06\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2789498959584D+12 R2 = 0.1316800258202D+03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400150721352D+13 R2 = 0.7045766649213D-06\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2793548045150D+12 R2 = 0.1652207175138D-03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400162867728D+13 R2 = 0.1895365108606D+03\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400165042433D+13 R2 = 0.4674123439956D-06\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2795959674666D+12 R2 = 0.9382303346191D-05\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2796256950977D+12 R2 = 0.1415295715447D+03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2796586789004D+12 R2 = 0.5023174276460D+03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2400167176200D+13 R2 = 0.3230972636214D-06\n", " ISTATE -5 - shortening step at time 75905.598684980258 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2797537343231D+12 R2 = 0.1302627813484D+03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2797994671340D+12 R2 = 0.2967011273616D-04\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2799004168355D+12 R2 = 0.1650707680213D+03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2493893964497D+13 R2 = 0.1811566335318D-05\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2499263142703D+13 R2 = 0.6987706251131D+03\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2499287352698D+13 R2 = 0.3178501615603D+03\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2804006431015D+12 R2 = 0.1605162634348D-04\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2500247811427D+13 R2 = 0.1520105168121D+04\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2806087227413D+12 R2 = 0.1664100907187D+03\n", " ISTATE -5 - shortening step at time 8759.6941534997241 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2500253094432D+13 R2 = 0.1395212478925D+02\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2500269349854D+13 R2 = 0.2279715678796D+03\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2500285605336D+13 R2 = 0.2295994047511D+03\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2500301860879D+13 R2 = 0.2038176838958D+03\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2502106914702D+13 R2 = 0.2443396183423D+04\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2807479040393D+12 R2 = 0.2342502132840D-05\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2503885593105D+13 R2 = 0.7730757828883D+03\n", " ISTATE -5 - shortening step at time 75954.657474675827 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505188681104D+13 R2 = 0.2039184685725D+03\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2807708836124D+12 R2 = 0.1351248782111D-04\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505194349411D+13 R2 = 0.1505534517186D+03\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505199387420D+13 R2 = 0.1729662476553D+03\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505206252200D+13 R2 = 0.8850355385281D+02\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505257743579D+13 R2 = 0.1752770421669D+03\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505284798392D+13 R2 = 0.2725262805583D+03\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2809884429169D+12 R2 = 0.2338459601654D-05\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2507003642520D+13 R2 = 0.1700375721306D+03\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2508800211997D+13 R2 = 0.2112837529789D+04\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2812672079694D+12 R2 = 0.1843593442924D-05\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2508806189367D+13 R2 = 0.1808001505612D-05\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2508813898350D+13 R2 = 0.2035629320742D+02\n", " ISTATE -5 - shortening step at time 79236.885857758651 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5635123614060D+09\n", " ISTATE -1: Reducing time step to 0.11437306690330486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2816551550622D+12 R2 = 0.8576072425648D-06\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2510265587711D+13 R2 = 0.1096304715208D+03\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515610394620D+13 R2 = 0.1790238209621D+04\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515667367241D+13 R2 = 0.2438402971638D+03\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515832961459D+13 R2 = 0.3722217240954D+03\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2886701216810D+12 R2 = 0.6739461374582D-04\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515851186442D+13 R2 = 0.3419303547384D+02\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2887203286700D+12 R2 = 0.1697676797364D+03\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2887437419359D+12 R2 = 0.1384365723650D+03\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2887699780608D+12 R2 = 0.8950879365533D+02\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515856675051D+13 R2 = 0.1943656926776D-05\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515872992687D+13 R2 = 0.1765418519560D+03\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515877831460D+13 R2 = 0.1317945425564D+03\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2890211345733D+12 R2 = 0.6463905225308D-05\n", " ISTATE -5 - shortening step at time 8880.0228715598623 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3086900747922D+12 R2 = 0.2771762783825D+03\n", " ISTATE -5 - shortening step at time 9146.2384358653253 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515955074996D+13 R2 = 0.5255359081685D-06\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515971392989D+13 R2 = 0.3394184760535D+03\n", " ISTATE -5 - shortening step at time 79392.844884483275 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2596030782892D+13 R2 = 0.2366948831844D+04\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3111007685983D+12 R2 = 0.1304925901388D-04\n", " ISTATE -5 - shortening step at time 9146.2384358653253 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2596033185407D+13 R2 = 0.8244847095795D+02\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3164852140590D+12 R2 = 0.1828790232204D+03\n", " ISTATE -5 - shortening step at time 9146.2384358653253 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2633951899221D+13 R2 = 0.1788869676723D+04\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2633968657128D+13 R2 = 0.1765415095098D+03\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3180428612465D+12 R2 = 0.7663497089105D-05\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2633972719644D+13 R2 = 0.1839946638656D-05\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3184702957722D+12 R2 = 0.5498946162504D+02\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2633993412487D+13 R2 = 0.2060564069759D+03\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2634009854040D+13 R2 = 0.8176107950117D-05\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3193859481547D+12 R2 = 0.4629651424973D-05\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2634033986547D+13 R2 = 0.2375685606452D+03\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3195223093371D+12 R2 = 0.7834462520717D+03\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2634132472181D+13 R2 = 0.6031887546540D+03\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3245384299257D+12 R2 = 0.7948535074212D+03\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2634136546878D+13 R2 = 0.1252349353594D-05\n", " ISTATE -5 - shortening step at time 79619.347879391935 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3290978328900D+12 R2 = 0.4083206091686D-05\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2724539130411D+13 R2 = 0.1738723415299D+04\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2729644633261D+13 R2 = 0.6232767590191D+04\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3443017905043D+12 R2 = 0.2535886331724D+03\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2729822542122D+13 R2 = 0.1492320553156D+04\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3445443438352D+12 R2 = 0.2152289079840D+03\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2729846452320D+13 R2 = 0.2185541337695D+03\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2729866845659D+13 R2 = 0.5533958522959D+03\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2729890750482D+13 R2 = 0.3295464625351D+03\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2730216115598D+13 R2 = 0.4368064100218D+03\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3491723029983D+12 R2 = 0.2486627707167D+03\n", " ISTATE -5 - shortening step at time 10060.862497515174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2731527758120D+13 R2 = 0.2433743433497D+04\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2736810067475D+13 R2 = 0.4771320929529D+04\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3501870023244D+12 R2 = 0.8472138278464D-05\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2736815922721D+13 R2 = 0.2308660798841D-05\n", " ISTATE -5 - shortening step at time 83358.751483489570 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2758119522408D+13 R2 = 0.6581405426808D+04\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3523917614711D+12 R2 = 0.7283242861670D-05\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2758188856052D+13 R2 = 0.4624392272502D+03\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3526497771192D+12 R2 = 0.3708854480316D+03\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2758206097739D+13 R2 = 0.2166901963966D+03\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2758223339499D+13 R2 = 0.2116226832569D+03\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2758230426480D+13 R2 = 0.1022872746418D+03\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3606552927677D+12 R2 = 0.6393931853337D+02\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2764798400316D+13 R2 = 0.1744932103932D+04\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3617649900617D+12 R2 = 0.4929525288832D+03\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3700741643629D+12 R2 = 0.3334770354046D+03\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2777447350232D+13 R2 = 0.1693094938243D+04\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2786433165093D+13 R2 = 0.4627452365194D+04\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2786516052036D+13 R2 = 0.1232647220061D+04\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2786537710843D+13 R2 = 0.4577090882800D+03\n", " ISTATE -5 - shortening step at time 86608.098820280269 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3702739821614D+12 R2 = 0.2530665898925D-04\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787703620568D+13 R2 = 0.1499310939277D+03\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787705009036D+13 R2 = 0.3851422416977D-06\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3776778195495D+12 R2 = 0.9828342525829D+02\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787715702312D+13 R2 = 0.1266849154691D+03\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787716871362D+13 R2 = 0.1602318883255D-05\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787729124259D+13 R2 = 0.1242666900753D+03\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3822634373862D+12 R2 = 0.1960068827481D-04\n", " ISTATE -5 - shortening step at time 11066.948987136346 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787879650216D+13 R2 = 0.2447469373532D+03\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787899088253D+13 R2 = 0.1629984793064D+03\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5635949340605D+09\n", " ISTATE -1: Reducing time step to 0.11411176103089524 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787902632442D+13 R2 = 0.1515643684807D-05\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3847835066938D+12 R2 = 0.1667277887004D-06\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787985384805D+13 R2 = 0.7044736322596D+03\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2787986886918D+13 R2 = 0.4998135536803D+02\n", " ISTATE -5 - shortening step at time 88181.573127936426 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2788539103797D+13 R2 = 0.2033930421397D+03\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2788896911116D+13 R2 = 0.2715113161940D+03\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3852243378282D+12 R2 = 0.1207044567026D-04\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2788901872015D+13 R2 = 0.1703188688949D+03\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2790617990901D+13 R2 = 0.7868327680563D+03\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3853604168157D+12 R2 = 0.1060262277932D-03\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2790803898185D+13 R2 = 0.9039822718963D+03\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3869279873086D+12 R2 = 0.4632344182921D+03\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2793364986699D+13 R2 = 0.3344245497330D+04\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3872425182678D+12 R2 = 0.1667973412247D+03\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2799523784774D+13 R2 = 0.7473906663034D+04\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2799530749896D+13 R2 = 0.1761128108620D+02\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2799551978100D+13 R2 = 0.1729058431945D+03\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3874429132489D+12 R2 = 0.1023743923224D-03\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1413878082623D+13 R2 = 0.1320193091604D+04\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3886799012980D+12 R2 = 0.9179790618321D+03\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1413893228518D+13 R2 = 0.8777026720333D+02\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2799564188847D+13 R2 = 0.2562663660671D-04\n", " ISTATE -5 - shortening step at time 88227.433130311721 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1413961068687D+13 R2 = 0.5444918822451D+03\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2800530589312D+13 R2 = 0.1458905578090D+03\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3897204470865D+12 R2 = 0.9702762988077D-05\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1414997750702D+13 R2 = 0.2065808606353D+03\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1415194798754D+13 R2 = 0.3500751676197D+03\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2800533080007D+13 R2 = 0.3037526672606D-05\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801059676174D+13 R2 = 0.9760055541076D+03\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801061145596D+13 R2 = 0.3959345597343D+02\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3898421087085D+12 R2 = 0.1051897559519D-04\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801082194395D+13 R2 = 0.1723113743643D+03\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801103585400D+13 R2 = 0.5016532347785D+03\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1415475219708D+13 R2 = 0.2032364682134D-04\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1422488812939D+13 R2 = 0.2329001315516D+03\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3899459852226D+12 R2 = 0.1355209752173D-04\n", " ISTATE -5 - shortening step at time 12173.644149706606 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801107837569D+13 R2 = 0.2557891926461D-05\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801110006781D+13 R2 = 0.4726568335341D+02\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801131773250D+13 R2 = 0.1500158646419D+03\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2801135247124D+13 R2 = 0.8280018305377D+02\n", " ISTATE -5 - shortening step at time 88593.803444527090 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3900123632234D+12 R2 = 0.1393773381200D-05\n", " ISTATE -5 - shortening step at time 12340.062823500961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802054702443D+13 R2 = 0.8160121736170D+02\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802098158498D+13 R2 = 0.3328382740580D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1423519453260D+13 R2 = 0.1030408056654D-04\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802099140695D+13 R2 = 0.1941845943874D+02\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802137039012D+13 R2 = 0.2512861292836D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1423676606478D+13 R2 = 0.9018374669269D+02\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802169695256D+13 R2 = 0.2636685943002D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802174537746D+13 R2 = 0.1556069958930D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802193051828D+13 R2 = 0.1957009966358D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4290008204731D+12 R2 = 0.1066151366321D-04\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1426077226726D+13 R2 = 0.3464964772830D+03\n", " ISTATE -5 - shortening step at time 44208.936509125648 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802206138708D+13 R2 = 0.1228172171472D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4291684135496D+12 R2 = 0.1364476773100D+03\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802252180911D+13 R2 = 0.1017257645017D+03\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4292649957754D+12 R2 = 0.1744328227158D+03\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4293685379616D+12 R2 = 0.1869184081914D+03\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1426424549368D+13 R2 = 0.1887453259182D+03\n", " ISTATE -5 - shortening step at time 45129.026162204136 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1426483436810D+13 R2 = 0.1407964896883D+03\n", " ISTATE -5 - shortening step at time 45129.026162204136 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802254823386D+13 R2 = 0.3672698431853D-06\n", " ISTATE -5 - shortening step at time 88643.520478598046 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802904933621D+13 R2 = 0.3156628093738D+03\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4308382415323D+12 R2 = 0.6000887749632D+02\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802927780227D+13 R2 = 0.2373641235004D-05\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2802973005287D+13 R2 = 0.3773386149641D+03\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803010127040D+13 R2 = 0.5788709779899D+02\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4341750460871D+12 R2 = 0.4601395994815D-05\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803052297328D+13 R2 = 0.2412211696794D+03\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4401208785942D+12 R2 = 0.6399334693759D+03\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803054760912D+13 R2 = 0.1769711458141D-05\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1568713355044D+13 R2 = 0.7533238392948D+00\n", " ISTATE -5 - shortening step at time 49641.929854384376 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4418654098230D+12 R2 = 0.2114053992946D+03\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803064223179D+13 R2 = 0.1678814467033D+03\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803156252061D+13 R2 = 0.4809107130348D+03\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803161171062D+13 R2 = 0.1339932292215D+03\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1568818335648D+13 R2 = 0.7765911311944D-05\n", " ISTATE -5 - shortening step at time 49641.929854384376 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4419384791844D+12 R2 = 0.1158989957207D-03\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803162570487D+13 R2 = 0.6292213955780D-06\n", " ISTATE -5 - shortening step at time 88678.950107144017 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2803829312610D+13 R2 = 0.1192936225746D+03\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1568888092400D+13 R2 = 0.1202085620715D-04\n", " ISTATE -5 - shortening step at time 49641.929854384376 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4429154738079D+12 R2 = 0.2917287774303D-05\n", " ISTATE -5 - shortening step at time 13574.069400061082 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4524880237862D+12 R2 = 0.1467513790361D+04\n", " ISTATE -5 - shortening step at time 14016.312462274998 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1569400544230D+13 R2 = 0.7365535959129D-06\n", " ISTATE -5 - shortening step at time 49641.929854384376 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4549658833079D+12 R2 = 0.3055153400681D+03\n", " ISTATE -5 - shortening step at time 14016.312462274998 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.4989837088509D+12 R2 = 0.5537160626470D-05\n", " ISTATE -5 - shortening step at time 15417.944042677429 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1725601728424D+13 R2 = 0.2386467093973D-07\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5004245785607D+12 R2 = 0.1831399436540D+03\n", " ISTATE -5 - shortening step at time 15417.944042677429 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5636632367147D+09\n", " ISTATE -1: Reducing time step to 0.11389561338779997 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1740037185536D+13 R2 = 0.9962204591416D+02\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5077401001607D+12 R2 = 0.1972193498959D+03\n", " ISTATE -5 - shortening step at time 15417.944042677429 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1744078939394D+13 R2 = 0.1082689339653D+03\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5082232615504D+12 R2 = 0.1610913433246D+02\n", " ISTATE -5 - shortening step at time 15417.944042677429 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1744150096041D+13 R2 = 0.9360145946791D+01\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1744712233859D+13 R2 = 0.7648392639917D+01\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5144364670743D+12 R2 = 0.5836808421052D+03\n", " ISTATE -5 - shortening step at time 15417.944042677429 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5152722574730D+12 R2 = 0.2185196943921D+03\n", " ISTATE -5 - shortening step at time 15417.944042677429 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1744813062199D+13 R2 = 0.6357494497744D-05\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1747223847583D+13 R2 = 0.2068582718657D-05\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1747561275665D+13 R2 = 0.1513760212506D+03\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1747573716346D+13 R2 = 0.8252147608370D+02\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5360016758433D+12 R2 = 0.1491492029167D+02\n", " ISTATE -5 - shortening step at time 16959.738814537603 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1748170892005D+13 R2 = 0.1206463833034D+03\n", " ISTATE -5 - shortening step at time 54606.124023378652 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1748183812922D+13 R2 = 0.8693053193701D-07\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5895744572463D+12 R2 = 0.1816971161752D-06\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1748266731327D+13 R2 = 0.1653117891886D-05\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1748360561708D+13 R2 = 0.2567115110199D-05\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.5979444184427D+12 R2 = 0.9558836516839D+02\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6043189624092D+12 R2 = 0.3060161909203D+03\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1750006709403D+13 R2 = 0.1666022387369D-04\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6051617825758D+12 R2 = 0.8384492975755D+02\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6053344176807D+12 R2 = 0.9626970028283D+02\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6054996020523D+12 R2 = 0.9882480573195D+02\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1750799293322D+13 R2 = 0.3464007261825D-05\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6055717413785D+12 R2 = 0.1294919710452D+03\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6104501428160D+12 R2 = 0.2726952881221D-05\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1769819155900D+13 R2 = 0.7294537828451D+01\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6116888032832D+12 R2 = 0.9512145435939D-06\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1770839900683D+13 R2 = 0.1969801496174D+03\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6126501256871D+12 R2 = 0.3613033680178D+03\n", " ISTATE -5 - shortening step at time 18655.713100343044 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2850470621280D+13 R2 = 0.1497958140517D+04\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2850594782516D+13 R2 = 0.6279127867856D+03\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1787579737794D+13 R2 = 0.1153320670571D+03\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1787734158468D+13 R2 = 0.4267150469498D+02\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6309975865166D+12 R2 = 0.1046421973320D+03\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1788684231900D+13 R2 = 0.2803025405382D-05\n", " ISTATE -5 - shortening step at time 55321.863671058127 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6313870568903D+12 R2 = 0.1105320212796D-05\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1800041738260D+13 R2 = 0.1435657852294D+03\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6329485511268D+12 R2 = 0.1387823688018D-04\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6333667959910D+12 R2 = 0.2137095362433D-05\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1812238445940D+13 R2 = 0.1941471849116D-04\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1812256080918D+13 R2 = 0.7269706282281D-06\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6379930844215D+12 R2 = 0.9936152026041D+02\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6382294439709D+12 R2 = 0.9828645745904D+02\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6412070569912D+12 R2 = 0.1643609539088D+03\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5637210414540D+09\n", " ISTATE -1: Reducing time step to 0.11371268699480880 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1812986044710D+13 R2 = 0.2075916604633D-05\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6524269877170D+12 R2 = 0.8200165298511D+02\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6530485252673D+12 R2 = 0.1065266450884D+03\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6544784484230D+12 R2 = 0.3888547082264D+03\n", " ISTATE -5 - shortening step at time 19387.662205286568 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1822191951397D+13 R2 = 0.2116626678493D-04\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1826451865432D+13 R2 = 0.3101166502922D+03\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6552218837148D+12 R2 = 0.4419358700607D-05\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1826498352527D+13 R2 = 0.4397342355409D+02\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6572186973126D+12 R2 = 0.3237589330528D+03\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1828992017334D+13 R2 = 0.2654801487270D+03\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6574440881548D+12 R2 = 0.7811387504179D+02\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1849778205965D+13 R2 = 0.5328237836346D+02\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1849903070742D+13 R2 = 0.5353538429985D+02\n", " ISTATE -5 - shortening step at time 56603.931389244841 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6658855978213D+12 R2 = 0.8684320518918D+02\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6701290832990D+12 R2 = 0.1182968301160D-05\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6706225878955D+12 R2 = 0.1494166678821D-05\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6706864226898D+12 R2 = 0.4645438162136D+03\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6794339015937D+12 R2 = 0.1073218442320D-04\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6825969359342D+12 R2 = 0.1517658455105D+03\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6831693090447D+12 R2 = 0.2579389043164D+02\n", " ISTATE -5 - shortening step at time 20711.343304524209 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6832197402914D+12 R2 = 0.2211665722358D-07\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6915075150745D+12 R2 = 0.1166114820345D-05\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6935631183006D+12 R2 = 0.1486614878177D-05\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7022082895896D+12 R2 = 0.1320977846129D+03\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7023281529450D+12 R2 = 0.8464948401451D-06\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2932430533802D+13 R2 = 0.4015021209799D+04\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7024223800047D+12 R2 = 0.8982563866088D-05\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2932434448131D+13 R2 = 0.6355076458723D-06\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7025075315685D+12 R2 = 0.4473658673987D+03\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2934504346020D+13 R2 = 0.2757737855637D+04\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7025487423060D+12 R2 = 0.3115605173818D+02\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2934598509970D+13 R2 = 0.2916293183836D+03\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2934604267449D+13 R2 = 0.1520518453463D+02\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7066223705157D+12 R2 = 0.3063983218201D+02\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2934607508840D+13 R2 = 0.5275362727026D-06\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2934629440781D+13 R2 = 0.2907671036674D+03\n", " ISTATE -5 - shortening step at time 88707.676281222579 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2935909456719D+13 R2 = 0.2441705666759D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5637753363308D+09\n", " ISTATE -1: Reducing time step to 0.11354086776184703 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7123663938222D+12 R2 = 0.2580539431217D+03\n", " ISTATE -5 - shortening step at time 21619.281931793961 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7124101030018D+12 R2 = 0.4130224596218D+01\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2935910536913D+13 R2 = 0.8356424265101D-07\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941476619688D+13 R2 = 0.1800746483388D+04\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941499947797D+13 R2 = 0.2455694345742D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7280384411550D+12 R2 = 0.9607133499683D+02\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941537877316D+13 R2 = 0.2794657516028D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941561283557D+13 R2 = 0.4652713480319D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941568890597D+13 R2 = 0.2008710336664D+02\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7281257571003D+12 R2 = 0.2267393282376D-05\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941674140563D+13 R2 = 0.4908292615290D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941697532379D+13 R2 = 0.2408374599519D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2941702344187D+13 R2 = 0.1604055662877D+03\n", " ISTATE -5 - shortening step at time 92868.020277891890 years\n", "[Parallel(n_jobs=4)]: Done 5 out of 9 | elapsed: 4.1min remaining: 3.3min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2034960412219D+13 R2 = 0.6512643074034D-07\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7292212114780D+12 R2 = 0.8793502958559D-05\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7293680596323D+12 R2 = 0.1244061858235D-05\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2047438308537D+13 R2 = 0.6870900328009D-06\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7665193501946D+12 R2 = 0.4854082645055D+03\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7665620260565D+12 R2 = 0.8323202438829D+02\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2048061077137D+13 R2 = 0.3078233370728D+03\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7668893955304D+12 R2 = 0.3522584878383D-05\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7669098455983D+12 R2 = 0.1021257184764D+03\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2057732721567D+13 R2 = 0.9574117798784D-05\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7727107059176D+12 R2 = 0.6322320885450D-05\n", " ISTATE -5 - shortening step at time 22543.240310830122 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2160522941080D+13 R2 = 0.9520101317720D+02\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2160975478800D+13 R2 = 0.5460815693918D+02\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2176555395977D+13 R2 = 0.3162837354050D+03\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2176968966705D+13 R2 = 0.2320870235972D+03\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8500308172550D+12 R2 = 0.1065502002668D-05\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2179684410326D+13 R2 = 0.1722467215170D-05\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8624868944069D+12 R2 = 0.6429270902009D+02\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8626685098656D+12 R2 = 0.1133791649504D+03\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2191170620634D+13 R2 = 0.5091555785118D+03\n", " ISTATE -5 - shortening step at time 64395.361453198959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2198411498459D+13 R2 = 0.2325127958585D+03\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8633881998603D+12 R2 = 0.5528793963455D-05\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8634546064864D+12 R2 = 0.9441884046413D+02\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2198466768957D+13 R2 = 0.1627352094409D-05\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8635074275522D+12 R2 = 0.7443958737671D-05\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8638509203035D+12 R2 = 0.1436471952048D-03\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8647710758699D+12 R2 = 0.9547652794525D+02\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2234973078781D+13 R2 = 0.7063414670354D-06\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8672415563122D+12 R2 = 0.2787575984939D+03\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8682387274746D+12 R2 = 0.9327260520919D+02\n", " ISTATE -5 - shortening step at time 26898.158067474982 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2249382457361D+13 R2 = 0.9808901696929D+02\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n", " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5638264731736D+09\n", " ISTATE -1: Reducing time step to 0.11337904230746329 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2249733326020D+13 R2 = 0.1148764233932D+03\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2256488215210D+13 R2 = 0.1125154655189D+03\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9609448189941D+12 R2 = 0.3791730594633D+03\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2259935426964D+13 R2 = 0.9034636825338D+02\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9642002404062D+12 R2 = 0.5859912388511D+02\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2268308633015D+13 R2 = 0.1047060010825D+03\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9709813999917D+12 R2 = 0.1218597464343D-04\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9710784226347D+12 R2 = 0.8926260322941D+02\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9742674383568D+12 R2 = 0.8692785587426D+02\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2286846693599D+13 R2 = 0.2213550323632D+03\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2288621034693D+13 R2 = 0.6861359706757D+02\n", " ISTATE -5 - shortening step at time 69340.842425138631 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9814761319465D+12 R2 = 0.3056555930403D+02\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9824640396619D+12 R2 = 0.3195021156978D+02\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9825958282431D+12 R2 = 0.1244429390870D+03\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9827081928487D+12 R2 = 0.1073185228109D+03\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9828253244665D+12 R2 = 0.5256880987755D-05\n", " ISTATE -5 - shortening step at time 30223.500662104208 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9828577675445D+12 R2 = 0.1505067178809D-06\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9832468158562D+12 R2 = 0.3444958574277D-06\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9832604638381D+12 R2 = 0.3267950854143D+02\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9833351617868D+12 R2 = 0.3745005931906D+03\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9834013628920D+12 R2 = 0.5143794683383D+03\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9834590087290D+12 R2 = 0.3540047183962D+02\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9837663977216D+12 R2 = 0.2460686046093D-05\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9838381684975D+12 R2 = 0.8865930349091D+02\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9875771836502D+12 R2 = 0.9672947874447D-05\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9909399976513D+12 R2 = 0.3549833793934D+03\n", " ISTATE -5 - shortening step at time 31102.067229952143 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2527283939348D+13 R2 = 0.1999921124277D+03\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2531460653013D+13 R2 = 0.5591522015252D-06\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2542575058091D+13 R2 = 0.2421170115806D+03\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1040272120885D+13 R2 = 0.3744309204373D+03\n", " ISTATE -5 - shortening step at time 31358.860685167921 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031767407664D+10\n", " ISTATE -1: Reducing time step to 2.5168223084087491 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2591067758284D+13 R2 = 0.1223952840792D-04\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1090068253913D+13 R2 = 0.3140928306412D-07\n", " ISTATE -5 - shortening step at time 34494.747501338214 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2612524308945D+13 R2 = 0.3065507669255D+03\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2626077778727D+13 R2 = 0.3893066044724D-06\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2653510500806D+13 R2 = 0.4728459164055D-06\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2677002364517D+13 R2 = 0.5555635412855D+02\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2700483008937D+13 R2 = 0.4586246798157D+02\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2713742411245D+13 R2 = 0.9357909664999D+02\n", " ISTATE -5 - shortening step at time 79667.189643258796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2735511075265D+13 R2 = 0.2950282915876D+03\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031784622057D+10\n", " ISTATE -1: Reducing time step to 2.5167678324804155 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2739944168336D+13 R2 = 0.4671580367957D-04\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2742325633208D+13 R2 = 0.8081840903815D+01\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2749499380901D+13 R2 = 0.9942170092186D+02\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2749784948818D+13 R2 = 0.5624779103752D+02\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2758024457776D+13 R2 = 0.1386261510171D-05\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2759791366829D+13 R2 = 0.1492922461030D-05\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2766824332178D+13 R2 = 0.1730038624459D+03\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2767502920452D+13 R2 = 0.2461966207093D-04\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2767803258313D+13 R2 = 0.3104187078883D+02\n", " ISTATE -5 - shortening step at time 85877.924406491889 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2775488583934D+13 R2 = 0.1520624178962D-05\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[Parallel(n_jobs=4)]: Done 6 out of 9 | elapsed: 5.0min remaining: 2.5min\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2798931800893D+13 R2 = 0.8638167800654D+02\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2799356272791D+13 R2 = 0.4304151509707D-05\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2806098068836D+13 R2 = 0.4329872594661D+03\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2808270003490D+13 R2 = 0.2000390132973D+03\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2808545078512D+13 R2 = 0.1137863052556D+03\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031799909287D+10\n", " ISTATE -1: Reducing time step to 2.5167194551702061 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2820120591384D+13 R2 = 0.2003416417863D-05\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2835506241905D+13 R2 = 0.9236865863707D+02\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2859276989214D+13 R2 = 0.5768095708336D-05\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2859734819901D+13 R2 = 0.7677128732389D-06\n", " ISTATE -5 - shortening step at time 87588.710706111087 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031814134607D+10\n", " ISTATE -1: Reducing time step to 2.5166744383331547 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031826427795D+10\n", " ISTATE -1: Reducing time step to 2.5166355358366959 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031836908494D+10\n", " ISTATE -1: Reducing time step to 2.5166023690684627 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1318980024095D+13 R2 = 0.4496490875527D-07\n", " ISTATE -5 - shortening step at time 41738.646285940769 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1319136642706D+13 R2 = 0.8548192895390D+02\n", " ISTATE -5 - shortening step at time 41738.646285940769 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1460345359937D+13 R2 = 0.7245301211792D+02\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1460420597972D+13 R2 = 0.4829561440779D+01\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1460432743223D+13 R2 = 0.2319725064377D+03\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1460454380291D+13 R2 = 0.3466860698498D-05\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1460469007849D+13 R2 = 0.3521616324816D-06\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1460491520969D+13 R2 = 0.4164253698356D+02\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031847781830D+10\n", " ISTATE -1: Reducing time step to 2.5165679597776363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1557838177757D+13 R2 = 0.2262393781119D+02\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1561420745962D+13 R2 = 0.1831444759277D+02\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1561685785941D+13 R2 = 0.8063982709648D-05\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1562895071692D+13 R2 = 0.1926497471411D+03\n", " ISTATE -5 - shortening step at time 45912.511909661720 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576584068041D+13 R2 = 0.1033163744324D-05\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576610078978D+13 R2 = 0.5297373495363D+02\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576635175628D+13 R2 = 0.2064194557479D-04\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576638678380D+13 R2 = 0.4098095103904D-06\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576645157266D+13 R2 = 0.4001134039882D-05\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576737306594D+13 R2 = 0.5490623791119D+02\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576746908072D+13 R2 = 0.8231621662967D+01\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031857914658D+10\n", " ISTATE -1: Reducing time step to 2.5165358938637374 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576754299766D+13 R2 = 0.6381517674541D-06\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576770357655D+13 R2 = 0.1903821352894D-05\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1576804067695D+13 R2 = 0.3628265131374D+01\n", " ISTATE -5 - shortening step at time 49458.704800382722 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1590824193842D+13 R2 = 0.1934002841645D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1590879488984D+13 R2 = 0.5212713220116D-05\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591218272649D+13 R2 = 0.7735860889010D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591241228924D+13 R2 = 0.5238627353186D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591368797787D+13 R2 = 0.5182682975662D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591375621110D+13 R2 = 0.4755005116906D-05\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591511974493D+13 R2 = 0.2759288731418D-05\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591657377155D+13 R2 = 0.4913448893381D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1591712711640D+13 R2 = 0.5112569187802D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1592063876918D+13 R2 = 0.4075104788007D+02\n", " ISTATE -5 - shortening step at time 49898.862901737739 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031867975346D+10\n", " ISTATE -1: Reducing time step to 2.5165040562443326 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.8031878614875D+10\n", " ISTATE -1: Reducing time step to 2.5164703868471743 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1751287574029D+13 R2 = 0.1081782819646D+01\n", " ISTATE -5 - shortening step at time 55419.946283767778 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.5369742553422D+11\n", " ISTATE -1: Reducing time step to 1.0666483185995801 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6614874407285D+11 R2 = 0.1994242943652D-09\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6614932947994D+11 R2 = 0.5478947220793D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6614991666065D+11 R2 = 0.5409510913300D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615050680566D+11 R2 = 0.5804144188224D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615109917918D+11 R2 = 0.6213155272182D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615169353918D+11 R2 = 0.5915650698859D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615229037353D+11 R2 = 0.5632409959564D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615288935781D+11 R2 = 0.6412364274068D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615349132342D+11 R2 = 0.5670291484992D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6615409435878D+11 R2 = 0.6372876656110D+01\n", " ISTATE -5 - shortening step at time 2069.0421321409272 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6622782424561D+11 R2 = 0.3506551371442D+01\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6715577086591D+11 R2 = 0.1072627740188D-08\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6715864258366D+11 R2 = 0.8246108812246D+02\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6716773357584D+11 R2 = 0.1090170209866D+03\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6717923204025D+11 R2 = 0.8349748815703D+02\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6717975782334D+11 R2 = 0.1004655491057D-06\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6739517434005D+11 R2 = 0.6393635893642D-07\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6739594186977D+11 R2 = 0.4305558443704D-06\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6739650735309D+11 R2 = 0.1940602850144D+02\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6740408040594D+11 R2 = 0.6044223500400D+02\n", " ISTATE -5 - shortening step at time 2093.4839986956363 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6806750758130D+11 R2 = 0.5474717247258D+01\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6807053427401D+11 R2 = 0.8692436240662D+02\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6807319273442D+11 R2 = 0.4693693293924D+02\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6809767949699D+11 R2 = 0.1863418964456D+03\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6809962659730D+11 R2 = 0.6684682850330D+02\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6823714173166D+11 R2 = 0.9886611806822D+02\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6823851001287D+11 R2 = 0.3613089636587D+01\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.6824157831244D+11 R2 = 0.3130534386277D-06\n", " ISTATE -5 - shortening step at time 2133.0405191753875 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7590531559110D+11 R2 = 0.1744514635344D+04\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7593281707014D+11 R2 = 0.3615150890335D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7593872439068D+11 R2 = 0.1988550944080D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7619260382289D+11 R2 = 0.1175974360416D-07\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7619324506554D+11 R2 = 0.1631617957592D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7619660902720D+11 R2 = 0.3628291342144D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7619725065894D+11 R2 = 0.2014790938034D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7619789241763D+11 R2 = 0.2202375371688D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7620430572673D+11 R2 = 0.6285515923491D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7620494698775D+11 R2 = 0.2200664795107D+02\n", " ISTATE -5 - shortening step at time 2346.3446219485754 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7665760351202D+11 R2 = 0.1479093373647D+03\n", " ISTATE -5 - shortening step at time 2411.5489553083967 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7675867808613D+11 R2 = 0.2035523753409D+03\n", " ISTATE -5 - shortening step at time 2411.5489553083967 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7999327390776D+11 R2 = 0.1851357818173D+04\n", " ISTATE -5 - shortening step at time 2411.5489553083967 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8230949395871D+11 R2 = 0.1442043943427D+04\n", " ISTATE -5 - shortening step at time 2411.5489553083967 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8401792405257D+11 R2 = 0.1475468675278D-08\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8437857361343D+11 R2 = 0.1265882950813D-08\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8465520900150D+11 R2 = 0.1547642068450D+03\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8465579890611D+11 R2 = 0.8714740634888D-07\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8466229813842D+11 R2 = 0.7901433612590D+02\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8466884690537D+11 R2 = 0.1479624335095D+03\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8467041877962D+11 R2 = 0.2787924097737D+02\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8467088814479D+11 R2 = 0.1007437988001D+02\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8467181971605D+11 R2 = 0.1031648964800D+01\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8470948918525D+11 R2 = 0.1184787348140D+03\n", " ISTATE -5 - shortening step at time 2652.7039083350437 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8511145645113D+11 R2 = 0.2321735366741D+03\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8511326884833D+11 R2 = 0.3153801482814D+02\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8524130927287D+11 R2 = 0.8971471340832D+02\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8525419547805D+11 R2 = 0.4300534039269D+02\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8525444322545D+11 R2 = 0.4351217415741D+01\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8525469188804D+11 R2 = 0.3975502652162D+01\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8525561920626D+11 R2 = 0.9361961648336D+01\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8543610409285D+11 R2 = 0.1635496442172D-08\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8543662069113D+11 R2 = 0.1773600552901D+02\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8570949516528D+11 R2 = 0.3932512641813D+03\n", " ISTATE -5 - shortening step at time 2680.6800375078396 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8613820577795D+11 R2 = 0.3680641847384D+01\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8614857730983D+11 R2 = 0.3339135991845D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8615029545359D+11 R2 = 0.5898776283376D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8616164483565D+11 R2 = 0.7607326157734D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8616319485861D+11 R2 = 0.3069653367475D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8616474161538D+11 R2 = 0.2005805531525D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8618726256559D+11 R2 = 0.4944294414498D-07\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8618776105324D+11 R2 = 0.1236856360862D+01\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3145738545845D+13 R2 = 0.8026738997461D-07\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8618939743950D+11 R2 = 0.2835200474387D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8619103185650D+11 R2 = 0.5611323218103D+02\n", " ISTATE -5 - shortening step at time 2712.3257963695919 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8657773378751D+11 R2 = 0.1157596210562D+03\n", " ISTATE -5 - shortening step at time 2727.5642992562975 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3157175675823D+13 R2 = 0.2179930134004D+03\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1265060138332D+12 R2 = 0.7445615312297D-09\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1265486035676D+12 R2 = 0.1132160760325D-07\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1265686113929D+12 R2 = 0.1443790518506D+03\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1265699508240D+12 R2 = 0.3284807301920D+02\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1265702810225D+12 R2 = 0.3084532130582D+01\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1265706139426D+12 R2 = 0.2831396597333D+01\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1266783875337D+12 R2 = 0.1607698068787D+03\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1267666113263D+12 R2 = 0.2132198744391D+03\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1268093149548D+12 R2 = 0.2011871958423D+03\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1268494415526D+12 R2 = 0.2723915019092D+02\n", " ISTATE -5 - shortening step at time 3993.4272367619433 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1270881569547D+12 R2 = 0.5110976188707D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1270890998101D+12 R2 = 0.2216846419499D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1270906582670D+12 R2 = 0.4320017839391D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1270922587580D+12 R2 = 0.2573507231353D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1270942496944D+12 R2 = 0.3594188084478D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1271401074485D+12 R2 = 0.1381528165144D+03\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1271403109799D+12 R2 = 0.1035605111072D-07\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1271436509748D+12 R2 = 0.3231124350526D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1271439188603D+12 R2 = 0.2733940384080D+01\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1271452631387D+12 R2 = 0.2688805137501D+02\n", " ISTATE -5 - shortening step at time 4014.2228339418270 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1340545551463D+12 R2 = 0.3809487212382D+04\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1345498146691D+12 R2 = 0.2295698198244D+03\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1345649162798D+12 R2 = 0.1451107496054D+03\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1345704735118D+12 R2 = 0.6316478150447D+02\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1345806501140D+12 R2 = 0.7943185388064D+02\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1346164718128D+12 R2 = 0.2050093419375D+03\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1346174898387D+12 R2 = 0.3347431640077D+02\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3224998299214D+13 R2 = 0.4870817709720D+02\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1346193367650D+12 R2 = 0.2083194585413D+02\n", " ISTATE -5 - shortening step at time 4023.5842765402422 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3250771565499D+13 R2 = 0.6362537994143D+03\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1401802399448D+12 R2 = 0.2296926930775D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1401815957918D+12 R2 = 0.2487168836331D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1401860385508D+12 R2 = 0.2996640205308D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402185452780D+12 R2 = 0.1874170460530D+03\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402192066257D+12 R2 = 0.4292131358095D+01\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402237216919D+12 R2 = 0.5427322637248D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402288438053D+12 R2 = 0.9466641455979D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402308912349D+12 R2 = 0.8984103527482D-06\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402884664316D+12 R2 = 0.5327385620503D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1402971111823D+12 R2 = 0.5390937550266D+02\n", " ISTATE -5 - shortening step at time 4425.9428001239912 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3308642219383D+13 R2 = 0.4138763631806D+02\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2198113277468D+12 R2 = 0.5537190662222D+03\n", " ISTATE -5 - shortening step at time 6500.2853889387479 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2261787634958D+12 R2 = 0.8134327098544D-07\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2261860688380D+12 R2 = 0.4826607437319D+02\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2263401374856D+12 R2 = 0.1686646639162D+03\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2267226510044D+12 R2 = 0.2490782501798D+03\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2267318712547D+12 R2 = 0.6813485945778D+02\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2267372274846D+12 R2 = 0.7245287105252D+02\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3328173412842D+13 R2 = 0.7385668098501D-05\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2267457149469D+12 R2 = 0.5121982793988D+02\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2268901508956D+12 R2 = 0.7011389866553D-07\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2269277733404D+12 R2 = 0.2073628221183D+03\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2272150743212D+12 R2 = 0.1569548733503D+03\n", " ISTATE -5 - shortening step at time 7150.3140828115038 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3348634028461D+13 R2 = 0.7713573918071D-05\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3348926525081D+13 R2 = 0.5578797890153D-05\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3350069619485D+13 R2 = 0.2826736181344D+03\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.7131672097538D+12 R2 = 0.6173705840211D-09\n", " ISTATE -5 - shortening step at time 22566.405770261870 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8294241655381D+12 R2 = 0.2835541826210D-08\n", " ISTATE -5 - shortening step at time 24823.046885313099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8363898207564D+12 R2 = 0.3375865609165D+03\n", " ISTATE -5 - shortening step at time 24823.046885313099 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8629174013101D+12 R2 = 0.2029558748980D-09\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8716834702889D+12 R2 = 0.4851315954043D+03\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3416454818142D+13 R2 = 0.8619296705879D+02\n", " ISTATE -5 - shortening step at time 99547.733230140177 years\n", "[Parallel(n_jobs=4)]: Done 7 out of 9 | elapsed: 6.7min remaining: 1.9min\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8774463913804D+12 R2 = 0.1407330640290D+03\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8846067865324D+12 R2 = 0.3123755278878D+03\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.8903856646655D+12 R2 = 0.2655295160881D+03\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9042324989119D+12 R2 = 0.1352392325592D-08\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9076725481535D+12 R2 = 0.2384038885920D-08\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9217236753219D+12 R2 = 0.4505257213795D+03\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9242569676565D+12 R2 = 0.2397923583789D-08\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9242584758449D+12 R2 = 0.1356274928759D-08\n", " ISTATE -5 - shortening step at time 27305.352165671964 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9334843339863D+12 R2 = 0.2124896467411D-08\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9360979734378D+12 R2 = 0.1344069096406D+04\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9384677672086D+12 R2 = 0.1800942996061D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9384755747237D+12 R2 = 0.4230522082710D+02\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9418597367581D+12 R2 = 0.1522775334453D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9431279128306D+12 R2 = 0.1658198042595D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9437793552171D+12 R2 = 0.1780349192100D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9454793779588D+12 R2 = 0.1763238829007D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9455764712956D+12 R2 = 0.1147432078514D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9553904610837D+12 R2 = 0.1671810088249D+03\n", " ISTATE -5 - shortening step at time 29248.685944460252 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9554486072248D+12 R2 = 0.1170876678239D-09\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9555982429539D+12 R2 = 0.1453057709483D+03\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9591300210298D+12 R2 = 0.1064420410585D+04\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9594151307280D+12 R2 = 0.1337363281027D+03\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9597377024529D+12 R2 = 0.2660891199984D-08\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9598531617130D+12 R2 = 0.1665377235749D-08\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9599807683994D+12 R2 = 0.1186221999449D+03\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9600136585858D+12 R2 = 0.1019689000807D+03\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9603869476219D+12 R2 = 0.2025034841028D-08\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.9613076929049D+12 R2 = 0.1032857104453D+04\n", " ISTATE -5 - shortening step at time 30233.875350750408 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1407485466600D+13 R2 = 0.5742839917441D+01\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1440809424021D+13 R2 = 0.2340367470156D+03\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1470422520771D+13 R2 = 0.1557681667483D+02\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1487033263829D+13 R2 = 0.8711434873807D+02\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1489861535437D+13 R2 = 0.4172994117389D-09\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1494352015558D+13 R2 = 0.1727613506663D+03\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1501068044978D+13 R2 = 0.1607519573859D-09\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1512776519042D+13 R2 = 0.1829014678671D+03\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1533905441400D+13 R2 = 0.3068360658042D-09\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1926415075378D+13 R2 = 0.1366847582075D-06\n", " ISTATE -5 - shortening step at time 60961.942233459042 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1536635648692D+13 R2 = 0.4054831567146D-09\n", " ISTATE -5 - shortening step at time 44539.579595085757 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1940268771420D+13 R2 = 0.3237203796336D+03\n", " ISTATE -5 - shortening step at time 60961.942233459042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2131853233480D+13 R2 = 0.1157025063629D+02\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2131894890735D+13 R2 = 0.4831004637293D+01\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2133515803603D+13 R2 = 0.8397071766457D-06\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2133521071470D+13 R2 = 0.2087776263159D+02\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2133565905626D+13 R2 = 0.4924195592967D+02\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135288581052D+13 R2 = 0.3750824295939D+01\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135299370990D+13 R2 = 0.3818905128822D-05\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135375915643D+13 R2 = 0.4867227984213D+02\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1690317653843D+13 R2 = 0.1494755072024D-08\n", " ISTATE -5 - shortening step at time 53490.482601199838 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135476429368D+13 R2 = 0.3698330133006D+02\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135492219058D+13 R2 = 0.4863410983540D+02\n", " ISTATE -5 - shortening step at time 67058.137910250909 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135507819485D+13 R2 = 0.1352948502348D-06\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135542067405D+13 R2 = 0.2210840624671D-05\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135543960605D+13 R2 = 0.1938956827277D-06\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135570814682D+13 R2 = 0.2042775411711D-05\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135598863930D+13 R2 = 0.1407412326176D-05\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135787141522D+13 R2 = 0.7997667371827D+02\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135806602828D+13 R2 = 0.2487494051592D-05\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2135986515530D+13 R2 = 0.5121304967511D+02\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2144730541235D+13 R2 = 0.5369190236796D+02\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2145863043099D+13 R2 = 0.2973410404234D+02\n", " ISTATE -5 - shortening step at time 67578.867691716543 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2145872611764D+13 R2 = 0.2195792645586D-05\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2162105757143D+13 R2 = 0.3474025405900D-05\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2162130915725D+13 R2 = 0.4369791910002D+02\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2163489210468D+13 R2 = 0.4819321957724D+02\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2163539619430D+13 R2 = 0.8962593844406D-06\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2164230602139D+13 R2 = 0.1610205281622D+02\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2164240699014D+13 R2 = 0.2436517664115D-05\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2164269512876D+13 R2 = 0.1348174543267D-05\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2164275986867D+13 R2 = 0.3956705899292D+02\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2164321102950D+13 R2 = 0.5419238087398D+02\n", " ISTATE -5 - shortening step at time 67907.058325928927 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2164336221728D+13 R2 = 0.1220062428850D-06\n", " ISTATE -5 - shortening step at time 68491.174143978977 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2380909181734D+13 R2 = 0.1532722093412D-05\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2380935302223D+13 R2 = 0.2194112932247D+02\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2380941182716D+13 R2 = 0.1691341486924D-05\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2380955889352D+13 R2 = 0.1194796287372D+02\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2380972919857D+13 R2 = 0.3240688872316D+02\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2391496859970D+13 R2 = 0.2600576503676D+02\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2391562487351D+13 R2 = 0.4212421879052D+02\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2391573267510D+13 R2 = 0.5240699331902D-06\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2391620391042D+13 R2 = 0.1240148059636D-05\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2391624112099D+13 R2 = 0.9508885842471D+01\n", " ISTATE -5 - shortening step at time 75340.293191333723 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2414275533536D+13 R2 = 0.5087460673632D+02\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2414532171074D+13 R2 = 0.7103356328578D-06\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2414537061880D+13 R2 = 0.9511174848621D-06\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2414555483025D+13 R2 = 0.2585018164366D+02\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2414559216268D+13 R2 = 0.2189474875157D-05\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2418836725323D+13 R2 = 0.1063379600415D+03\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2419145523286D+13 R2 = 0.5405432613833D+02\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2421257556155D+13 R2 = 0.5999320358257D-07\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2426525269218D+13 R2 = 0.6500401236543D+01\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2426528790056D+13 R2 = 0.1981405751113D+02\n", " ISTATE -5 - shortening step at time 75684.307344915098 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2426858223384D+13 R2 = 0.3324451680145D-06\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2426903287580D+13 R2 = 0.1536968464065D+02\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2426906568961D+13 R2 = 0.1974005169442D+02\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2426924546463D+13 R2 = 0.2957323832207D-05\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2427047696821D+13 R2 = 0.1448022236404D-05\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2427087390270D+13 R2 = 0.1451095141596D-03\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2427120473552D+13 R2 = 0.1289973136920D+02\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428514267399D+13 R2 = 0.2210919909834D+02\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428517999288D+13 R2 = 0.2534987179105D-05\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428519406663D+13 R2 = 0.8469418852117D+01\n", " ISTATE -5 - shortening step at time 76788.885761263286 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428603795061D+13 R2 = 0.8190563296788D+02\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428663849584D+13 R2 = 0.5415190065009D+02\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428668544920D+13 R2 = 0.7780202895984D-06\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428679321174D+13 R2 = 0.2562141902308D+02\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428714795165D+13 R2 = 0.1015530358490D-05\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428717874905D+13 R2 = 0.2508326464892D-05\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428720568355D+13 R2 = 0.2896869801825D-06\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428725445907D+13 R2 = 0.1164693146653D+03\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428728473277D+13 R2 = 0.9403237660888D-06\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1860201385967D+13 R2 = 0.4534329638788D-09\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1860374932176D+13 R2 = 0.6857697433292D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1860775689213D+13 R2 = 0.6836161123226D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2428741862248D+13 R2 = 0.1277589034357D-05\n", " ISTATE -5 - shortening step at time 76851.879957688987 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1860849651585D+13 R2 = 0.4448254316092D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1860992006220D+13 R2 = 0.4641891448976D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2429492236271D+13 R2 = 0.4888679388823D+01\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1860998479083D+13 R2 = 0.2969450039099D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1861078196272D+13 R2 = 0.5833695539553D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1861548041155D+13 R2 = 0.5468855862718D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2429498376099D+13 R2 = 0.2916554639177D-06\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2429505998332D+13 R2 = 0.1672384080285D+03\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1862779009076D+13 R2 = 0.3041566637318D+02\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2430393160318D+13 R2 = 0.2775793666380D+02\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863184149855D+13 R2 = 0.3225358521212D-09\n", " ISTATE -5 - shortening step at time 58839.532136632304 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434367984688D+13 R2 = 0.5398779072191D-05\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434427267295D+13 R2 = 0.5759058625093D+02\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863420753667D+13 R2 = 0.2599125886238D+02\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863424706626D+13 R2 = 0.3416315543060D+02\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434549386265D+13 R2 = 0.1901530062301D-05\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434588737418D+13 R2 = 0.1026796713739D+02\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863502653648D+13 R2 = 0.1271301343628D-08\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434616308538D+13 R2 = 0.3017813291903D-05\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863846732810D+13 R2 = 0.1771951576683D-09\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434825988027D+13 R2 = 0.1290076460268D+03\n", " ISTATE -5 - shortening step at time 76858.919691377174 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863906701016D+13 R2 = 0.5980506412844D+02\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434835892142D+13 R2 = 0.1802541471102D-06\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1863942446891D+13 R2 = 0.1575836003854D-08\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1864458919812D+13 R2 = 0.8942149279366D+02\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434839924150D+13 R2 = 0.8597072747556D-06\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2434867864494D+13 R2 = 0.2105000654791D+02\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1864717106091D+13 R2 = 0.6524359449151D+02\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435292049452D+13 R2 = 0.4071561607341D+02\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435305553241D+13 R2 = 0.2421522989121D+02\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435350950174D+13 R2 = 0.1930163356294D+02\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1865135520816D+13 R2 = 0.6783697608789D-09\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1865246339950D+13 R2 = 0.2802774040424D+02\n", " ISTATE -5 - shortening step at time 58961.523729602035 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435367814491D+13 R2 = 0.9053083420338D-05\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.1865265804747D+13 R2 = 0.5199140073652D-09\n", " ISTATE -5 - shortening step at time 59026.782909804453 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435618824833D+13 R2 = 0.5328856978840D-06\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435696630163D+13 R2 = 0.2324457747301D+02\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435854377197D+13 R2 = 0.3953624500174D+02\n", " ISTATE -5 - shortening step at time 77051.455317302796 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435865021390D+13 R2 = 0.2785792869395D-05\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435891019237D+13 R2 = 0.1878816416631D+02\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435893316970D+13 R2 = 0.3067137669164D+01\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435902875701D+13 R2 = 0.2547605149792D+02\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2435907165398D+13 R2 = 0.2086393522424D+02\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438380670314D+13 R2 = 0.8749062484463D-06\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438385874647D+13 R2 = 0.1335676536505D+02\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438586354893D+13 R2 = 0.5891448905588D-06\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438675387690D+13 R2 = 0.5121765037619D+02\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438688157686D+13 R2 = 0.2076079211633D+02\n", " ISTATE -5 - shortening step at time 77083.999278392381 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438700351776D+13 R2 = 0.2671229863098D-06\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438712712161D+13 R2 = 0.1541447222413D-05\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438714532039D+13 R2 = 0.1190810243715D+02\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438758847674D+13 R2 = 0.8852995575898D-06\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438794053736D+13 R2 = 0.3762507605429D+02\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2438823813551D+13 R2 = 0.4901423858973D+02\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2439244813893D+13 R2 = 0.1950034304983D-06\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2439273272537D+13 R2 = 0.2490217363315D+02\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2029593895638D+13 R2 = 0.3668115489156D+03\n", " ISTATE -5 - shortening step at time 59026.782909804453 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2439286036650D+13 R2 = 0.1792984287696D-06\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2439310751873D+13 R2 = 0.2531213196641D-05\n", " ISTATE -5 - shortening step at time 77173.675876136229 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2444551862934D+13 R2 = 0.2260040292835D-05\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2448987755430D+13 R2 = 0.1358107622716D+03\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449016346145D+13 R2 = 0.1409880537679D+02\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051781695361D+13 R2 = 0.1202466839814D-09\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449841596240D+13 R2 = 0.3877104553709D+02\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449850250961D+13 R2 = 0.2077066686582D+02\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051782981299D+13 R2 = 0.1186432566922D-08\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051783874512D+13 R2 = 0.1437403418561D+01\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449908505073D+13 R2 = 0.1022443260018D-05\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051789301436D+13 R2 = 0.3807545120760D-09\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449911250794D+13 R2 = 0.8098708301400D-06\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051790459786D+13 R2 = 0.4377484705539D+01\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449914636468D+13 R2 = 0.1207899625653D+02\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051791405567D+13 R2 = 0.6525484982686D+01\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2449920738209D+13 R2 = 0.7678295407887D-06\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051902730802D+13 R2 = 0.1945277813513D-09\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2450822679967D+13 R2 = 0.8708933426515D+01\n", " ISTATE -5 - shortening step at time 77193.378223838605 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051919922630D+13 R2 = 0.1449789977599D-08\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2051923385605D+13 R2 = 0.1272767805859D+02\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2454381795522D+13 R2 = 0.3590681734961D-07\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2454384536653D+13 R2 = 0.8566334444970D+01\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2454561802226D+13 R2 = 0.5724125090688D+02\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2454593542643D+13 R2 = 0.2222054327119D+02\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052282741877D+13 R2 = 0.2461523755042D-08\n", " ISTATE -5 - shortening step at time 64929.462608093068 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052502077146D+13 R2 = 0.4414747962618D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052504817239D+13 R2 = 0.1620052579308D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052508601949D+13 R2 = 0.3088325107261D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2472930698051D+13 R2 = 0.1065179575721D+03\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052523775869D+13 R2 = 0.1320536879081D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052526009997D+13 R2 = 0.1747174020392D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473034281674D+13 R2 = 0.2398030184985D+02\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052529792715D+13 R2 = 0.3245392299369D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052531459257D+13 R2 = 0.9196789666322D+01\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052532219715D+13 R2 = 0.7358320005818D+00\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473036493447D+13 R2 = 0.6591908142173D-06\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052533863718D+13 R2 = 0.1351726424221D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473038989951D+13 R2 = 0.1688710197724D+02\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052535042476D+13 R2 = 0.1987215957979D+02\n", " ISTATE -5 - shortening step at time 64945.656388518706 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473074742477D+13 R2 = 0.2561572185680D+02\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473085079490D+13 R2 = 0.2377936005734D+02\n", " ISTATE -5 - shortening step at time 77557.679745786081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2052640280019D+13 R2 = 0.3796810039628D-09\n", " ISTATE -5 - shortening step at time 64953.640584693298 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473187381372D+13 R2 = 0.7035336022829D-07\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473194341160D+13 R2 = 0.2068423438031D+02\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473245344619D+13 R2 = 0.1930791495869D+02\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473257153915D+13 R2 = 0.2394526614903D+02\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473266986861D+13 R2 = 0.1685913376685D+02\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473287963749D+13 R2 = 0.3773286606047D+02\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473289671192D+13 R2 = 0.5654003839662D+01\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473548869728D+13 R2 = 0.4040446525255D-06\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473570654339D+13 R2 = 0.5309564791167D-06\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473826452546D+13 R2 = 0.4261561479518D+02\n", " ISTATE -5 - shortening step at time 78262.186059825486 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473836201528D+13 R2 = 0.1409586201732D-06\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473857073483D+13 R2 = 0.4903313967170D+00\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473870284891D+13 R2 = 0.1802273507691D+02\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2473878596505D+13 R2 = 0.8187286378205D+01\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2477151833760D+13 R2 = 0.9731597585608D-06\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2477167958157D+13 R2 = 0.4736525361573D-05\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2478762094958D+13 R2 = 0.7784741624372D-06\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2478826422438D+13 R2 = 0.2249786394419D+02\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2478946540887D+13 R2 = 0.6546088249699D-06\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2478954697813D+13 R2 = 0.9136600221844D-06\n", " ISTATE -5 - shortening step at time 78285.647232473551 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2478965440583D+13 R2 = 0.1303155160704D-05\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479205065782D+13 R2 = 0.1798660424287D+03\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479223173407D+13 R2 = 0.1897936746460D-05\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479227910667D+13 R2 = 0.3963647679159D-05\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2257805765268D+13 R2 = 0.3360078104170D-10\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479230270457D+13 R2 = 0.6859470361033D-06\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479232132142D+13 R2 = 0.5574047682539D+01\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479233725422D+13 R2 = 0.7182542984881D+01\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258071084682D+13 R2 = 0.2861951986572D+02\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479236190023D+13 R2 = 0.1897555050795D+02\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479253317592D+13 R2 = 0.1330143880300D-05\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258079941887D+13 R2 = 0.3169839033628D-08\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479257890495D+13 R2 = 0.1136891354336D+02\n", " ISTATE -5 - shortening step at time 78447.933475106081 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479380785840D+13 R2 = 0.8787084276764D+02\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258080429306D+13 R2 = 0.8747462769053D-08\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479382674754D+13 R2 = 0.5322787141828D-06\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479471199567D+13 R2 = 0.4427002002988D+01\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258081929854D+13 R2 = 0.1092734276937D-06\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479481463234D+13 R2 = 0.1938526160297D+03\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258096824547D+13 R2 = 0.2935552760435D+02\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258098463294D+13 R2 = 0.2235701424066D+01\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479559802243D+13 R2 = 0.6537915919188D+01\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258137085596D+13 R2 = 0.3184742099605D+02\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2479603815379D+13 R2 = 0.3067725651606D+02\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258138276773D+13 R2 = 0.5112601853562D+01\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258138545722D+13 R2 = 0.8419079670222D-08\n", " ISTATE -5 - shortening step at time 71449.006191778099 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258145856109D+13 R2 = 0.1916322176464D+01\n", " ISTATE -5 - shortening step at time 71460.080560808114 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258145917143D+13 R2 = 0.2325959099263D-01\n", " ISTATE -5 - shortening step at time 71460.080560808114 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2481357221362D+13 R2 = 0.1578047452948D-05\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258146064369D+13 R2 = 0.4314458855994D+00\n", " ISTATE -5 - shortening step at time 71460.080560808114 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258147272185D+13 R2 = 0.1416779665283D+01\n", " ISTATE -5 - shortening step at time 71460.080560808114 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2258148173488D+13 R2 = 0.9099332652607D+01\n", " ISTATE -5 - shortening step at time 71460.080560808114 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2481359824297D+13 R2 = 0.2551944666641D-05\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2481428401787D+13 R2 = 0.1143075321803D-05\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2482611796706D+13 R2 = 0.2384915062300D+02\n", " ISTATE -5 - shortening step at time 78457.528180219335 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2504770323489D+13 R2 = 0.2486218154886D+02\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2504775546102D+13 R2 = 0.1225435343796D-05\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2504781831308D+13 R2 = 0.6670469479377D-06\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2504784506506D+13 R2 = 0.1232313947650D+02\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505387672959D+13 R2 = 0.3434786171766D-06\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505461795842D+13 R2 = 0.5044299421503D-06\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2505471907143D+13 R2 = 0.2334675740208D+02\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2508375154613D+13 R2 = 0.1579429820216D-04\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2508387462711D+13 R2 = 0.2514833537187D+02\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2508393432311D+13 R2 = 0.8875697555206D-06\n", " ISTATE -5 - shortening step at time 78563.664452725352 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2509397715685D+13 R2 = 0.2322821146553D+02\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2510122089812D+13 R2 = 0.1047315443820D-05\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2513843385188D+13 R2 = 0.8488357212723D-06\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2513846500290D+13 R2 = 0.2078605873887D+01\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515247700448D+13 R2 = 0.1242842786427D-05\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515258518997D+13 R2 = 0.3900514615871D-05\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515329930304D+13 R2 = 0.1950874715802D+02\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515460590280D+13 R2 = 0.7287848627333D-05\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515481494079D+13 R2 = 0.9880123778837D-06\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2515485549362D+13 R2 = 0.1212258706205D+02\n", " ISTATE -5 - shortening step at time 79379.538997175347 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523065776538D+13 R2 = 0.7950426455088D+02\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523073679709D+13 R2 = 0.2482603933542D+02\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523078183941D+13 R2 = 0.1768213221744D+02\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523082349421D+13 R2 = 0.3584843468407D-05\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523087035577D+13 R2 = 0.1043252077381D-05\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523095570533D+13 R2 = 0.5941509575322D-05\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523102633216D+13 R2 = 0.1694994725326D-05\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523105795541D+13 R2 = 0.1127398635171D+02\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2523840313099D+13 R2 = 0.7667095214528D-05\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2524096104085D+13 R2 = 0.2598335107738D+02\n", " ISTATE -5 - shortening step at time 79603.973081088247 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2524832852501D+13 R2 = 0.2986610468139D+02\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2524960505473D+13 R2 = 0.2291424402449D+02\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2524987247260D+13 R2 = 0.3641085455215D+02\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2525195148951D+13 R2 = 0.2703306341583D+02\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2525267582771D+13 R2 = 0.4400343916313D-05\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2525270347469D+13 R2 = 0.1134889911886D-05\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2525300828352D+13 R2 = 0.4280479206659D+02\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2525310380274D+13 R2 = 0.4805818282403D+01\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2525317328437D+13 R2 = 0.1424101331616D-05\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2527441093007D+13 R2 = 0.7084003258511D-06\n", " ISTATE -5 - shortening step at time 79876.458990033992 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539700984717D+13 R2 = 0.1355917308495D+03\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539706259468D+13 R2 = 0.7292592716000D-04\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539711310976D+13 R2 = 0.2108686282558D+02\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539728517871D+13 R2 = 0.3507449579135D+02\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539827541977D+13 R2 = 0.2020513722578D+02\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539831216071D+13 R2 = 0.7554777020985D+02\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539861427704D+13 R2 = 0.4140898263114D+02\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2539865778103D+13 R2 = 0.4342545948382D+01\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2542717065860D+13 R2 = 0.6950895781516D-06\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543057847848D+13 R2 = 0.1731156720110D-04\n", " ISTATE -5 - shortening step at time 79982.313069833937 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543090543142D+13 R2 = 0.3104135981369D+02\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543118999061D+13 R2 = 0.8808162281240D-07\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543141434300D+13 R2 = 0.9910905140733D-06\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543145123653D+13 R2 = 0.8144984978803D-06\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543176294862D+13 R2 = 0.2754707359803D+02\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2543246385342D+13 R2 = 0.1702039547941D-05\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2544229433812D+13 R2 = 0.1110472980445D-06\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2544233768867D+13 R2 = 0.2390261385525D+02\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2545370655362D+13 R2 = 0.6495573677028D-06\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2545758713916D+13 R2 = 0.4753762853155D-04\n", " ISTATE -5 - shortening step at time 80476.514172391806 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2551873650638D+13 R2 = 0.9033434862482D+02\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2551889201559D+13 R2 = 0.1735625662390D+02\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2551900633108D+13 R2 = 0.2971116151427D+02\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2552036761339D+13 R2 = 0.1872004300127D+02\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2554716833101D+13 R2 = 0.9935808845652D-06\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2555550874098D+13 R2 = 0.3173483795777D+02\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2555932207133D+13 R2 = 0.9579258378608D-06\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2556079735415D+13 R2 = 0.5769488603729D-06\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2556085929393D+13 R2 = 0.1142303264559D+03\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2556831768746D+13 R2 = 0.3407655307052D+02\n", " ISTATE -5 - shortening step at time 80561.984617594862 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2570900858558D+13 R2 = 0.4405738714641D+02\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2570919913691D+13 R2 = 0.9781125252865D+02\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2571072430391D+13 R2 = 0.6742653467070D+02\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2571223103076D+13 R2 = 0.5665321532723D-06\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2571235621846D+13 R2 = 0.2044822059082D+02\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2572202684915D+13 R2 = 0.2899570332134D-06\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2572205094464D+13 R2 = 0.7324166008561D-06\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2572206985721D+13 R2 = 0.1153082479825D-05\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2573911397725D+13 R2 = 0.2020913120762D+02\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2573912967822D+13 R2 = 0.5183893047150D+01\n", " ISTATE -5 - shortening step at time 80912.397745127601 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2578572925457D+13 R2 = 0.3404476644112D+02\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2578659501861D+13 R2 = 0.4368787736714D+02\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581558383546D+13 R2 = 0.1318202784328D+03\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581585443972D+13 R2 = 0.8980670658362D-06\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581594532318D+13 R2 = 0.1988458206847D+02\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581600836862D+13 R2 = 0.9242915694560D+02\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581603297413D+13 R2 = 0.1336708590851D+02\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581647971023D+13 R2 = 0.6500825148833D-06\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2581650170893D+13 R2 = 0.3765006578345D-06\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2585005511523D+13 R2 = 0.1616935730579D+03\n", " ISTATE -5 - shortening step at time 81452.942019674170 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2612252337475D+13\n", " ISTATE -1: Reducing time step to 731.81579201944237 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2612262376460D+13 R2 = 0.2582382961136D-06\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2612265843141D+13 R2 = 0.5660719415937D+01\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2613381082926D+13 R2 = 0.9729517459307D-06\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2645852253755D+13\n", " ISTATE -1: Reducing time step to 625.48694144787191 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2661363709766D+13 R2 = 0.8499439806448D+01\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2661518452457D+13 R2 = 0.9830810567120D-06\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2661608117820D+13 R2 = 0.4880629129743D-06\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2661617054077D+13 R2 = 0.9540582496522D-06\n", " ISTATE -5 - shortening step at time 81803.971883653154 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2675638935423D+13\n", " ISTATE -1: Reducing time step to 531.22528919509159 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2677631686272D+13 R2 = 0.3262769472785D-06\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2681501960987D+13 R2 = 0.5804555327125D+02\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2681505221504D+13 R2 = 0.2927481581975D-05\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2683146848077D+13 R2 = 0.2222779460027D+02\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2683221296448D+13 R2 = 0.2248022041716D+02\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2686317571186D+13 R2 = 0.2325731113482D+02\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2686325307951D+13 R2 = 0.4117292086282D-05\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2686329811476D+13 R2 = 0.6360054456346D-06\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2686342468632D+13 R2 = 0.2429993891350D+02\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2686899440324D+13 R2 = 0.2532254737797D+02\n", " ISTATE -5 - shortening step at time 84672.118209584965 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687078802339D+13 R2 = 0.2421533085330D-06\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687086721934D+13 R2 = 0.3111937326295D+02\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687090692173D+13 R2 = 0.1362336227002D+02\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687153185632D+13 R2 = 0.8566033011859D+01\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687367003941D+13 R2 = 0.3348599993006D+01\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687535269264D+13 R2 = 0.6730205798807D-06\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2687537850263D+13 R2 = 0.8805489704590D-06\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2688435717663D+13 R2 = 0.5313342740335D-06\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2688449804366D+13 R2 = 0.2424430282946D+02\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2688686363965D+13 R2 = 0.3831414387531D-03\n", " ISTATE -5 - shortening step at time 85028.463301389042 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2702965380492D+13 R2 = 0.3685113124812D+02\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705579310456D+13 R2 = 0.3647003578546D+01\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705587985975D+13 R2 = 0.1297544240654D-05\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705615008746D+13 R2 = 0.1611169516512D+02\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705675590476D+13 R2 = 0.5644641664410D+02\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705681483683D+13 R2 = 0.2122560508835D-03\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705684326866D+13 R2 = 0.7116549888452D+01\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705688283465D+13 R2 = 0.4789616290984D-06\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2705691194493D+13 R2 = 0.9835142779984D+01\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2706505643587D+13 R2 = 0.2517832785289D-06\n", " ISTATE -5 - shortening step at time 85085.011517884908 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2706516019482D+13 R2 = 0.1686175739656D-06\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2707304072746D+13 R2 = 0.2681051823331D-06\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2707306571352D+13 R2 = 0.1905787252575D+02\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2709321673334D+13 R2 = 0.2695984545688D-06\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2709326337516D+13 R2 = 0.2993357181111D+01\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2710619083792D+13 R2 = 0.2611813943783D+02\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2711866361620D+13 R2 = 0.1201198343970D+03\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2711931598194D+13 R2 = 0.2629121652093D+02\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2712420764974D+13 R2 = 0.5453782204067D-06\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2712432178126D+13 R2 = 0.1482868820920D+02\n", " ISTATE -5 - shortening step at time 85648.912771731309 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2717231664995D+13 R2 = 0.6316289596319D-06\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2718178875160D+13 R2 = 0.6970114344685D-06\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2718382784706D+13 R2 = 0.2329299799602D+03\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2720340457621D+13 R2 = 0.1512408639855D+02\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2720789080607D+13 R2 = 0.7096746228562D+01\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2720849486631D+13 R2 = 0.2270046777050D+02\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733532598721D+13 R2 = 0.1850158873230D-06\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733548523148D+13 R2 = 0.7612912780281D-06\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733550442624D+13 R2 = 0.5726962652694D+02\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733554487978D+13 R2 = 0.5752753720333D-06\n", " ISTATE -5 - shortening step at time 85836.461333095693 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733569848013D+13 R2 = 0.6394958950912D+01\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2751380254080D+13 R2 = 0.9934317201616D-06\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2751383532560D+13 R2 = 0.9178058265986D+01\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2751974941693D+13 R2 = 0.3900136040977D+02\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2751978764479D+13 R2 = 0.2597618463262D-05\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2752084902397D+13 R2 = 0.2032275847062D-06\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2752090705981D+13 R2 = 0.2328282256793D+02\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2752190965335D+13 R2 = 0.3812594424251D+02\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2752200329805D+13 R2 = 0.3206131913419D-05\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2752207364929D+13 R2 = 0.2232195422860D+02\n", " ISTATE -5 - shortening step at time 86504.888860064733 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483960560505D+13 R2 = 0.1886572110237D-10\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483960620663D+13 R2 = 0.3162819283589D+00\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483960629669D+13 R2 = 0.9172277110133D-08\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483960691131D+13 R2 = 0.2110025297488D+00\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483960700964D+13 R2 = 0.3787749037781D-08\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483960754920D+13 R2 = 0.2419629963874D-08\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483961062235D+13 R2 = 0.4888665480653D+00\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483961201401D+13 R2 = 0.6669773081937D+00\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483961547588D+13 R2 = 0.5267252531062D+00\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2483962446213D+13 R2 = 0.1494597203722D+01\n", " ISTATE -5 - shortening step at time 78606.090320630014 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2490627862501D+13 R2 = 0.2170185539676D+04\n", " ISTATE -5 - shortening step at time 78606.406525730039 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2490627969479D+13 R2 = 0.2662479674240D+00\n", " ISTATE -5 - shortening step at time 78606.406525730039 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2490628328994D+13 R2 = 0.3906569504972D+01\n", " ISTATE -5 - shortening step at time 78606.406525730039 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732376537284D+13 R2 = 0.2899594595975D+01\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732379946254D+13 R2 = 0.4288473219385D+01\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732383541161D+13 R2 = 0.1131492266760D+02\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732384936868D+13 R2 = 0.3020468777223D+01\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732385219063D+13 R2 = 0.1927073167560D+01\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732385479224D+13 R2 = 0.1952896516601D+01\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732385831507D+13 R2 = 0.3703200271632D+01\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732390994553D+13 R2 = 0.3892417859293D-08\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732391079161D+13 R2 = 0.2897514112257D-07\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732391134331D+13 R2 = 0.4903561570972D-07\n", " ISTATE -5 - shortening step at time 86467.049052425820 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2732719966281D+13 R2 = 0.1147527969283D-07\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733468391989D+13 R2 = 0.2648924388176D+02\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733468705318D+13 R2 = 0.4379467162539D+01\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733525981348D+13 R2 = 0.1335569823613D-09\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733528739929D+13 R2 = 0.4074922746173D+02\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733529103592D+13 R2 = 0.3009287238638D+01\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733529467623D+13 R2 = 0.4819460769438D+01\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733529831285D+13 R2 = 0.3359746285856D+01\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733575003340D+13 R2 = 0.2883292502798D-09\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733575585005D+13 R2 = 0.1453862854126D+01\n", " ISTATE -5 - shortening step at time 86468.073871243731 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733588405022D+13 R2 = 0.1591789820411D-09\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733595277440D+13 R2 = 0.2736167980277D-09\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733595640079D+13 R2 = 0.7018646544684D+01\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733595996240D+13 R2 = 0.6689873796593D+01\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733596279881D+13 R2 = 0.1617309333229D+01\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733704408895D+13 R2 = 0.4891655229443D-09\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733711356817D+13 R2 = 0.1255423783824D+02\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733869923586D+13 R2 = 0.4171489219239D-09\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733874797460D+13 R2 = 0.1331320938102D+02\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733875162972D+13 R2 = 0.3361940971573D+01\n", " ISTATE -5 - shortening step at time 86505.556487507900 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733881971191D+13 R2 = 0.1821127538256D+01\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733888848357D+13 R2 = 0.2926971064928D+01\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733889289998D+13 R2 = 0.3965433914547D+01\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733889594561D+13 R2 = 0.4276509938748D+01\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733889949150D+13 R2 = 0.3851761025515D+01\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2733931987105D+13 R2 = 0.2291807038108D+02\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2736126678407D+13 R2 = 0.3488703158453D+04\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2740606501144D+13 R2 = 0.9745232924915D+03\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2740606864575D+13 R2 = 0.3012600714321D+01\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2740616344686D+13 R2 = 0.1649467114002D+02\n", " ISTATE -5 - shortening step at time 86515.036802924747 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2740621229177D+13 R2 = 0.3393041590385D-09\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2740621339846D+13 R2 = 0.1222531880847D+01\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2740622394107D+13 R2 = 0.9124267179484D+00\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.3027282142398D+13\n", " ISTATE -1: Reducing time step to 0.46210330312425585 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3040226519322D+13 R2 = 0.1410222256788D-05\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3040236246718D+13 R2 = 0.4364932206611D+02\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3040242785227D+13 R2 = 0.2170249139584D+02\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3040279634682D+13 R2 = 0.3600808901425D+02\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3040298812337D+13 R2 = 0.7551028904953D-06\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3040300500118D+13 R2 = 0.5589979736495D+01\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3048854877704D+13 R2 = 0.3140966090584D+02\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3048912689905D+13 R2 = 0.2656343485209D-05\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3048914538980D+13 R2 = 0.4544897940159D-06\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.3048921079003D+13 R2 = 0.2173352912215D+02\n", " ISTATE -5 - shortening step at time 95804.688830377432 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2794329125957D+13\n", " ISTATE -1: Reducing time step to 697.30671462795499 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2794339231121D+13 R2 = 0.1819867573257D+02\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2794339340637D+13 R2 = 0.9304694395233D-07\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2794342441242D+13 R2 = 0.1714370633170D+02\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2794346149282D+13 R2 = 0.2092580792976D+02\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2794346323143D+13 R2 = 0.1016618143725D+01\n", " ISTATE -5 - shortening step at time 86728.365338155578 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At current T(=R1), MXSTEP(=I1) steps \n", " taken on this call before reaching TOUT. \n", "In the above message, I1 = 10000\n", "In the above message, R1 = 0.2947283881094D+13\n", " ISTATE -1: Reducing time step to 213.27267217081138 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947283905609D+13 R2 = 0.1788496497263D-10\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947293159887D+13 R2 = 0.1524373474902D-08\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947293299241D+13 R2 = 0.4596042650919D+00\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947293552154D+13 R2 = 0.5563882858861D+00\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947293644425D+13 R2 = 0.6216912976039D+00\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947293699650D+13 R2 = 0.2780010904113D-06\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947293723718D+13 R2 = 0.3288796984749D+00\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947294028461D+13 R2 = 0.6637351581047D+00\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947294083686D+13 R2 = 0.1157201508900D-07\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n", " At T(=R1) and step size H(=R2), the \n", " corrector convergence failed repeatedly \n", " or with ABS(H) = HMIN. \n", "In the above message, R1 = 0.2947294416980D+13 R2 = 0.7150077717629D+00\n", " ISTATE -5 - shortening step at time 93268.477249808493 years\n", "[Parallel(n_jobs=4)]: Done 9 out of 9 | elapsed: 12.8min finished\n" ] } ], "source": [ "results = Parallel(n_jobs=4, verbose=100)(\n", " delayed(run_model)(row) for idx, row in model_table.iterrows()\n", ")" ] }, { "cell_type": "code", "execution_count": 14, "id": "d944d45a", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T14:04:50.006479Z", "iopub.status.busy": "2026-01-23T14:04:50.006275Z", "iopub.status.idle": "2026-01-23T14:04:50.010341Z", "shell.execute_reply": "2026-01-23T14:04:50.009739Z" } }, "outputs": [], "source": [ "model_table[[\"Result\", \"Dissipation Time\"] + out_species] = results" ] }, { "cell_type": "code", "execution_count": 15, "id": "f5118122", "metadata": { "execution": { "iopub.execute_input": "2026-01-23T14:04:50.012270Z", "iopub.status.busy": "2026-01-23T14:04:50.012087Z", "iopub.status.idle": "2026-01-23T14:04:50.023148Z", "shell.execute_reply": "2026-01-23T14:04:50.022374Z" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
shock_velocitydensityoutputFileResultDissipation TimeCOH2OCH3OH
010.010000.0../grid_folder/shocks/10.0_10000.0.csv0.01171.8987347.727502e-059.032443e-111.091259e-13
130.010000.0../grid_folder/shocks/30.0_10000.0.csv0.01171.8987343.857602e-054.406510e-091.877419e-09
250.010000.0../grid_folder/shocks/50.0_10000.0.csv0.01171.8987341.764834e-058.205886e-062.386000e-09
310.0100000.0../grid_folder/shocks/10.0_100000.0.csv0.0117.1898731.421654e-072.620144e-116.078558e-12
430.0100000.0../grid_folder/shocks/30.0_100000.0.csv0.0117.1898731.000000e-309.724717e-241.000000e-30
550.0100000.0../grid_folder/shocks/50.0_100000.0.csv0.0117.1898731.255803e-231.341413e-211.415236e-21
610.01000000.0../grid_folder/shocks/10.0_1000000.0.csv0.011.7189871.000000e-304.969478e-239.955300e-23
730.01000000.0../grid_folder/shocks/30.0_1000000.0.csv0.011.7189871.000000e-301.295483e-221.325980e-22
850.01000000.0../grid_folder/shocks/50.0_1000000.0.csv0.011.7189871.000000e-305.745831e-201.281588e-26
\n", "
" ], "text/plain": [ " shock_velocity density outputFile \\\n", "0 10.0 10000.0 ../grid_folder/shocks/10.0_10000.0.csv \n", "1 30.0 10000.0 ../grid_folder/shocks/30.0_10000.0.csv \n", "2 50.0 10000.0 ../grid_folder/shocks/50.0_10000.0.csv \n", "3 10.0 100000.0 ../grid_folder/shocks/10.0_100000.0.csv \n", "4 30.0 100000.0 ../grid_folder/shocks/30.0_100000.0.csv \n", "5 50.0 100000.0 ../grid_folder/shocks/50.0_100000.0.csv \n", "6 10.0 1000000.0 ../grid_folder/shocks/10.0_1000000.0.csv \n", "7 30.0 1000000.0 ../grid_folder/shocks/30.0_1000000.0.csv \n", "8 50.0 1000000.0 ../grid_folder/shocks/50.0_1000000.0.csv \n", "\n", " Result Dissipation Time CO H2O CH3OH \n", "0 0.0 1171.898734 7.727502e-05 9.032443e-11 1.091259e-13 \n", "1 0.0 1171.898734 3.857602e-05 4.406510e-09 1.877419e-09 \n", "2 0.0 1171.898734 1.764834e-05 8.205886e-06 2.386000e-09 \n", "3 0.0 117.189873 1.421654e-07 2.620144e-11 6.078558e-12 \n", "4 0.0 117.189873 1.000000e-30 9.724717e-24 1.000000e-30 \n", "5 0.0 117.189873 1.255803e-23 1.341413e-21 1.415236e-21 \n", "6 0.0 11.718987 1.000000e-30 4.969478e-23 9.955300e-23 \n", "7 0.0 11.718987 1.000000e-30 1.295483e-22 1.325980e-22 \n", "8 0.0 11.718987 1.000000e-30 5.745831e-20 1.281588e-26 " ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model_table" ] }, { "cell_type": "markdown", "id": "ba7426ad", "metadata": {}, "source": [ "## Summary\n", "\n", "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.\n", "\n", "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.\n" ] }, { "cell_type": "markdown", "id": "996f9034", "metadata": {}, "source": [] } ], "metadata": { "jupytext": { "formats": "ipynb,py:light" }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.13.11" } }, "nbformat": 4, "nbformat_minor": 5 }