From 30870881ec51a8f8a0948e62914487d2f4e4ffdd Mon Sep 17 00:00:00 2001 From: Albert Kottke Date: Tue, 7 May 2024 15:20:30 -0700 Subject: [PATCH] Fixed line lengths. Reformatted with ruff. --- .github/workflows/updater.yml | 46 +- .pre-commit-config.yaml | 7 +- ...pyrvt.peak_calculators.BooreJoyner1984.rst | 33 -- ...rvt.peak_calculators.BooreThompson2012.rst | 33 -- ...rvt.peak_calculators.BooreThompson2015.rst | 34 -- ...lculators.CartwrightLonguetHiggins1956.rst | 33 -- .../pyrvt.peak_calculators.Davenport1964.rst | 34 -- ...rvt.peak_calculators.DerKiureghian1985.rst | 34 -- .../pyrvt.peak_calculators.LiuPezeshk1999.rst | 33 -- ...pyrvt.peak_calculators.ToroMcGuire1987.rst | 34 -- .../pyrvt.peak_calculators.Vanmarcke1975.rst | 34 -- .../pyrvt.peak_calculators.WangRathje2018.rst | 35 -- ...pyrvt.peak_calculators.BooreJoyner1984.rst | 18 +- ...rvt.peak_calculators.BooreThompson2012.rst | 18 +- ...rvt.peak_calculators.BooreThompson2015.rst | 18 +- ...lculators.CartwrightLonguetHiggins1956.rst | 18 +- .../pyrvt.peak_calculators.Davenport1964.rst | 18 +- ...rvt.peak_calculators.DerKiureghian1985.rst | 18 +- .../pyrvt.peak_calculators.LiuPezeshk1999.rst | 18 +- ...pyrvt.peak_calculators.ToroMcGuire1987.rst | 18 +- .../pyrvt.peak_calculators.Vanmarcke1975.rst | 18 +- .../pyrvt.peak_calculators.WangRathje2018.rst | 18 +- docs/reference/motions.rst | 1 - mkdocs.yml | 3 - scripts/scratch.py | 1 - setup.py | 1 - src/pyrvt/__init__.py | 4 +- src/pyrvt/motions.py | 7 +- src/pyrvt/peak_calculators.py | 5 +- tests/data/README.rst | 2 - tests/data/fas_drvr.test-bj84.sum | 20 +- tests/data/fas_drvr.test-bt12_ena.sum | 20 +- tests/data/fas_drvr.test-bt12_wna.sum | 20 +- tests/data/fas_drvr.test-bt15_ena.sum | 22 +- tests/data/fas_drvr.test-bt15_wna.sum | 22 +- tests/data/fas_drvr.test-lp99.sum | 20 +- tests/data/test-bj84.gmrv.sum | 22 +- tests/data/test-bj84.m6.00r020.0_fs.col | 402 +++++++++--------- tests/data/test-bj84.ofr | 62 +-- tests/data/test-bt12_ena.gmrv.sum | 22 +- tests/data/test-bt12_ena.m6.00r020.0_fs.col | 402 +++++++++--------- tests/data/test-bt12_ena.ofr | 62 +-- tests/data/test-bt12_wna.gmrv.sum | 22 +- tests/data/test-bt12_wna.m6.00r020.0_fs.col | 402 +++++++++--------- tests/data/test-bt12_wna.ofr | 62 +-- tests/data/test-bt15_ena.gmrv.sum | 24 +- tests/data/test-bt15_ena.m6.00rps020.8_fs.col | 402 +++++++++--------- tests/data/test-bt15_ena.ofr | 84 ++-- tests/data/test-bt15_wna.gmrv.sum | 24 +- tests/data/test-bt15_wna.m6.00rps021.3_fs.col | 402 +++++++++--------- tests/data/test-bt15_wna.ofr | 105 +++-- tests/data/test-lp99.gmrv.sum | 22 +- tests/data/test-lp99.m6.00r020.0_fs.col | 402 +++++++++--------- tests/data/test-lp99.ofr | 62 +-- tests/test_motions.py | 3 +- tests/test_peak_calculators.py | 3 +- tests/test_tools.py | 3 +- 57 files changed, 1670 insertions(+), 2042 deletions(-) delete mode 100644 docs/generated/pyrvt.peak_calculators.BooreJoyner1984.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.BooreThompson2012.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.BooreThompson2015.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.Davenport1964.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.DerKiureghian1985.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.Vanmarcke1975.rst delete mode 100644 docs/generated/pyrvt.peak_calculators.WangRathje2018.rst diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index 00069bf..c2c80c6 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -2,32 +2,32 @@ name: GitHub Actions Version Updater # Controls when the action will run. on: - workflow_dispatch: + workflow_dispatch: - schedule: - # Automatically run on every Sunday - - cron: "0 0 * * 0" + schedule: + # Automatically run on every Sunday + - cron: "0 0 * * 0" jobs: - build: - runs-on: ubuntu-latest + build: + runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4.1.3 - with: - # [Required] Access token with `workflow` scope. - token: ${{ secrets.UPDATER_TOKEN }} + steps: + - uses: actions/checkout@v4.1.3 + with: + # [Required] Access token with `workflow` scope. + token: ${{ secrets.UPDATER_TOKEN }} - - name: Remove LFS hooks - # This repository uses Git LFS, but it not being - # in the container causes the action to fail to create a new branch. - # Removing the hooks manually is harmless and works around this issue. - run: | - rm .git/hooks/post-checkout - rm .git/hooks/pre-push + - name: Remove LFS hooks + # This repository uses Git LFS, but it not being + # in the container causes the action to fail to create a new branch. + # Removing the hooks manually is harmless and works around this issue. + run: | + rm .git/hooks/post-checkout + rm .git/hooks/pre-push - - name: Run GitHub Actions Version Updater - uses: saadmk11/github-actions-version-updater@v0.8.1 - with: - # [Required] Access token with `workflow` scope. - token: ${{ secrets.UPDATER_TOKEN }} + - name: Run GitHub Actions Version Updater + uses: saadmk11/github-actions-version-updater@v0.8.1 + with: + # [Required] Access token with `workflow` scope. + token: ${{ secrets.UPDATER_TOKEN }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dfd0cb8..991be81 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,6 +19,7 @@ repos: hooks: - id: trailing-whitespace - id: check-json + # Unsafe required for mkdocs.yml format - id: check-yaml args: [--unsafe] - id: check-toml @@ -28,8 +29,4 @@ repos: rev: v4.0.0-alpha.8 hooks: - id: prettier - - repo: https://github.com/pycqa/pydocstyle - rev: 6.3.0 # pick a git hash / tag to point to - hooks: - - id: pydocstyle - exclude: test_* + files: \.(md|yml)$ diff --git a/docs/generated/pyrvt.peak_calculators.BooreJoyner1984.rst b/docs/generated/pyrvt.peak_calculators.BooreJoyner1984.rst deleted file mode 100644 index dcff732..0000000 --- a/docs/generated/pyrvt.peak_calculators.BooreJoyner1984.rst +++ /dev/null @@ -1,33 +0,0 @@ -pyrvt.peak\_calculators.BooreJoyner1984 -======================================= - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: BooreJoyner1984 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~BooreJoyner1984.__init__ - ~BooreJoyner1984.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~BooreJoyner1984.ABBREV - ~BooreJoyner1984.NAME - ~BooreJoyner1984.abbrev - ~BooreJoyner1984.min_zero_crossings - ~BooreJoyner1984.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.BooreThompson2012.rst b/docs/generated/pyrvt.peak_calculators.BooreThompson2012.rst deleted file mode 100644 index c3b1f75..0000000 --- a/docs/generated/pyrvt.peak_calculators.BooreThompson2012.rst +++ /dev/null @@ -1,33 +0,0 @@ -pyrvt.peak\_calculators.BooreThompson2012 -========================================= - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: BooreThompson2012 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~BooreThompson2012.__init__ - ~BooreThompson2012.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~BooreThompson2012.ABBREV - ~BooreThompson2012.NAME - ~BooreThompson2012.abbrev - ~BooreThompson2012.min_zero_crossings - ~BooreThompson2012.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.BooreThompson2015.rst b/docs/generated/pyrvt.peak_calculators.BooreThompson2015.rst deleted file mode 100644 index 792f1c5..0000000 --- a/docs/generated/pyrvt.peak_calculators.BooreThompson2015.rst +++ /dev/null @@ -1,34 +0,0 @@ -pyrvt.peak\_calculators.BooreThompson2015 -========================================= - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: BooreThompson2015 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~BooreThompson2015.__init__ - ~BooreThompson2015.limited_num_zero_crossings - ~BooreThompson2015.nonstationarity_factor - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~BooreThompson2015.ABBREV - ~BooreThompson2015.NAME - ~BooreThompson2015.abbrev - ~BooreThompson2015.min_zero_crossings - ~BooreThompson2015.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst b/docs/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst deleted file mode 100644 index 11743a5..0000000 --- a/docs/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst +++ /dev/null @@ -1,33 +0,0 @@ -pyrvt.peak\_calculators.CartwrightLonguetHiggins1956 -==================================================== - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: CartwrightLonguetHiggins1956 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~CartwrightLonguetHiggins1956.__init__ - ~CartwrightLonguetHiggins1956.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~CartwrightLonguetHiggins1956.ABBREV - ~CartwrightLonguetHiggins1956.NAME - ~CartwrightLonguetHiggins1956.abbrev - ~CartwrightLonguetHiggins1956.min_zero_crossings - ~CartwrightLonguetHiggins1956.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.Davenport1964.rst b/docs/generated/pyrvt.peak_calculators.Davenport1964.rst deleted file mode 100644 index 110079a..0000000 --- a/docs/generated/pyrvt.peak_calculators.Davenport1964.rst +++ /dev/null @@ -1,34 +0,0 @@ -pyrvt.peak\_calculators.Davenport1964 -===================================== - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: Davenport1964 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~Davenport1964.__init__ - ~Davenport1964.asymtotic_approx - ~Davenport1964.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~Davenport1964.ABBREV - ~Davenport1964.NAME - ~Davenport1964.abbrev - ~Davenport1964.min_zero_crossings - ~Davenport1964.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.DerKiureghian1985.rst b/docs/generated/pyrvt.peak_calculators.DerKiureghian1985.rst deleted file mode 100644 index a895611..0000000 --- a/docs/generated/pyrvt.peak_calculators.DerKiureghian1985.rst +++ /dev/null @@ -1,34 +0,0 @@ -pyrvt.peak\_calculators.DerKiureghian1985 -========================================= - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: DerKiureghian1985 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~DerKiureghian1985.__init__ - ~DerKiureghian1985.asymtotic_approx - ~DerKiureghian1985.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~DerKiureghian1985.ABBREV - ~DerKiureghian1985.NAME - ~DerKiureghian1985.abbrev - ~DerKiureghian1985.min_zero_crossings - ~DerKiureghian1985.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst b/docs/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst deleted file mode 100644 index fc05736..0000000 --- a/docs/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst +++ /dev/null @@ -1,33 +0,0 @@ -pyrvt.peak\_calculators.LiuPezeshk1999 -====================================== - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: LiuPezeshk1999 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~LiuPezeshk1999.__init__ - ~LiuPezeshk1999.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~LiuPezeshk1999.ABBREV - ~LiuPezeshk1999.NAME - ~LiuPezeshk1999.abbrev - ~LiuPezeshk1999.min_zero_crossings - ~LiuPezeshk1999.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst b/docs/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst deleted file mode 100644 index 861757f..0000000 --- a/docs/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst +++ /dev/null @@ -1,34 +0,0 @@ -pyrvt.peak\_calculators.ToroMcGuire1987 -======================================= - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: ToroMcGuire1987 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~ToroMcGuire1987.__init__ - ~ToroMcGuire1987.asymtotic_approx - ~ToroMcGuire1987.limited_num_zero_crossings - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~ToroMcGuire1987.ABBREV - ~ToroMcGuire1987.NAME - ~ToroMcGuire1987.abbrev - ~ToroMcGuire1987.min_zero_crossings - ~ToroMcGuire1987.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.Vanmarcke1975.rst b/docs/generated/pyrvt.peak_calculators.Vanmarcke1975.rst deleted file mode 100644 index f544ac4..0000000 --- a/docs/generated/pyrvt.peak_calculators.Vanmarcke1975.rst +++ /dev/null @@ -1,34 +0,0 @@ -pyrvt.peak\_calculators.Vanmarcke1975 -===================================== - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: Vanmarcke1975 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~Vanmarcke1975.__init__ - ~Vanmarcke1975.limited_num_zero_crossings - ~Vanmarcke1975.nonstationarity_factor - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~Vanmarcke1975.ABBREV - ~Vanmarcke1975.NAME - ~Vanmarcke1975.abbrev - ~Vanmarcke1975.min_zero_crossings - ~Vanmarcke1975.name - - \ No newline at end of file diff --git a/docs/generated/pyrvt.peak_calculators.WangRathje2018.rst b/docs/generated/pyrvt.peak_calculators.WangRathje2018.rst deleted file mode 100644 index ee924af..0000000 --- a/docs/generated/pyrvt.peak_calculators.WangRathje2018.rst +++ /dev/null @@ -1,35 +0,0 @@ -pyrvt.peak\_calculators.WangRathje2018 -====================================== - -.. currentmodule:: pyrvt.peak_calculators - -.. autoclass:: WangRathje2018 - - - .. automethod:: __init__ - - - .. rubric:: Methods - - .. autosummary:: - - ~WangRathje2018.__init__ - ~WangRathje2018.limited_num_zero_crossings - ~WangRathje2018.nonstationarity_factor - - - - - - .. rubric:: Attributes - - .. autosummary:: - - ~WangRathje2018.ABBREV - ~WangRathje2018.COEFS - ~WangRathje2018.NAME - ~WangRathje2018.abbrev - ~WangRathje2018.min_zero_crossings - ~WangRathje2018.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.BooreJoyner1984.rst b/docs/reference/generated/pyrvt.peak_calculators.BooreJoyner1984.rst index dcff732..a214857 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.BooreJoyner1984.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.BooreJoyner1984.rst @@ -5,29 +5,27 @@ .. autoclass:: BooreJoyner1984 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~BooreJoyner1984.__init__ ~BooreJoyner1984.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~BooreJoyner1984.ABBREV ~BooreJoyner1984.NAME ~BooreJoyner1984.abbrev ~BooreJoyner1984.min_zero_crossings ~BooreJoyner1984.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2012.rst b/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2012.rst index c3b1f75..cc7035d 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2012.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2012.rst @@ -5,29 +5,27 @@ .. autoclass:: BooreThompson2012 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~BooreThompson2012.__init__ ~BooreThompson2012.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~BooreThompson2012.ABBREV ~BooreThompson2012.NAME ~BooreThompson2012.abbrev ~BooreThompson2012.min_zero_crossings ~BooreThompson2012.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2015.rst b/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2015.rst index 792f1c5..385a2f8 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2015.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.BooreThompson2015.rst @@ -5,30 +5,28 @@ .. autoclass:: BooreThompson2015 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~BooreThompson2015.__init__ ~BooreThompson2015.limited_num_zero_crossings ~BooreThompson2015.nonstationarity_factor - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~BooreThompson2015.ABBREV ~BooreThompson2015.NAME ~BooreThompson2015.abbrev ~BooreThompson2015.min_zero_crossings ~BooreThompson2015.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst b/docs/reference/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst index 11743a5..8c5ad2e 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.CartwrightLonguetHiggins1956.rst @@ -5,29 +5,27 @@ .. autoclass:: CartwrightLonguetHiggins1956 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~CartwrightLonguetHiggins1956.__init__ ~CartwrightLonguetHiggins1956.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~CartwrightLonguetHiggins1956.ABBREV ~CartwrightLonguetHiggins1956.NAME ~CartwrightLonguetHiggins1956.abbrev ~CartwrightLonguetHiggins1956.min_zero_crossings ~CartwrightLonguetHiggins1956.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.Davenport1964.rst b/docs/reference/generated/pyrvt.peak_calculators.Davenport1964.rst index 110079a..5492e6a 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.Davenport1964.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.Davenport1964.rst @@ -5,30 +5,28 @@ .. autoclass:: Davenport1964 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~Davenport1964.__init__ ~Davenport1964.asymtotic_approx ~Davenport1964.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~Davenport1964.ABBREV ~Davenport1964.NAME ~Davenport1964.abbrev ~Davenport1964.min_zero_crossings ~Davenport1964.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.DerKiureghian1985.rst b/docs/reference/generated/pyrvt.peak_calculators.DerKiureghian1985.rst index a895611..b92a1dc 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.DerKiureghian1985.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.DerKiureghian1985.rst @@ -5,30 +5,28 @@ .. autoclass:: DerKiureghian1985 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~DerKiureghian1985.__init__ ~DerKiureghian1985.asymtotic_approx ~DerKiureghian1985.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~DerKiureghian1985.ABBREV ~DerKiureghian1985.NAME ~DerKiureghian1985.abbrev ~DerKiureghian1985.min_zero_crossings ~DerKiureghian1985.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst b/docs/reference/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst index fc05736..52e4735 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.LiuPezeshk1999.rst @@ -5,29 +5,27 @@ .. autoclass:: LiuPezeshk1999 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~LiuPezeshk1999.__init__ ~LiuPezeshk1999.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~LiuPezeshk1999.ABBREV ~LiuPezeshk1999.NAME ~LiuPezeshk1999.abbrev ~LiuPezeshk1999.min_zero_crossings ~LiuPezeshk1999.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst b/docs/reference/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst index 861757f..aac7033 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.ToroMcGuire1987.rst @@ -5,30 +5,28 @@ .. autoclass:: ToroMcGuire1987 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~ToroMcGuire1987.__init__ ~ToroMcGuire1987.asymtotic_approx ~ToroMcGuire1987.limited_num_zero_crossings - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~ToroMcGuire1987.ABBREV ~ToroMcGuire1987.NAME ~ToroMcGuire1987.abbrev ~ToroMcGuire1987.min_zero_crossings ~ToroMcGuire1987.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.Vanmarcke1975.rst b/docs/reference/generated/pyrvt.peak_calculators.Vanmarcke1975.rst index f544ac4..3c5f54d 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.Vanmarcke1975.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.Vanmarcke1975.rst @@ -5,30 +5,28 @@ .. autoclass:: Vanmarcke1975 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~Vanmarcke1975.__init__ ~Vanmarcke1975.limited_num_zero_crossings ~Vanmarcke1975.nonstationarity_factor - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~Vanmarcke1975.ABBREV ~Vanmarcke1975.NAME ~Vanmarcke1975.abbrev ~Vanmarcke1975.min_zero_crossings ~Vanmarcke1975.name - - \ No newline at end of file diff --git a/docs/reference/generated/pyrvt.peak_calculators.WangRathje2018.rst b/docs/reference/generated/pyrvt.peak_calculators.WangRathje2018.rst index ee924af..a49596b 100644 --- a/docs/reference/generated/pyrvt.peak_calculators.WangRathje2018.rst +++ b/docs/reference/generated/pyrvt.peak_calculators.WangRathje2018.rst @@ -5,31 +5,29 @@ .. autoclass:: WangRathje2018 - + .. automethod:: __init__ - + .. rubric:: Methods .. autosummary:: - + ~WangRathje2018.__init__ ~WangRathje2018.limited_num_zero_crossings ~WangRathje2018.nonstationarity_factor - - - - + + + + .. rubric:: Attributes .. autosummary:: - + ~WangRathje2018.ABBREV ~WangRathje2018.COEFS ~WangRathje2018.NAME ~WangRathje2018.abbrev ~WangRathje2018.min_zero_crossings ~WangRathje2018.name - - \ No newline at end of file diff --git a/docs/reference/motions.rst b/docs/reference/motions.rst index 09965fc..84fa6eb 100644 --- a/docs/reference/motions.rst +++ b/docs/reference/motions.rst @@ -32,4 +32,3 @@ Helper functions .. autofunction:: calc_sdof_tf .. autofunction:: log_spaced_values .. autofunction:: sort_increasing - diff --git a/mkdocs.yml b/mkdocs.yml index c146605..49d16ea 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -79,9 +79,6 @@ markdown_extensions: - pymdownx.arithmatex: generic: true - pymdownx.details - - pymdownx.emoji: - emoji_index: !!python/name:material.extensions.emoji.twemoji - emoji_generator: !!python/name:material.extensions.emoji.to_svg - footnotes - pymdownx.magiclink - pymdownx.snippets: diff --git a/scripts/scratch.py b/scripts/scratch.py index f058318..ff5eca6 100644 --- a/scripts/scratch.py +++ b/scripts/scratch.py @@ -1,7 +1,6 @@ import datetime import dask - import pyrvt # def inc(a): diff --git a/setup.py b/setup.py index 2553605..374f6ae 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ #!/usr/bin/env python - from setuptools import setup if __name__ == "__main__": diff --git a/src/pyrvt/__init__.py b/src/pyrvt/__init__.py index d0e1fb1..890587e 100644 --- a/src/pyrvt/__init__.py +++ b/src/pyrvt/__init__.py @@ -1,5 +1,7 @@ #!/usr/bin/python -"""pyRVT module. Provides random vibration theory models for earthquake ground motion calculations.""" +"""pyRVT module. Provides random vibration theory models for earthquake ground motion +calculations. +""" from importlib.metadata import version diff --git a/src/pyrvt/motions.py b/src/pyrvt/motions.py index 397251f..aeb01cf 100644 --- a/src/pyrvt/motions.py +++ b/src/pyrvt/motions.py @@ -622,8 +622,8 @@ def calc_fourier_amps(self, freqs: npt.ArrayLike | None = None) -> np.ndarray: class StaffordEtAl22Motion(RvtMotion): # Site amplification from Al Atik & Abrahamson (2021) generic rock amplification # function for Vs30 of 760 m/s obtained from inversion of the Chiou & Youngs (2014) - # response spectral model note that the ordinate at (0.01, 1.0) has been added to the - # amp function that was provided. These values were taken from: + # response spectral model note that the ordinate at (0.01, 1.0) has been added to + # the amp function that was provided. These values were taken from: # https://github.com/pstafford/StochasticGroundMotionSimulation.jl/blob/master/src/fourier/PJSsite.jl # # In the original code, the interpolation is done on log(amplitdue) and linear @@ -646,7 +646,8 @@ def __init__( Use an RVT framework, and assume the following duration/peak factor models: - Boore & Thompson (2014) for excitation duration - Boore & Thompson (2015) for RMS duration - - Vanmarke (1975)/Der Kiureghian (1980) peak factor expression — as per Boore & Thompson (2015) + - Vanmarke (1975)/Der Kiureghian (1980) peak factor expression; + per Boore & Thompson (2015) Note that other peak factors models are not permitted to be consistent with the Sea22 model. diff --git a/src/pyrvt/peak_calculators.py b/src/pyrvt/peak_calculators.py index fcaec33..d72d73f 100644 --- a/src/pyrvt/peak_calculators.py +++ b/src/pyrvt/peak_calculators.py @@ -5,6 +5,7 @@ Published peak factor models, which compute the expected peak ground motion. A specific model may include oscillator duration correction. """ + import ctypes import itertools import pathlib @@ -878,8 +879,8 @@ def _calc_duration_rms(self, duration, **kwargs): class BooreThompson2012(BooreThompson, BooreJoyner1984): """Boore and Thompson (2012) peak factor. - Peak calculation based on the peak factor definition by :cite:t:`cartwright56` along with the - root-mean-squared duration correction proposed by :cite:t:`boore12`. + Peak calculation based on the peak factor definition by :cite:t:`cartwright56` + along with the root-mean-squared duration correction proposed by :cite:t:`boore12`. Parameters diff --git a/tests/data/README.rst b/tests/data/README.rst index 33bd520..0b4d359 100644 --- a/tests/data/README.rst +++ b/tests/data/README.rst @@ -15,5 +15,3 @@ SMSIM Files References ========== .. _[1] http://daveboore.com/software_online.html - - diff --git a/tests/data/fas_drvr.test-bj84.sum b/tests/data/fas_drvr.test-bj84.sum index af10a0d..8d5129d 100644 --- a/tests/data/fas_drvr.test-bj84.sum +++ b/tests/data/fas_drvr.test-bj84.sum @@ -1,15 +1,15 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: fas_drvr.test-bj84.sum *** Results computed using FAS_DRVR *** - + Date: 2014/02/04 Time Start: 09:25:36.534 - + Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -39,7 +39,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -71,13 +71,13 @@ 0.000 8 parameters for rv calcs: zup, eps_int, amp_cutoff, osc_crrctn 10.00 1.000E-05 1.000E-03 1 - + *********** NEW R AND M *********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 const= 4.757E-24 amag, stress, fa, fb= 6.000E+00 8.000E+01 3.399E-01 3.399E-01 am0, am0b_m0fa= 1.122E+25 0.000E+00 - - + + Time Stop: 09:26:05.002 Elapsed time (sec): 4.000E-03 diff --git a/tests/data/fas_drvr.test-bt12_ena.sum b/tests/data/fas_drvr.test-bt12_ena.sum index 37e6c30..88d23fd 100644 --- a/tests/data/fas_drvr.test-bt12_ena.sum +++ b/tests/data/fas_drvr.test-bt12_ena.sum @@ -1,15 +1,15 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: fas_drvr.test-bt12_ena.sum *** Results computed using FAS_DRVR *** - + Date: 2014/02/04 Time Start: 13:27:24.255 - + Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -39,7 +39,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -73,13 +73,13 @@ 10.00 1.000E-05 1.000E-03 4 WNA Trms4osc coefficients from file wna_bt12_trms4osc.pars ENA Trms4osc coefficients from file ena_bt12_trms4osc.pars - + *********** NEW R AND M *********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 const= 4.757E-24 amag, stress, fa, fb= 6.000E+00 8.000E+01 3.399E-01 3.399E-01 am0, am0b_m0fa= 1.122E+25 0.000E+00 - - + + Time Stop: 13:27:43.778 Elapsed time (sec): 4.002E-03 diff --git a/tests/data/fas_drvr.test-bt12_wna.sum b/tests/data/fas_drvr.test-bt12_wna.sum index a08a8ab..3cd7218 100644 --- a/tests/data/fas_drvr.test-bt12_wna.sum +++ b/tests/data/fas_drvr.test-bt12_wna.sum @@ -1,15 +1,15 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: fas_drvr.test-bt12_wna.sum *** Results computed using FAS_DRVR *** - + Date: 2014/02/04 Time Start: 13:27:58.144 - + Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -39,7 +39,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -73,13 +73,13 @@ 10.00 1.000E-05 1.000E-03 3 WNA Trms4osc coefficients from file wna_bt12_trms4osc.pars ENA Trms4osc coefficients from file ena_bt12_trms4osc.pars - + *********** NEW R AND M *********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 const= 4.757E-24 amag, stress, fa, fb= 6.000E+00 8.000E+01 3.399E-01 3.399E-01 am0, am0b_m0fa= 1.122E+25 0.000E+00 - - + + Time Stop: 13:28:09.779 Elapsed time (sec): 4.001E-03 diff --git a/tests/data/fas_drvr.test-bt15_ena.sum b/tests/data/fas_drvr.test-bt15_ena.sum index a2e9bf5..712d16f 100644 --- a/tests/data/fas_drvr.test-bt15_ena.sum +++ b/tests/data/fas_drvr.test-bt15_ena.sum @@ -1,15 +1,15 @@ - + ***************** SMSIM, Version 6.000 ************************ - - + + output file: fas_drvr.test-bt15_ena.sum *** Results computed using FAS_DRVR *** - + Date: 2018/01/15 Time Start: 17:23:23.237 - + Title: - Boatwright and Seekins (2011) attenuation model) + Boatwright and Seekins (2011) attenuation model) rho, beta, prtitn, rtp, fs: 2.80 3.70 0.707 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -51,7 +51,7 @@ mh_f_ff, m1t_f_ff, m2t_f_ff = 6.74 5.74 7.74 c0t_f_ff, c1t_f_ff, c2t_f_ff, c3t_f_ff = 6.421E-01 4.300E-01 -4.875E-02 -1.515E-09 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -93,7 +93,7 @@ 0.000 6.000E-03 0.000E+00 6.00 low-cut filter parameters: fcut, nslope 0.000 8 - high-cut filter parameters: + high-cut filter parameters: itype_hcfilt 0=no high-cut filter (but the other parameters are needed as placeholders) 1=raised half cycle of cosine @@ -105,13 +105,13 @@ 10.00 1.000E-05 1.000E-03 4 WNA Trms4osc coefficients from file bt15_wna_acr_trms4osc.dk_rms2pk.pars ENA Trms4osc coefficients from file bt15_ena_scr_trms4osc.dk_rms2pk.pars - + *********** NEW R AND M *********** Rrup, f_ff, Rps, amag, kappa = 2.000E+01 5.613E+00 2.077E+01 6.000E+00 6.000E-03 const= 4.364E-24 amag, stress, fa, fb= 6.000E+00 1.850E+02 4.620E-01 4.620E-01 am0, am0b_m0fa= 1.122E+25 0.000E+00 - - + + Time Stop: 17:24:46.664 Elapsed time (sec): 6.001E-03 diff --git a/tests/data/fas_drvr.test-bt15_wna.sum b/tests/data/fas_drvr.test-bt15_wna.sum index 7538a57..60e886d 100644 --- a/tests/data/fas_drvr.test-bt15_wna.sum +++ b/tests/data/fas_drvr.test-bt15_wna.sum @@ -1,15 +1,15 @@ - + ***************** SMSIM, Version 6.000 ************************ - - + + output file: fas_drvr.test-bt15_wna.sum *** Results computed using FAS_DRVR *** - + Date: 2018/01/15 Time Start: 17:26:21.125 - + Title: - Western North America params + Western North America params rho, beta, prtitn, rtp, fs: 2.72 3.50 0.707 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -51,7 +51,7 @@ mh_f_ff, m1t_f_ff, m2t_f_ff = 6.74 5.74 7.74 c0t_f_ff, c1t_f_ff, c2t_f_ff, c3t_f_ff = 7.497E-01 4.300E-01 -4.875E-02 -5.240E-09 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -102,7 +102,7 @@ 0.000 3.500E-02 0.000E+00 0.00 low-cut filter parameters: fcut, nslope 0.000 8 - high-cut filter parameters: + high-cut filter parameters: itype_hcfilt 0=no high-cut filter (but the other parameters are needed as placeholders) 1=raised half cycle of cosine @@ -114,13 +114,13 @@ 10.00 1.000E-05 1.000E-03 3 WNA Trms4osc coefficients from file bt15_wna_acr_trms4osc.dk_rms2pk.pars ENA Trms4osc coefficients from file bt15_ena_scr_trms4osc.dk_rms2pk.pars - + *********** NEW R AND M *********** Rrup, f_ff, Rps, amag, kappa = 2.000E+01 7.191E+00 2.125E+01 6.000E+00 3.500E-02 const= 5.307E-24 amag, stress, fa, fb= 6.000E+00 1.000E+02 3.560E-01 3.560E-01 am0, am0b_m0fa= 1.122E+25 0.000E+00 - - + + Time Stop: 17:26:36.813 Elapsed time (sec): 7.000E-03 diff --git a/tests/data/fas_drvr.test-lp99.sum b/tests/data/fas_drvr.test-lp99.sum index 5c9cf12..c221673 100644 --- a/tests/data/fas_drvr.test-lp99.sum +++ b/tests/data/fas_drvr.test-lp99.sum @@ -1,15 +1,15 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: fas_drvr.test-lp99.sum *** Results computed using FAS_DRVR *** - + Date: 2014/02/04 Time Start: 13:28:29.489 - + Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -39,7 +39,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -71,13 +71,13 @@ 0.000 8 parameters for rv calcs: zup, eps_int, amp_cutoff, osc_crrctn 10.00 1.000E-05 1.000E-03 2 - + *********** NEW R AND M *********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 const= 4.757E-24 amag, stress, fa, fb= 6.000E+00 8.000E+01 3.399E-01 3.399E-01 am0, am0b_m0fa= 1.122E+25 0.000E+00 - - + + Time Stop: 13:28:39.876 Elapsed time (sec): 3.998E-03 diff --git a/tests/data/test-bj84.gmrv.sum b/tests/data/test-bj84.gmrv.sum index a5e6716..3448fb7 100644 --- a/tests/data/test-bj84.gmrv.sum +++ b/tests/data/test-bj84.gmrv.sum @@ -1,16 +1,16 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: test-bj84.gmrv.sum *** Results computed using GM_RV_DRVR *** - + Date: 2014/02/04 Time Start: 08:05:26.443 - - file with parameters: test-bj84.ofr + + file with parameters: test-bj84.ofr Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -40,7 +40,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -73,8 +73,8 @@ parameters for rv calcs: zup, eps_int, amp_cutoff, osc_crrctn 10.00 1.000E-05 1.000E-03 1 fup calculated in driver = 7.329E+01 - - *********** NEW R AND M ********** + + *********** NEW R AND M ********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 File with response spectra: test-bj84.m6.00r020.0_rs.rv.co const= 4.757E-24 @@ -181,5 +181,5 @@ 13.000 0.077 1.859E+00 8.984E-01 4.342E-01 0.19 0.9959 19.5 1.8 1.32 4.30 7.750E-01 7.750E-01 1.8 19.5 39.7 1.8 1.8 3.6 1.32 1.81 1.61 1.96 1.859E+00 2.546E+00 2.262E+00 2.758E+00 8.984E-01 1.230E+00 1.093E+00 1.333E+00 4.342E-01 5.947E-01 5.284E-01 6.442E-01 4.28031E+00 3.29017E+00 6.33198E+00 1.15657E+03 3.333E-01 2.942E+00 1.600E+00 4.542E+00 9.235E+00 2.86233E+00 7.013E-01 1.426E+00 14.000 0.071 1.882E+00 8.447E-01 3.791E-01 0.19 0.9960 19.8 1.8 1.32 4.30 7.907E-01 7.907E-01 1.8 19.8 37.9 1.8 1.8 3.4 1.32 1.77 1.61 1.93 1.882E+00 2.520E+00 2.287E+00 2.746E+00 8.447E-01 1.131E+00 1.027E+00 1.232E+00 3.791E-01 5.075E-01 4.607E-01 5.530E-01 3.53730E+00 2.64843E+00 5.29092E+00 9.96842E+02 3.333E-01 2.942E+00 1.600E+00 4.542E+00 8.682E+00 3.08251E+00 7.233E-01 1.383E+00 15.000 0.067 1.904E+00 7.977E-01 3.342E-01 0.20 0.9961 20.1 1.8 1.33 4.30 8.038E-01 8.038E-01 1.8 20.1 36.3 1.8 1.8 3.2 1.33 1.74 1.61 1.91 1.904E+00 2.495E+00 2.310E+00 2.733E+00 7.977E-01 1.045E+00 9.676E-01 1.145E+00 3.342E-01 4.377E-01 4.053E-01 4.795E-01 2.95941E+00 2.16957E+00 4.49488E+00 8.68182E+02 3.333E-01 2.942E+00 1.600E+00 4.542E+00 8.212E+00 3.30269E+00 7.437E-01 1.345E+00 - + Elapsed time (sec): 1.570E-01 diff --git a/tests/data/test-bj84.m6.00r020.0_fs.col b/tests/data/test-bj84.m6.00r020.0_fs.col index 03db7d6..6588175 100644 --- a/tests/data/test-bj84.m6.00r020.0_fs.col +++ b/tests/data/test-bj84.m6.00r020.0_fs.col @@ -1,202 +1,202 @@ Parameter file: test-bj84.ofr - M r f_ff rmod freq(Hz) per(s) fds:test-bj8 fvs:test-bj8 fas:test-bj8 ln_fas - 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 - 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 - 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 - 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 - 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 - 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 - 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 - 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 - 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 - 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 - 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 - 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 - 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 - 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 - 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 - 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 - 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 - 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 - 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 - 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 - 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 - 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 - 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 - 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 - 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 - 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 - 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 - 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 - 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 - 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 - 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 - 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 - 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 - 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 - 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 - 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 - 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 - 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 - 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 - 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 - 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 - 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 - 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 - 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 - 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 - 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 - 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 - 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 - 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 - 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 - 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 - 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 - 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 - 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 - 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 - 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 - 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 - 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 - 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 - 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 - 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 - 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 - 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 - 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 - 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 - 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 - 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 - 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 - 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 - 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 - 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 - 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 - 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 - 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 - 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 - 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 - 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 - 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 - 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 - 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 - 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 - 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 - 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 - 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 - 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 - 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 - 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 - 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 - 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 - 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 - 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 - 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 - 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 - 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 - 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 - 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 - 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 - 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 - 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 - 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 - 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 - 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 - 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 - 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 - 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 - 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 - 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 - 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 - 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 - 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 - 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 - 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 - 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 - 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 - 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 - 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 - 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 - 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 - 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 - 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 - 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 - 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 - 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 - 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 - 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 - 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 - 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 - 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 - 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 - 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 - 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 - 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 - 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 - 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 - 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 - 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 - 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 - 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 - 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 - 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 - 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 - 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 - 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 - 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 - 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 - 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 - 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 - 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 - 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 - 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 - 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 - 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 - 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 - 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 - 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 - 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 - 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 - 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 - 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 - 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 - 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 - 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 - 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 - 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 - 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 - 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 - 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 - 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 - 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 - 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 - 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 - 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 - 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 - 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 - 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 - 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 - 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 - 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 - 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 - 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 - 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 - 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 - 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 - 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 - 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 - 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 - 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 - 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 - 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 - 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 - 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 - 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 - 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 - 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 - 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 - 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 - 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 - 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 - 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 - 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 + M r f_ff rmod freq(Hz) per(s) fds:test-bj8 fvs:test-bj8 fas:test-bj8 ln_fas + 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 + 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 + 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 + 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 + 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 + 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 + 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 + 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 + 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 + 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 + 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 + 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 + 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 + 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 + 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 + 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 + 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 + 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 + 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 + 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 + 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 + 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 + 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 + 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 + 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 + 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 + 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 + 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 + 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 + 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 + 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 + 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 + 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 + 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 + 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 + 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 + 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 + 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 + 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 + 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 + 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 + 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 + 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 + 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 + 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 + 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 + 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 + 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 + 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 + 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 + 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 + 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 + 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 + 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 + 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 + 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 + 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 + 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 + 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 + 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 + 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 + 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 + 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 + 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 + 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 + 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 + 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 + 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 + 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 + 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 + 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 + 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 + 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 + 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 + 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 + 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 + 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 + 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 + 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 + 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 + 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 + 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 + 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 + 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 + 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 + 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 + 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 + 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 + 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 + 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 + 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 + 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 + 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 + 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 + 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 + 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 + 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 + 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 + 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 + 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 + 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 + 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 + 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 + 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 + 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 + 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 + 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 + 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 + 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 + 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 + 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 + 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 + 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 + 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 + 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 + 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 + 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 + 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 + 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 + 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 + 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 + 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 + 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 + 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 + 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 + 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 + 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 + 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 + 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 + 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 + 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 + 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 + 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 + 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 + 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 + 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 + 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 + 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 + 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 + 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 + 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 + 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 + 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 + 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 + 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 + 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 + 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 + 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 + 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 + 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 + 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 + 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 + 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 + 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 + 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 + 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 + 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 + 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 + 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 + 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 + 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 + 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 + 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 + 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 + 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 + 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 + 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 + 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 + 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 + 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 + 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 + 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 + 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 + 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 + 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 + 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 + 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 + 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 + 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 + 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 + 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 + 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 + 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 + 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 + 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 + 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 + 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 + 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 + 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 + 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 + 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 + 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 + 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 + 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 + 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 + 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 + 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 + 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 + 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 + 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 diff --git a/tests/data/test-bj84.ofr b/tests/data/test-bj84.ofr index 7ab6ad1..252076e 100644 --- a/tests/data/test-bj84.ofr +++ b/tests/data/test-bj84.ofr @@ -8,65 +8,65 @@ ! where source number means: ! 1 = 1-corner (S = 1/(1+(f/fc)**pf_a)**pd_a) ! 2 = Joyner (BSSA 74, 1167--1188) -! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, +! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, ! 17--30) ! 4 = Atkinson & Silva (BSSA 87, 97--113) ! 5 = Haddon 1996 (approximate spectra in Fig. 10 of -! Haddon's paper in BSSA 86, 1300--1313; +! Haddon's paper in BSSA 86, 1300--1313; ! see also Atkinson & Boore, BSSA 88, 917--934) ! 6 = AB98-California (Atkinson & Boore BSSA 88, 917--934) -! 7 = Boatwright & Choy (this is the functional form used by +! 7 = Boatwright & Choy (this is the functional form used by ! Boore & Atkinson, BSSA 79, 1736--1761, p. 1761) -! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation +! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation ! workshop) ! 9 = Atkinson & Silva (BSSA 90, 255--274) ! 10 = Atkinson (2005 model), -! 11 = Generalized multiplicative two-corner model +! 11 = Generalized multiplicative two-corner model ! (S = [1/(1+(f/fa)**pf_a)**pd_a]*[1/(1+(f/fb)**pf_b)**pd_b]) -! 12 = Generalized additive two-corner model +! 12 = Generalized additive two-corner model ! (S = (1-eps)/(1+(f/fa)**pf_a)**pd_a] + eps/(1+(f/fb)**pf_b)**pd_b) ! NOTE: if M=4.0 2.410 -0.533 0.0 2.520 -0.637 0.0 @@ -79,7 +79,7 @@ ! modified distance: rmod = sqrt(r^2 + f_ff^2)) ! If iflag_f_ff = 2: ! modified distance: rmod = r + f_ff -! where log10(f_ff) = c1 + c2*amag +! where log10(f_ff) = c1 + c2*amag ! Use rmod in the calculations ! Published finite-fault factors ! Author meaning of r iflag_f_ff c1 c2 @@ -90,30 +90,30 @@ 0 0.0 0.0 !Geometrical spreading option: ! 0 = use standard hinged line segments -! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; +! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; ! they were not intended for general use): -! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), +! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), ! with Q=500f^0.5, which must be specified below). ! 2 = Dave Boore's trial spreading #1 for ENA). ! 3 = Gail Atkinson's Sept, 2012 report "nga-e-r12_AttenShape.pdf". For this ! model, Q = 680f^0.33, and this must be specified below. ! 4 = Atkinson, G.M. and D.M. Boore (2014). The attenuation of Fourier amplitudes for rock sites in eastern North America, -! Bull. Seismol. Soc. Am. 104, (in press). +! Bull. Seismol. Soc. Am. 104, (in press). 0 !Parameters for the frequency dependent gsprd: ! option 2: -! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, +! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ! ft1_dmb_gsprd, ft2_dmb_gsprd ! option 4: ! h4gspread (a nominal value of focal depth; in a later version I will put this into the control files for the SMSIN driver programs): ! (Placeholders are needed, but not used, even if the geometrical spreading option is not 2 or 4) -! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, +! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, ! ! for r< 60 km and 1/r^0.5 for all f beyond 60 km. 10.0 0.0 0.0 0.0 0.0 0.0 -!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set +!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set ! r_ref = 1.0 km) (distance units are km) ! *** NOTE: these lines are needed even if option 1 is chosen above---and -! there must be nsegs lines following the "nseg" specification, even if the +! there must be nsegs lines following the "nseg" specification, even if the ! geometrical spreading is not used because option 1 has been chosen. 1.0 3 @@ -128,11 +128,11 @@ ! fb is set equal to fa for source 1, even though fb is not used in spect_shape, using weights of 0.5 and 0.5 ! for source 1 will give the same answer as the previously recommended 1.0 0.0 weights. The advantage ! to using weights of 0.5 0.5 is that they are the same as I am now recommending for the Atkinson and colleagues (and perhaps -! all) 2-corner models, for reasons discussed in the spectral shape, source 12 +! all) 2-corner models, for reasons discussed in the spectral shape, source 12 ! section above. This is not what is used by Atkinson and colleagues; they use 0.5 0.0 for the weights ! (Atkinson and Boore (1995, p. 20) and Atkinson and Silva (2000, p. 259)). 0.5 0.5 -!path duration: nknots, (rdur(i), dur(i)), slope of last segment +!path duration: nknots, (rdur(i), dur(i)), slope of last segment 4 0.0 0.0 10.0 0.0 @@ -160,11 +160,11 @@ ! 1=bj84;2=lp99; 3=bt12 wna; 4=bt12 ena; 5=average of bt12 ena & wna) 10.0 0.00001 0.001 1 !Name of pars file for Boore-Thompson oscillator correction for WNA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) \wna_bt12_trms4osc.pars !Name of pars file for Boore-Thompson oscillator correction for ENA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) \ena_bt12_trms4osc.pars !window params: idxwnd(0=box,1=exp), tapr(<1), eps_w, eta_w, f_tb2te, f_te_xtnd diff --git a/tests/data/test-bt12_ena.gmrv.sum b/tests/data/test-bt12_ena.gmrv.sum index 29516ec..05e8a9e 100644 --- a/tests/data/test-bt12_ena.gmrv.sum +++ b/tests/data/test-bt12_ena.gmrv.sum @@ -1,16 +1,16 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: test-bt12_ena.gmrv.sum *** Results computed using GM_RV_DRVR *** - + Date: 2014/02/04 Time Start: 08:06:41.969 - - file with parameters: test-bt12_ena.ofr + + file with parameters: test-bt12_ena.ofr Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -40,7 +40,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -75,8 +75,8 @@ WNA Trms4osc coefficients from file wna_bt12_trms4osc.pars ENA Trms4osc coefficients from file ena_bt12_trms4osc.pars fup calculated in driver = 7.329E+01 - - *********** NEW R AND M ********** + + *********** NEW R AND M ********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 File with response spectra: test-bt12_ena.m6.00r020.0_rs.r const= 4.757E-24 @@ -183,5 +183,5 @@ 13.000 0.077 1.779E+00 8.597E-01 4.155E-01 0.19 0.9959 19.5 1.8 1.32 4.30 7.750E-01 7.750E-01 1.8 19.5 43.4 1.8 1.8 3.9 1.32 1.86 1.61 2.00 1.779E+00 2.509E+00 2.164E+00 2.696E+00 8.597E-01 1.213E+00 1.046E+00 1.303E+00 4.155E-01 5.861E-01 5.056E-01 6.298E-01 4.28031E+00 3.29017E+00 6.33198E+00 1.15657E+03 1.000E+00 2.942E+00 1.600E+00 4.542E+00 1.009E+01 2.86233E+00 6.711E-01 1.490E+00 14.000 0.071 1.765E+00 7.920E-01 3.555E-01 0.19 0.9960 19.8 1.8 1.32 4.30 7.907E-01 7.907E-01 1.8 19.8 43.1 1.8 1.8 3.8 1.32 1.85 1.61 1.99 1.765E+00 2.470E+00 2.145E+00 2.657E+00 7.920E-01 1.108E+00 9.625E-01 1.193E+00 3.555E-01 4.974E-01 4.320E-01 5.353E-01 3.53730E+00 2.64843E+00 5.29092E+00 9.96842E+02 1.000E+00 2.942E+00 1.600E+00 4.542E+00 9.876E+00 3.08251E+00 6.781E-01 1.475E+00 15.000 0.067 1.754E+00 7.347E-01 3.078E-01 0.20 0.9961 20.1 1.8 1.33 4.30 8.038E-01 8.038E-01 1.8 20.1 42.8 1.8 1.8 3.8 1.33 1.84 1.61 1.99 1.754E+00 2.435E+00 2.128E+00 2.623E+00 7.347E-01 1.020E+00 8.912E-01 1.099E+00 3.078E-01 4.272E-01 3.733E-01 4.602E-01 2.95941E+00 2.16957E+00 4.49488E+00 8.68182E+02 1.000E+00 2.942E+00 1.600E+00 4.542E+00 9.680E+00 3.30269E+00 6.850E-01 1.460E+00 - + Elapsed time (sec): 1.730E-01 diff --git a/tests/data/test-bt12_ena.m6.00r020.0_fs.col b/tests/data/test-bt12_ena.m6.00r020.0_fs.col index 32f1418..013d63e 100644 --- a/tests/data/test-bt12_ena.m6.00r020.0_fs.col +++ b/tests/data/test-bt12_ena.m6.00r020.0_fs.col @@ -1,202 +1,202 @@ Parameter file: test-bt12_ena.ofr - M r f_ff rmod freq(Hz) per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas - 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 - 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 - 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 - 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 - 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 - 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 - 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 - 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 - 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 - 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 - 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 - 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 - 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 - 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 - 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 - 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 - 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 - 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 - 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 - 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 - 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 - 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 - 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 - 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 - 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 - 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 - 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 - 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 - 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 - 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 - 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 - 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 - 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 - 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 - 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 - 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 - 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 - 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 - 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 - 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 - 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 - 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 - 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 - 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 - 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 - 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 - 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 - 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 - 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 - 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 - 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 - 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 - 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 - 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 - 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 - 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 - 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 - 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 - 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 - 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 - 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 - 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 - 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 - 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 - 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 - 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 - 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 - 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 - 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 - 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 - 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 - 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 - 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 - 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 - 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 - 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 - 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 - 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 - 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 - 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 - 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 - 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 - 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 - 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 - 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 - 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 - 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 - 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 - 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 - 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 - 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 - 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 - 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 - 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 - 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 - 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 - 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 - 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 - 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 - 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 - 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 - 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 - 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 - 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 - 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 - 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 - 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 - 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 - 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 - 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 - 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 - 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 - 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 - 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 - 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 - 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 - 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 - 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 - 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 - 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 - 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 - 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 - 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 - 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 - 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 - 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 - 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 - 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 - 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 - 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 - 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 - 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 - 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 - 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 - 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 - 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 - 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 - 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 - 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 - 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 - 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 - 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 - 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 - 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 - 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 - 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 - 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 - 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 - 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 - 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 - 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 - 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 - 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 - 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 - 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 - 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 - 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 - 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 - 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 - 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 - 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 - 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 - 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 - 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 - 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 - 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 - 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 - 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 - 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 - 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 - 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 - 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 - 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 - 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 - 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 - 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 - 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 - 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 - 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 - 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 - 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 - 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 - 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 - 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 - 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 - 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 - 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 - 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 - 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 - 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 - 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 - 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 - 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 - 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 - 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 - 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 - 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 - 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 - 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 - 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 + M r f_ff rmod freq(Hz) per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas + 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 + 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 + 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 + 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 + 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 + 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 + 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 + 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 + 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 + 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 + 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 + 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 + 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 + 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 + 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 + 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 + 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 + 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 + 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 + 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 + 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 + 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 + 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 + 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 + 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 + 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 + 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 + 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 + 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 + 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 + 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 + 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 + 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 + 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 + 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 + 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 + 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 + 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 + 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 + 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 + 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 + 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 + 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 + 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 + 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 + 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 + 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 + 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 + 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 + 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 + 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 + 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 + 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 + 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 + 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 + 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 + 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 + 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 + 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 + 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 + 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 + 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 + 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 + 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 + 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 + 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 + 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 + 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 + 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 + 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 + 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 + 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 + 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 + 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 + 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 + 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 + 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 + 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 + 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 + 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 + 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 + 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 + 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 + 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 + 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 + 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 + 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 + 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 + 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 + 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 + 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 + 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 + 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 + 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 + 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 + 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 + 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 + 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 + 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 + 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 + 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 + 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 + 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 + 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 + 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 + 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 + 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 + 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 + 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 + 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 + 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 + 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 + 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 + 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 + 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 + 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 + 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 + 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 + 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 + 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 + 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 + 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 + 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 + 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 + 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 + 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 + 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 + 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 + 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 + 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 + 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 + 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 + 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 + 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 + 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 + 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 + 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 + 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 + 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 + 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 + 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 + 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 + 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 + 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 + 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 + 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 + 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 + 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 + 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 + 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 + 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 + 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 + 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 + 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 + 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 + 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 + 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 + 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 + 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 + 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 + 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 + 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 + 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 + 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 + 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 + 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 + 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 + 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 + 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 + 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 + 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 + 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 + 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 + 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 + 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 + 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 + 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 + 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 + 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 + 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 + 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 + 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 + 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 + 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 + 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 + 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 + 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 + 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 + 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 + 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 + 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 + 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 + 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 + 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 + 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 + 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 + 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 + 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 + 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 + 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 diff --git a/tests/data/test-bt12_ena.ofr b/tests/data/test-bt12_ena.ofr index 41c7b11..4892e8b 100644 --- a/tests/data/test-bt12_ena.ofr +++ b/tests/data/test-bt12_ena.ofr @@ -8,65 +8,65 @@ ! where source number means: ! 1 = 1-corner (S = 1/(1+(f/fc)**pf_a)**pd_a) ! 2 = Joyner (BSSA 74, 1167--1188) -! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, +! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, ! 17--30) ! 4 = Atkinson & Silva (BSSA 87, 97--113) ! 5 = Haddon 1996 (approximate spectra in Fig. 10 of -! Haddon's paper in BSSA 86, 1300--1313; +! Haddon's paper in BSSA 86, 1300--1313; ! see also Atkinson & Boore, BSSA 88, 917--934) ! 6 = AB98-California (Atkinson & Boore BSSA 88, 917--934) -! 7 = Boatwright & Choy (this is the functional form used by +! 7 = Boatwright & Choy (this is the functional form used by ! Boore & Atkinson, BSSA 79, 1736--1761, p. 1761) -! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation +! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation ! workshop) ! 9 = Atkinson & Silva (BSSA 90, 255--274) ! 10 = Atkinson (2005 model), -! 11 = Generalized multiplicative two-corner model +! 11 = Generalized multiplicative two-corner model ! (S = [1/(1+(f/fa)**pf_a)**pd_a]*[1/(1+(f/fb)**pf_b)**pd_b]) -! 12 = Generalized additive two-corner model +! 12 = Generalized additive two-corner model ! (S = (1-eps)/(1+(f/fa)**pf_a)**pd_a] + eps/(1+(f/fb)**pf_b)**pd_b) ! NOTE: if M=4.0 2.410 -0.533 0.0 2.520 -0.637 0.0 @@ -79,7 +79,7 @@ ! modified distance: rmod = sqrt(r^2 + f_ff^2)) ! If iflag_f_ff = 2: ! modified distance: rmod = r + f_ff -! where log10(f_ff) = c1 + c2*amag +! where log10(f_ff) = c1 + c2*amag ! Use rmod in the calculations ! Published finite-fault factors ! Author meaning of r iflag_f_ff c1 c2 @@ -90,30 +90,30 @@ 0 0.0 0.0 !Geometrical spreading option: ! 0 = use standard hinged line segments -! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; +! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; ! they were not intended for general use): -! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), +! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), ! with Q=500f^0.5, which must be specified below). ! 2 = Dave Boore's trial spreading #1 for ENA). ! 3 = Gail Atkinson's Sept, 2012 report "nga-e-r12_AttenShape.pdf". For this ! model, Q = 680f^0.33, and this must be specified below. ! 4 = Atkinson, G.M. and D.M. Boore (2014). The attenuation of Fourier amplitudes for rock sites in eastern North America, -! Bull. Seismol. Soc. Am. 104, (in press). +! Bull. Seismol. Soc. Am. 104, (in press). 0 !Parameters for the frequency dependent gsprd: ! option 2: -! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, +! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ! ft1_dmb_gsprd, ft2_dmb_gsprd ! option 4: ! h4gspread (a nominal value of focal depth; in a later version I will put this into the control files for the SMSIN driver programs): ! (Placeholders are needed, but not used, even if the geometrical spreading option is not 2 or 4) -! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, +! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, ! ! for r< 60 km and 1/r^0.5 for all f beyond 60 km. 10.0 0.0 0.0 0.0 0.0 0.0 -!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set +!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set ! r_ref = 1.0 km) (distance units are km) ! *** NOTE: these lines are needed even if option 1 is chosen above---and -! there must be nsegs lines following the "nseg" specification, even if the +! there must be nsegs lines following the "nseg" specification, even if the ! geometrical spreading is not used because option 1 has been chosen. 1.0 3 @@ -128,11 +128,11 @@ ! fb is set equal to fa for source 1, even though fb is not used in spect_shape, using weights of 0.5 and 0.5 ! for source 1 will give the same answer as the previously recommended 1.0 0.0 weights. The advantage ! to using weights of 0.5 0.5 is that they are the same as I am now recommending for the Atkinson and colleagues (and perhaps -! all) 2-corner models, for reasons discussed in the spectral shape, source 12 +! all) 2-corner models, for reasons discussed in the spectral shape, source 12 ! section above. This is not what is used by Atkinson and colleagues; they use 0.5 0.0 for the weights ! (Atkinson and Boore (1995, p. 20) and Atkinson and Silva (2000, p. 259)). 0.5 0.5 -!path duration: nknots, (rdur(i), dur(i)), slope of last segment +!path duration: nknots, (rdur(i), dur(i)), slope of last segment 4 0.0 0.0 10.0 0.0 @@ -160,11 +160,11 @@ ! 1=bj84;2=lp99; 3=bt12 wna; 4=bt12 ena; 5=average of bt12 ena & wna) 10.0 0.00001 0.001 4 !Name of pars file for Boore-Thompson oscillator correction for WNA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) wna_bt12_trms4osc.pars !Name of pars file for Boore-Thompson oscillator correction for ENA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) ena_bt12_trms4osc.pars !window params: idxwnd(0=box,1=exp), tapr(<1), eps_w, eta_w, f_tb2te, f_te_xtnd diff --git a/tests/data/test-bt12_wna.gmrv.sum b/tests/data/test-bt12_wna.gmrv.sum index 6011c50..375d019 100644 --- a/tests/data/test-bt12_wna.gmrv.sum +++ b/tests/data/test-bt12_wna.gmrv.sum @@ -1,16 +1,16 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: test-bt12_wna.gmrv.sum *** Results computed using GM_RV_DRVR *** - + Date: 2014/02/04 Time Start: 08:07:16.576 - - file with parameters: test-bt12_wna.ofr + + file with parameters: test-bt12_wna.ofr Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -40,7 +40,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -75,8 +75,8 @@ WNA Trms4osc coefficients from file wna_bt12_trms4osc.pars ENA Trms4osc coefficients from file ena_bt12_trms4osc.pars fup calculated in driver = 7.329E+01 - - *********** NEW R AND M ********** + + *********** NEW R AND M ********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 File with response spectra: test-bt12_wna.m6.00r020.0_rs.r const= 4.757E-24 @@ -183,5 +183,5 @@ 13.000 0.077 1.858E+00 8.981E-01 4.341E-01 0.19 0.9959 19.5 1.8 1.32 4.30 7.750E-01 7.750E-01 1.8 19.5 39.8 1.8 1.8 3.6 1.32 1.81 1.61 1.96 1.858E+00 2.545E+00 2.261E+00 2.757E+00 8.981E-01 1.230E+00 1.093E+00 1.333E+00 4.341E-01 5.946E-01 5.282E-01 6.441E-01 4.28031E+00 3.29017E+00 6.33198E+00 1.15657E+03 1.000E+00 2.942E+00 1.600E+00 4.542E+00 9.241E+00 2.86233E+00 7.010E-01 1.426E+00 14.000 0.071 1.847E+00 8.290E-01 3.720E-01 0.19 0.9960 19.8 1.8 1.32 4.30 7.907E-01 7.907E-01 1.8 19.8 39.4 1.8 1.8 3.5 1.32 1.80 1.61 1.95 1.847E+00 2.506E+00 2.245E+00 2.720E+00 8.290E-01 1.125E+00 1.007E+00 1.221E+00 3.720E-01 5.048E-01 4.521E-01 5.479E-01 3.53730E+00 2.64843E+00 5.29092E+00 9.96842E+02 1.000E+00 2.942E+00 1.600E+00 4.542E+00 9.016E+00 3.08251E+00 7.098E-01 1.409E+00 15.000 0.067 1.839E+00 7.702E-01 3.226E-01 0.20 0.9961 20.1 1.8 1.33 4.30 8.038E-01 8.038E-01 1.8 20.1 39.0 1.8 1.8 3.5 1.33 1.79 1.61 1.94 1.839E+00 2.471E+00 2.230E+00 2.686E+00 7.702E-01 1.035E+00 9.342E-01 1.125E+00 3.226E-01 4.336E-01 3.913E-01 4.713E-01 2.95941E+00 2.16957E+00 4.49488E+00 8.68182E+02 1.000E+00 2.942E+00 1.600E+00 4.542E+00 8.809E+00 3.30269E+00 7.180E-01 1.393E+00 - + Elapsed time (sec): 1.560E-01 diff --git a/tests/data/test-bt12_wna.m6.00r020.0_fs.col b/tests/data/test-bt12_wna.m6.00r020.0_fs.col index d5092d4..a7826e9 100644 --- a/tests/data/test-bt12_wna.m6.00r020.0_fs.col +++ b/tests/data/test-bt12_wna.m6.00r020.0_fs.col @@ -1,202 +1,202 @@ Parameter file: test-bt12_wna.ofr - M r f_ff rmod freq(Hz) per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas - 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 - 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 - 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 - 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 - 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 - 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 - 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 - 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 - 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 - 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 - 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 - 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 - 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 - 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 - 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 - 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 - 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 - 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 - 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 - 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 - 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 - 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 - 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 - 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 - 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 - 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 - 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 - 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 - 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 - 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 - 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 - 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 - 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 - 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 - 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 - 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 - 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 - 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 - 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 - 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 - 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 - 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 - 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 - 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 - 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 - 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 - 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 - 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 - 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 - 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 - 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 - 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 - 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 - 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 - 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 - 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 - 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 - 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 - 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 - 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 - 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 - 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 - 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 - 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 - 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 - 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 - 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 - 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 - 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 - 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 - 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 - 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 - 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 - 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 - 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 - 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 - 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 - 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 - 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 - 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 - 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 - 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 - 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 - 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 - 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 - 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 - 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 - 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 - 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 - 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 - 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 - 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 - 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 - 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 - 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 - 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 - 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 - 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 - 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 - 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 - 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 - 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 - 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 - 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 - 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 - 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 - 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 - 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 - 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 - 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 - 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 - 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 - 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 - 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 - 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 - 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 - 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 - 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 - 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 - 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 - 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 - 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 - 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 - 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 - 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 - 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 - 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 - 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 - 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 - 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 - 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 - 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 - 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 - 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 - 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 - 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 - 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 - 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 - 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 - 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 - 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 - 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 - 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 - 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 - 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 - 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 - 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 - 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 - 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 - 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 - 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 - 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 - 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 - 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 - 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 - 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 - 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 - 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 - 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 - 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 - 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 - 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 - 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 - 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 - 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 - 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 - 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 - 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 - 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 - 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 - 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 - 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 - 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 - 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 - 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 - 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 - 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 - 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 - 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 - 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 - 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 - 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 - 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 - 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 - 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 - 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 - 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 - 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 - 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 - 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 - 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 - 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 - 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 - 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 - 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 - 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 - 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 - 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 - 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 - 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 + M r f_ff rmod freq(Hz) per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas + 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 + 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 + 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 + 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 + 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 + 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 + 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 + 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 + 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 + 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 + 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 + 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 + 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 + 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 + 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 + 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 + 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 + 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 + 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 + 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 + 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 + 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 + 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 + 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 + 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 + 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 + 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 + 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 + 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 + 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 + 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 + 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 + 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 + 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 + 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 + 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 + 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 + 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 + 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 + 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 + 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 + 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 + 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 + 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 + 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 + 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 + 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 + 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 + 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 + 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 + 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 + 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 + 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 + 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 + 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 + 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 + 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 + 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 + 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 + 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 + 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 + 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 + 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 + 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 + 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 + 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 + 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 + 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 + 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 + 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 + 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 + 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 + 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 + 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 + 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 + 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 + 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 + 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 + 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 + 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 + 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 + 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 + 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 + 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 + 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 + 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 + 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 + 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 + 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 + 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 + 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 + 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 + 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 + 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 + 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 + 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 + 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 + 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 + 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 + 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 + 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 + 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 + 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 + 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 + 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 + 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 + 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 + 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 + 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 + 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 + 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 + 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 + 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 + 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 + 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 + 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 + 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 + 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 + 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 + 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 + 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 + 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 + 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 + 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 + 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 + 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 + 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 + 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 + 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 + 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 + 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 + 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 + 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 + 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 + 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 + 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 + 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 + 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 + 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 + 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 + 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 + 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 + 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 + 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 + 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 + 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 + 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 + 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 + 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 + 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 + 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 + 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 + 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 + 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 + 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 + 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 + 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 + 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 + 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 + 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 + 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 + 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 + 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 + 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 + 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 + 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 + 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 + 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 + 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 + 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 + 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 + 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 + 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 + 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 + 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 + 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 + 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 + 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 + 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 + 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 + 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 + 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 + 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 + 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 + 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 + 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 + 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 + 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 + 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 + 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 + 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 + 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 + 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 + 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 + 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 + 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 + 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 + 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 + 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 + 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 diff --git a/tests/data/test-bt12_wna.ofr b/tests/data/test-bt12_wna.ofr index d8d03d7..bff91e7 100644 --- a/tests/data/test-bt12_wna.ofr +++ b/tests/data/test-bt12_wna.ofr @@ -8,65 +8,65 @@ ! where source number means: ! 1 = 1-corner (S = 1/(1+(f/fc)**pf_a)**pd_a) ! 2 = Joyner (BSSA 74, 1167--1188) -! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, +! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, ! 17--30) ! 4 = Atkinson & Silva (BSSA 87, 97--113) ! 5 = Haddon 1996 (approximate spectra in Fig. 10 of -! Haddon's paper in BSSA 86, 1300--1313; +! Haddon's paper in BSSA 86, 1300--1313; ! see also Atkinson & Boore, BSSA 88, 917--934) ! 6 = AB98-California (Atkinson & Boore BSSA 88, 917--934) -! 7 = Boatwright & Choy (this is the functional form used by +! 7 = Boatwright & Choy (this is the functional form used by ! Boore & Atkinson, BSSA 79, 1736--1761, p. 1761) -! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation +! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation ! workshop) ! 9 = Atkinson & Silva (BSSA 90, 255--274) ! 10 = Atkinson (2005 model), -! 11 = Generalized multiplicative two-corner model +! 11 = Generalized multiplicative two-corner model ! (S = [1/(1+(f/fa)**pf_a)**pd_a]*[1/(1+(f/fb)**pf_b)**pd_b]) -! 12 = Generalized additive two-corner model +! 12 = Generalized additive two-corner model ! (S = (1-eps)/(1+(f/fa)**pf_a)**pd_a] + eps/(1+(f/fb)**pf_b)**pd_b) ! NOTE: if M=4.0 2.410 -0.533 0.0 2.520 -0.637 0.0 @@ -79,7 +79,7 @@ ! modified distance: rmod = sqrt(r^2 + f_ff^2)) ! If iflag_f_ff = 2: ! modified distance: rmod = r + f_ff -! where log10(f_ff) = c1 + c2*amag +! where log10(f_ff) = c1 + c2*amag ! Use rmod in the calculations ! Published finite-fault factors ! Author meaning of r iflag_f_ff c1 c2 @@ -90,30 +90,30 @@ 0 0.0 0.0 !Geometrical spreading option: ! 0 = use standard hinged line segments -! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; +! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; ! they were not intended for general use): -! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), +! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), ! with Q=500f^0.5, which must be specified below). ! 2 = Dave Boore's trial spreading #1 for ENA). ! 3 = Gail Atkinson's Sept, 2012 report "nga-e-r12_AttenShape.pdf". For this ! model, Q = 680f^0.33, and this must be specified below. ! 4 = Atkinson, G.M. and D.M. Boore (2014). The attenuation of Fourier amplitudes for rock sites in eastern North America, -! Bull. Seismol. Soc. Am. 104, (in press). +! Bull. Seismol. Soc. Am. 104, (in press). 0 !Parameters for the frequency dependent gsprd: ! option 2: -! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, +! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ! ft1_dmb_gsprd, ft2_dmb_gsprd ! option 4: ! h4gspread (a nominal value of focal depth; in a later version I will put this into the control files for the SMSIN driver programs): ! (Placeholders are needed, but not used, even if the geometrical spreading option is not 2 or 4) -! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, +! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, ! ! for r< 60 km and 1/r^0.5 for all f beyond 60 km. 10.0 0.0 0.0 0.0 0.0 0.0 -!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set +!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set ! r_ref = 1.0 km) (distance units are km) ! *** NOTE: these lines are needed even if option 1 is chosen above---and -! there must be nsegs lines following the "nseg" specification, even if the +! there must be nsegs lines following the "nseg" specification, even if the ! geometrical spreading is not used because option 1 has been chosen. 1.0 3 @@ -128,11 +128,11 @@ ! fb is set equal to fa for source 1, even though fb is not used in spect_shape, using weights of 0.5 and 0.5 ! for source 1 will give the same answer as the previously recommended 1.0 0.0 weights. The advantage ! to using weights of 0.5 0.5 is that they are the same as I am now recommending for the Atkinson and colleagues (and perhaps -! all) 2-corner models, for reasons discussed in the spectral shape, source 12 +! all) 2-corner models, for reasons discussed in the spectral shape, source 12 ! section above. This is not what is used by Atkinson and colleagues; they use 0.5 0.0 for the weights ! (Atkinson and Boore (1995, p. 20) and Atkinson and Silva (2000, p. 259)). 0.5 0.5 -!path duration: nknots, (rdur(i), dur(i)), slope of last segment +!path duration: nknots, (rdur(i), dur(i)), slope of last segment 4 0.0 0.0 10.0 0.0 @@ -160,11 +160,11 @@ ! 1=bj84;2=lp99; 3=bt12 wna; 4=bt12 ena; 5=average of bt12 ena & wna) 10.0 0.00001 0.001 3 !Name of pars file for Boore-Thompson oscillator correction for WNA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) wna_bt12_trms4osc.pars !Name of pars file for Boore-Thompson oscillator correction for ENA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) ena_bt12_trms4osc.pars !window params: idxwnd(0=box,1=exp), tapr(<1), eps_w, eta_w, f_tb2te, f_te_xtnd diff --git a/tests/data/test-bt15_ena.gmrv.sum b/tests/data/test-bt15_ena.gmrv.sum index 9df6517..df86aff 100644 --- a/tests/data/test-bt15_ena.gmrv.sum +++ b/tests/data/test-bt15_ena.gmrv.sum @@ -1,16 +1,16 @@ - + ***************** SMSIM, Version 6.000 ************************ - - + + output file: test-bt15_ena.gmrv.sum *** Results computed using GM_RV_DRVR *** - + Date: 2018/01/15 Time Start: 17:25:12.479 - - file with parameters: test-bt15_ena.ofr + + file with parameters: test-bt15_ena.ofr Title: - Boatwright and Seekins (2011) attenuation model) + Boatwright and Seekins (2011) attenuation model) rho, beta, prtitn, rtp, fs: 2.80 3.70 0.707 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -52,7 +52,7 @@ mh_f_ff, m1t_f_ff, m2t_f_ff = 6.74 5.74 7.74 c0t_f_ff, c1t_f_ff, c2t_f_ff, c3t_f_ff = 6.421E-01 4.300E-01 -4.875E-02 -1.515E-09 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -94,7 +94,7 @@ 0.000 6.000E-03 0.000E+00 6.00 low-cut filter parameters: fcut, nslope 0.000 8 - high-cut filter parameters: + high-cut filter parameters: itype_hcfilt 0=no high-cut filter (but the other parameters are needed as placeholders) 1=raised half cycle of cosine @@ -107,8 +107,8 @@ WNA Trms4osc coefficients from file bt15_wna_acr_trms4osc.dk_rms2pk.pars ENA Trms4osc coefficients from file bt15_ena_scr_trms4osc.dk_rms2pk.pars fup calculated in driver = 3.665E+02 - - *********** NEW R AND M ********** + + *********** NEW R AND M ********** r, f_ff, rmod, amag, kappa = 2.000E+01 5.613E+00 2.077E+01 6.000E+00 6.000E-03 File with response spectra: test-bt15_ena.m6.00r020.8_rs.r const= 4.364E-24 @@ -215,5 +215,5 @@ 13.000 0.077 1.792E+00 8.661E-01 4.186E-01 0.24 0.9973 60.9 4.4 2.08 4.40 8.075E-01 8.075E-01 4.4 60.9 -10.0 4.4 4.4 -10.0 1.94 -9.99 2.06 -9.99 1.667E+00 -2.067E+01 1.775E+00 -2.067E+01 8.056E-01 -9.990E+00 8.577E-01 -9.990E+00 3.894E-01 -4.828E+00 4.145E-01 -4.828E+00 3.92752E+00 3.56527E+00 9.30189E+00 4.14177E+03 1.000E+00 2.164E+00 6.901E+00 9.065E+00 2.268E+01 1.43407E+00 6.322E-01 1.582E+00 14.000 0.071 1.761E+00 7.905E-01 3.548E-01 0.25 0.9973 61.5 4.5 2.09 4.40 8.183E-01 8.183E-01 4.5 61.5 -10.0 4.5 4.5 -10.0 1.94 -9.99 2.07 -9.99 1.640E+00 -2.226E+01 1.744E+00 -2.226E+01 7.360E-01 -9.990E+00 7.827E-01 -9.990E+00 3.303E-01 -4.484E+00 3.513E-01 -4.484E+00 3.22378E+00 2.89282E+00 7.85657E+00 3.57073E+03 1.000E+00 2.164E+00 6.901E+00 9.065E+00 2.250E+01 1.54438E+00 6.348E-01 1.575E+00 15.000 0.067 1.736E+00 7.271E-01 3.046E-01 0.25 0.9973 62.0 4.6 2.10 4.40 8.269E-01 8.269E-01 4.6 62.0 -10.0 4.6 4.6 -10.0 1.95 -9.99 2.07 -9.99 1.618E+00 -2.385E+01 1.719E+00 -2.385E+01 6.777E-01 -9.990E+00 7.200E-01 -9.990E+00 2.839E-01 -4.185E+00 3.016E-01 -4.185E+00 2.68285E+00 2.39017E+00 6.73321E+00 3.11015E+03 1.000E+00 2.164E+00 6.901E+00 9.065E+00 2.227E+01 1.65469E+00 6.380E-01 1.568E+00 - + Elapsed time (sec): 2.170E-01 diff --git a/tests/data/test-bt15_ena.m6.00rps020.8_fs.col b/tests/data/test-bt15_ena.m6.00rps020.8_fs.col index 7d475c5..e1bcfb6 100644 --- a/tests/data/test-bt15_ena.m6.00rps020.8_fs.col +++ b/tests/data/test-bt15_ena.m6.00rps020.8_fs.col @@ -1,202 +1,202 @@ Parameter file: test-bt15_ena.ofr - M Rrup F_FF Rps Freq(Hz) Per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas - 6.00 20.00 5.61 20.77 5.000E-02 2.000E+01 2.35273E+00 7.39131E-01 2.32205E-01 -1.4601 - 6.00 20.00 5.61 20.77 5.213E-02 1.918E+01 2.35182E+00 7.70292E-01 2.52293E-01 -1.3772 - 6.00 20.00 5.61 20.77 5.435E-02 1.840E+01 2.35079E+00 8.02722E-01 2.74105E-01 -1.2942 - 6.00 20.00 5.61 20.77 5.666E-02 1.765E+01 2.34961E+00 8.36467E-01 2.97784E-01 -1.2114 - 6.00 20.00 5.61 20.77 5.907E-02 1.693E+01 2.34828E+00 8.71572E-01 3.23487E-01 -1.1286 - 6.00 20.00 5.61 20.77 6.158E-02 1.624E+01 2.34678E+00 9.08086E-01 3.51383E-01 -1.0459 - 6.00 20.00 5.61 20.77 6.421E-02 1.557E+01 2.34523E+00 9.46105E-01 3.81675E-01 -0.9632 - 6.00 20.00 5.61 20.77 6.694E-02 1.494E+01 2.34346E+00 9.85629E-01 4.14543E-01 -0.8806 - 6.00 20.00 5.61 20.77 6.979E-02 1.433E+01 2.34148E+00 1.02671E+00 4.50197E-01 -0.7981 - 6.00 20.00 5.61 20.77 7.276E-02 1.374E+01 2.33924E+00 1.06938E+00 4.88865E-01 -0.7157 - 6.00 20.00 5.61 20.77 7.585E-02 1.318E+01 2.33674E+00 1.11370E+00 5.30793E-01 -0.6334 - 6.00 20.00 5.61 20.77 7.908E-02 1.265E+01 2.33393E+00 1.15970E+00 5.76243E-01 -0.5512 - 6.00 20.00 5.61 20.77 8.245E-02 1.213E+01 2.33081E+00 1.20744E+00 6.25497E-01 -0.4692 - 6.00 20.00 5.61 20.77 8.596E-02 1.163E+01 2.32732E+00 1.25695E+00 6.78856E-01 -0.3873 - 6.00 20.00 5.61 20.77 8.962E-02 1.116E+01 2.32346E+00 1.30826E+00 7.36642E-01 -0.3057 - 6.00 20.00 5.61 20.77 9.343E-02 1.070E+01 2.31917E+00 1.36143E+00 7.99201E-01 -0.2241 - 6.00 20.00 5.61 20.77 9.741E-02 1.027E+01 2.31442E+00 1.41646E+00 8.66898E-01 -0.1428 - 6.00 20.00 5.61 20.77 1.016E-01 9.847E+00 2.30918E+00 1.47340E+00 9.40124E-01 -0.0617 - 6.00 20.00 5.61 20.77 1.059E-01 9.445E+00 2.30340E+00 1.53227E+00 1.01929E+00 0.0191 - 6.00 20.00 5.61 20.77 1.104E-01 9.060E+00 2.29557E+00 1.59204E+00 1.10413E+00 0.0991 - 6.00 20.00 5.61 20.77 1.151E-01 8.690E+00 2.28569E+00 1.65266E+00 1.19495E+00 0.1781 - 6.00 20.00 5.61 20.77 1.200E-01 8.335E+00 2.27503E+00 1.71496E+00 1.29277E+00 0.2568 - 6.00 20.00 5.61 20.77 1.251E-01 7.995E+00 2.26354E+00 1.77892E+00 1.39805E+00 0.3351 - 6.00 20.00 5.61 20.77 1.304E-01 7.669E+00 2.25117E+00 1.84449E+00 1.51128E+00 0.4130 - 6.00 20.00 5.61 20.77 1.360E-01 7.355E+00 2.23786E+00 1.91163E+00 1.63295E+00 0.4904 - 6.00 20.00 5.61 20.77 1.417E-01 7.055E+00 2.22356E+00 1.98025E+00 1.76356E+00 0.5673 - 6.00 20.00 5.61 20.77 1.478E-01 6.767E+00 2.20821E+00 2.05027E+00 1.90363E+00 0.6438 - 6.00 20.00 5.61 20.77 1.541E-01 6.491E+00 2.19175E+00 2.12159E+00 2.05368E+00 0.7196 - 6.00 20.00 5.61 20.77 1.606E-01 6.226E+00 2.17411E+00 2.19409E+00 2.21425E+00 0.7949 - 6.00 20.00 5.61 20.77 1.675E-01 5.972E+00 2.15525E+00 2.26762E+00 2.38585E+00 0.8696 - 6.00 20.00 5.61 20.77 1.746E-01 5.728E+00 2.13510E+00 2.34203E+00 2.56901E+00 0.9435 - 6.00 20.00 5.61 20.77 1.820E-01 5.494E+00 2.11361E+00 2.41712E+00 2.76423E+00 1.0168 - 6.00 20.00 5.61 20.77 1.898E-01 5.270E+00 2.09072E+00 2.49271E+00 2.97199E+00 1.0892 - 6.00 20.00 5.61 20.77 1.978E-01 5.055E+00 2.06639E+00 2.56855E+00 3.19275E+00 1.1609 - 6.00 20.00 5.61 20.77 2.063E-01 4.848E+00 2.04057E+00 2.64441E+00 3.42693E+00 1.2317 - 6.00 20.00 5.61 20.77 2.150E-01 4.651E+00 2.01322E+00 2.72000E+00 3.67491E+00 1.3015 - 6.00 20.00 5.61 20.77 2.242E-01 4.461E+00 1.98431E+00 2.79504E+00 3.93701E+00 1.3704 - 6.00 20.00 5.61 20.77 2.337E-01 4.279E+00 1.95381E+00 2.86920E+00 4.21348E+00 1.4383 - 6.00 20.00 5.61 20.77 2.437E-01 4.104E+00 1.92097E+00 2.94104E+00 4.50279E+00 1.5047 - 6.00 20.00 5.61 20.77 2.540E-01 3.936E+00 1.88650E+00 3.01119E+00 4.80639E+00 1.5699 - 6.00 20.00 5.61 20.77 2.649E-01 3.776E+00 1.85042E+00 3.07930E+00 5.12430E+00 1.6340 - 6.00 20.00 5.61 20.77 2.761E-01 3.622E+00 1.81276E+00 3.14501E+00 5.45639E+00 1.6968 - 6.00 20.00 5.61 20.77 2.879E-01 3.474E+00 1.77354E+00 3.20793E+00 5.80242E+00 1.7583 - 6.00 20.00 5.61 20.77 3.001E-01 3.332E+00 1.73282E+00 3.26767E+00 6.16202E+00 1.8184 - 6.00 20.00 5.61 20.77 3.129E-01 3.196E+00 1.69066E+00 3.32385E+00 6.53472E+00 1.8771 - 6.00 20.00 5.61 20.77 3.262E-01 3.065E+00 1.64713E+00 3.37610E+00 6.91992E+00 1.9344 - 6.00 20.00 5.61 20.77 3.401E-01 2.940E+00 1.60233E+00 3.42405E+00 7.31689E+00 1.9902 - 6.00 20.00 5.61 20.77 3.546E-01 2.820E+00 1.55592E+00 3.46636E+00 7.72257E+00 2.0441 - 6.00 20.00 5.61 20.77 3.697E-01 2.705E+00 1.50823E+00 3.50313E+00 8.13663E+00 2.0964 - 6.00 20.00 5.61 20.77 3.854E-01 2.595E+00 1.45964E+00 3.53457E+00 8.55905E+00 2.1470 - 6.00 20.00 5.61 20.77 4.018E-01 2.489E+00 1.41031E+00 3.56044E+00 8.98863E+00 2.1960 - 6.00 20.00 5.61 20.77 4.189E-01 2.387E+00 1.36037E+00 3.58054E+00 9.42410E+00 2.2433 - 6.00 20.00 5.61 20.77 4.367E-01 2.290E+00 1.31001E+00 3.59473E+00 9.86410E+00 2.2889 - 6.00 20.00 5.61 20.77 4.553E-01 2.196E+00 1.25938E+00 3.60289E+00 1.03073E+01 2.3328 - 6.00 20.00 5.61 20.77 4.747E-01 2.107E+00 1.20867E+00 3.60497E+00 1.07521E+01 2.3751 - 6.00 20.00 5.61 20.77 4.949E-01 2.021E+00 1.15805E+00 3.60098E+00 1.11973E+01 2.4157 - 6.00 20.00 5.61 20.77 5.160E-01 1.938E+00 1.10731E+00 3.58974E+00 1.16374E+01 2.4542 - 6.00 20.00 5.61 20.77 5.379E-01 1.859E+00 1.05639E+00 3.57043E+00 1.20675E+01 2.4905 - 6.00 20.00 5.61 20.77 5.608E-01 1.783E+00 1.00612E+00 3.54526E+00 1.24924E+01 2.5251 - 6.00 20.00 5.61 20.77 5.847E-01 1.710E+00 9.56664E-01 3.51445E+00 1.29108E+01 2.5581 - 6.00 20.00 5.61 20.77 6.096E-01 1.641E+00 9.08159E-01 3.47824E+00 1.33217E+01 2.5894 - 6.00 20.00 5.61 20.77 6.355E-01 1.574E+00 8.60743E-01 3.43695E+00 1.37237E+01 2.6191 - 6.00 20.00 5.61 20.77 6.626E-01 1.509E+00 8.14540E-01 3.39088E+00 1.41160E+01 2.6473 - 6.00 20.00 5.61 20.77 6.907E-01 1.448E+00 7.69656E-01 3.34039E+00 1.44976E+01 2.6740 - 6.00 20.00 5.61 20.77 7.201E-01 1.389E+00 7.26184E-01 3.28585E+00 1.48679E+01 2.6992 - 6.00 20.00 5.61 20.77 7.508E-01 1.332E+00 6.84202E-01 3.22765E+00 1.52261E+01 2.7230 - 6.00 20.00 5.61 20.77 7.828E-01 1.278E+00 6.43772E-01 3.16618E+00 1.55718E+01 2.7455 - 6.00 20.00 5.61 20.77 8.161E-01 1.225E+00 6.04943E-01 3.10183E+00 1.59046E+01 2.7666 - 6.00 20.00 5.61 20.77 8.508E-01 1.175E+00 5.67747E-01 3.03500E+00 1.62242E+01 2.7865 - 6.00 20.00 5.61 20.77 8.870E-01 1.127E+00 5.32203E-01 2.96608E+00 1.65306E+01 2.8052 - 6.00 20.00 5.61 20.77 9.248E-01 1.081E+00 4.98320E-01 2.89544E+00 1.68237E+01 2.8228 - 6.00 20.00 5.61 20.77 9.641E-01 1.037E+00 4.66092E-01 2.82344E+00 1.71035E+01 2.8393 - 6.00 20.00 5.61 20.77 1.005E+00 9.949E-01 4.35505E-01 2.75043E+00 1.73703E+01 2.8548 - 6.00 20.00 5.61 20.77 1.048E+00 9.543E-01 4.06533E-01 2.67673E+00 1.76244E+01 2.8693 - 6.00 20.00 5.61 20.77 1.093E+00 9.153E-01 3.79119E-01 2.60247E+00 1.78647E+01 2.8828 - 6.00 20.00 5.61 20.77 1.139E+00 8.779E-01 3.52831E-01 2.52509E+00 1.80712E+01 2.8943 - 6.00 20.00 5.61 20.77 1.187E+00 8.421E-01 3.28086E-01 2.44793E+00 1.82646E+01 2.9050 - 6.00 20.00 5.61 20.77 1.238E+00 8.077E-01 3.04832E-01 2.37122E+00 1.84452E+01 2.9148 - 6.00 20.00 5.61 20.77 1.291E+00 7.748E-01 2.83013E-01 2.29519E+00 1.86136E+01 2.9239 - 6.00 20.00 5.61 20.77 1.346E+00 7.431E-01 2.62569E-01 2.22002E+00 1.87703E+01 2.9323 - 6.00 20.00 5.61 20.77 1.403E+00 7.128E-01 2.43349E-01 2.14508E+00 1.89085E+01 2.9396 - 6.00 20.00 5.61 20.77 1.463E+00 6.837E-01 2.25326E-01 2.07074E+00 1.90301E+01 2.9460 - 6.00 20.00 5.61 20.77 1.525E+00 6.558E-01 2.08511E-01 1.99777E+00 1.91408E+01 2.9518 - 6.00 20.00 5.61 20.77 1.590E+00 6.290E-01 1.92840E-01 1.92625E+00 1.92411E+01 2.9570 - 6.00 20.00 5.61 20.77 1.657E+00 6.033E-01 1.78251E-01 1.85630E+00 1.93315E+01 2.9617 - 6.00 20.00 5.61 20.77 1.728E+00 5.787E-01 1.64636E-01 1.78748E+00 1.94071E+01 2.9656 - 6.00 20.00 5.61 20.77 1.802E+00 5.551E-01 1.51948E-01 1.71995E+00 1.94686E+01 2.9688 - 6.00 20.00 5.61 20.77 1.878E+00 5.324E-01 1.40173E-01 1.65418E+00 1.95211E+01 2.9715 - 6.00 20.00 5.61 20.77 1.958E+00 5.107E-01 1.29253E-01 1.59023E+00 1.95651E+01 2.9737 - 6.00 20.00 5.61 20.77 2.041E+00 4.898E-01 1.19097E-01 1.52765E+00 1.95950E+01 2.9753 - 6.00 20.00 5.61 20.77 2.128E+00 4.698E-01 1.09689E-01 1.46685E+00 1.96159E+01 2.9763 - 6.00 20.00 5.61 20.77 2.219E+00 4.507E-01 1.00985E-01 1.40792E+00 1.96292E+01 2.9770 - 6.00 20.00 5.61 20.77 2.313E+00 4.323E-01 9.29364E-02 1.35086E+00 1.96351E+01 2.9773 - 6.00 20.00 5.61 20.77 2.412E+00 4.146E-01 8.54993E-02 1.29565E+00 1.96341E+01 2.9773 - 6.00 20.00 5.61 20.77 2.514E+00 3.977E-01 7.86164E-02 1.24205E+00 1.96229E+01 2.9767 - 6.00 20.00 5.61 20.77 2.621E+00 3.815E-01 7.22623E-02 1.19025E+00 1.96049E+01 2.9758 - 6.00 20.00 5.61 20.77 2.733E+00 3.659E-01 6.64004E-02 1.14024E+00 1.95806E+01 2.9745 - 6.00 20.00 5.61 20.77 2.849E+00 3.510E-01 6.09952E-02 1.09200E+00 1.95502E+01 2.9730 - 6.00 20.00 5.61 20.77 2.971E+00 3.366E-01 5.60132E-02 1.04549E+00 1.95141E+01 2.9711 - 6.00 20.00 5.61 20.77 3.097E+00 3.229E-01 5.14231E-02 1.00066E+00 1.94723E+01 2.9690 - 6.00 20.00 5.61 20.77 3.229E+00 3.097E-01 4.71956E-02 9.57486E-01 1.94251E+01 2.9666 - 6.00 20.00 5.61 20.77 3.366E+00 2.971E-01 4.33038E-02 9.15918E-01 1.93726E+01 2.9639 - 6.00 20.00 5.61 20.77 3.510E+00 2.849E-01 3.97220E-02 8.75916E-01 1.93150E+01 2.9609 - 6.00 20.00 5.61 20.77 3.659E+00 2.733E-01 3.64266E-02 8.37436E-01 1.92524E+01 2.9576 - 6.00 20.00 5.61 20.77 3.815E+00 2.621E-01 3.33959E-02 8.00435E-01 1.91849E+01 2.9541 - 6.00 20.00 5.61 20.77 3.977E+00 2.514E-01 3.06092E-02 7.64868E-01 1.91126E+01 2.9504 - 6.00 20.00 5.61 20.77 4.146E+00 2.412E-01 2.80478E-02 7.30690E-01 1.90357E+01 2.9463 - 6.00 20.00 5.61 20.77 4.323E+00 2.313E-01 2.56940E-02 6.97859E-01 1.89541E+01 2.9420 - 6.00 20.00 5.61 20.77 4.507E+00 2.219E-01 2.35316E-02 6.66328E-01 1.88680E+01 2.9375 - 6.00 20.00 5.61 20.77 4.698E+00 2.128E-01 2.15456E-02 6.36057E-01 1.87773E+01 2.9326 - 6.00 20.00 5.61 20.77 4.898E+00 2.041E-01 1.97220E-02 6.07001E-01 1.86822E+01 2.9276 - 6.00 20.00 5.61 20.77 5.107E+00 1.958E-01 1.80480E-02 5.79119E-01 1.85826E+01 2.9222 - 6.00 20.00 5.61 20.77 5.324E+00 1.878E-01 1.65116E-02 5.52370E-01 1.84786E+01 2.9166 - 6.00 20.00 5.61 20.77 5.551E+00 1.802E-01 1.51020E-02 5.26713E-01 1.83702E+01 2.9107 - 6.00 20.00 5.61 20.77 5.787E+00 1.728E-01 1.38088E-02 5.02110E-01 1.82575E+01 2.9046 - 6.00 20.00 5.61 20.77 6.033E+00 1.657E-01 1.26229E-02 4.78521E-01 1.81403E+01 2.8981 - 6.00 20.00 5.61 20.77 6.290E+00 1.590E-01 1.15355E-02 4.55910E-01 1.80187E+01 2.8914 - 6.00 20.00 5.61 20.77 6.558E+00 1.525E-01 1.05387E-02 4.34240E-01 1.78926E+01 2.8844 - 6.00 20.00 5.61 20.77 6.837E+00 1.463E-01 9.62513E-03 4.13477E-01 1.77622E+01 2.8771 - 6.00 20.00 5.61 20.77 7.128E+00 1.403E-01 8.78806E-03 3.93585E-01 1.76272E+01 2.8694 - 6.00 20.00 5.61 20.77 7.431E+00 1.346E-01 8.02127E-03 3.74532E-01 1.74878E+01 2.8615 - 6.00 20.00 5.61 20.77 7.748E+00 1.291E-01 7.31901E-03 3.56287E-01 1.73439E+01 2.8532 - 6.00 20.00 5.61 20.77 8.077E+00 1.238E-01 6.67601E-03 3.38817E-01 1.71954E+01 2.8446 - 6.00 20.00 5.61 20.77 8.421E+00 1.187E-01 6.08741E-03 3.22093E-01 1.70424E+01 2.8357 - 6.00 20.00 5.61 20.77 8.780E+00 1.139E-01 5.54874E-03 3.06086E-01 1.68847E+01 2.8264 - 6.00 20.00 5.61 20.77 9.153E+00 1.093E-01 5.05589E-03 2.90769E-01 1.67224E+01 2.8167 - 6.00 20.00 5.61 20.77 9.543E+00 1.048E-01 4.60508E-03 2.76114E-01 1.65554E+01 2.8067 - 6.00 20.00 5.61 20.77 9.949E+00 1.005E-01 4.19283E-03 2.62095E-01 1.63837E+01 2.7963 - 6.00 20.00 5.61 20.77 1.037E+01 9.641E-02 3.81595E-03 2.48688E-01 1.62072E+01 2.7855 - 6.00 20.00 5.61 20.77 1.081E+01 9.248E-02 3.47149E-03 2.35868E-01 1.60259E+01 2.7742 - 6.00 20.00 5.61 20.77 1.127E+01 8.870E-02 3.15677E-03 2.23613E-01 1.58399E+01 2.7625 - 6.00 20.00 5.61 20.77 1.175E+01 8.508E-02 2.86929E-03 2.11900E-01 1.56490E+01 2.7504 - 6.00 20.00 5.61 20.77 1.225E+01 8.161E-02 2.60679E-03 2.00707E-01 1.54532E+01 2.7378 - 6.00 20.00 5.61 20.77 1.278E+01 7.828E-02 2.36717E-03 1.90014E-01 1.52525E+01 2.7247 - 6.00 20.00 5.61 20.77 1.332E+01 7.508E-02 2.14850E-03 1.79801E-01 1.50470E+01 2.7112 - 6.00 20.00 5.61 20.77 1.389E+01 7.201E-02 1.94902E-03 1.70049E-01 1.48366E+01 2.6971 - 6.00 20.00 5.61 20.77 1.448E+01 6.907E-02 1.76712E-03 1.60740E-01 1.46212E+01 2.6825 - 6.00 20.00 5.61 20.77 1.509E+01 6.626E-02 1.60130E-03 1.51856E-01 1.44010E+01 2.6673 - 6.00 20.00 5.61 20.77 1.574E+01 6.355E-02 1.45021E-03 1.43381E-01 1.41759E+01 2.6515 - 6.00 20.00 5.61 20.77 1.641E+01 6.096E-02 1.31258E-03 1.35297E-01 1.39460E+01 2.6352 - 6.00 20.00 5.61 20.77 1.710E+01 5.847E-02 1.18728E-03 1.27589E-01 1.37112E+01 2.6182 - 6.00 20.00 5.61 20.77 1.783E+01 5.608E-02 1.07324E-03 1.20243E-01 1.34717E+01 2.6006 - 6.00 20.00 5.61 20.77 1.859E+01 5.379E-02 9.69504E-04 1.13244E-01 1.32275E+01 2.5823 - 6.00 20.00 5.61 20.77 1.938E+01 5.160E-02 8.75184E-04 1.06577E-01 1.29786E+01 2.5633 - 6.00 20.00 5.61 20.77 2.021E+01 4.949E-02 7.89467E-04 1.00230E-01 1.27252E+01 2.5436 - 6.00 20.00 5.61 20.77 2.107E+01 4.747E-02 7.11608E-04 9.41906E-02 1.24673E+01 2.5231 - 6.00 20.00 5.61 20.77 2.196E+01 4.553E-02 6.40926E-04 8.84454E-02 1.22051E+01 2.5019 - 6.00 20.00 5.61 20.77 2.290E+01 4.367E-02 5.76794E-04 8.29829E-02 1.19387E+01 2.4798 - 6.00 20.00 5.61 20.77 2.387E+01 4.189E-02 5.18639E-04 7.77919E-02 1.16682E+01 2.4569 - 6.00 20.00 5.61 20.77 2.489E+01 4.018E-02 4.65937E-04 7.28614E-02 1.13938E+01 2.4331 - 6.00 20.00 5.61 20.77 2.595E+01 3.854E-02 4.18208E-04 6.81809E-02 1.11156E+01 2.4083 - 6.00 20.00 5.61 20.77 2.705E+01 3.697E-02 3.75010E-04 6.37403E-02 1.08339E+01 2.3827 - 6.00 20.00 5.61 20.77 2.820E+01 3.546E-02 3.35941E-04 5.95299E-02 1.05489E+01 2.3560 - 6.00 20.00 5.61 20.77 2.940E+01 3.401E-02 3.00633E-04 5.55404E-02 1.02608E+01 2.3283 - 6.00 20.00 5.61 20.77 3.065E+01 3.262E-02 2.68747E-04 5.17628E-02 9.96992E+00 2.2996 - 6.00 20.00 5.61 20.77 3.196E+01 3.129E-02 2.39976E-04 4.81883E-02 9.67646E+00 2.2697 - 6.00 20.00 5.61 20.77 3.332E+01 3.001E-02 2.14036E-04 4.48088E-02 9.38076E+00 2.2387 - 6.00 20.00 5.61 20.77 3.474E+01 2.879E-02 1.90670E-04 4.16159E-02 9.08313E+00 2.2064 - 6.00 20.00 5.61 20.77 3.622E+01 2.761E-02 1.69642E-04 3.86021E-02 8.78391E+00 2.1729 - 6.00 20.00 5.61 20.77 3.776E+01 2.649E-02 1.50736E-04 3.57598E-02 8.48346E+00 2.1381 - 6.00 20.00 5.61 20.77 3.936E+01 2.540E-02 1.33755E-04 3.30818E-02 8.18216E+00 2.1020 - 6.00 20.00 5.61 20.77 4.104E+01 2.437E-02 1.18519E-04 3.05611E-02 7.88041E+00 2.0644 - 6.00 20.00 5.61 20.77 4.279E+01 2.337E-02 1.04865E-04 2.81910E-02 7.57863E+00 2.0253 - 6.00 20.00 5.61 20.77 4.461E+01 2.242E-02 9.26415E-05 2.59649E-02 7.27725E+00 1.9848 - 6.00 20.00 5.61 20.77 4.651E+01 2.150E-02 8.17126E-05 2.38765E-02 6.97674E+00 1.9426 - 6.00 20.00 5.61 20.77 4.848E+01 2.063E-02 7.19535E-05 2.19197E-02 6.67755E+00 1.8988 - 6.00 20.00 5.61 20.77 5.055E+01 1.978E-02 6.32507E-05 2.00886E-02 6.38017E+00 1.8532 - 6.00 20.00 5.61 20.77 5.270E+01 1.898E-02 5.55008E-05 1.83774E-02 6.08509E+00 1.8058 - 6.00 20.00 5.61 20.77 5.494E+01 1.820E-02 4.86094E-05 1.67805E-02 5.79282E+00 1.7566 - 6.00 20.00 5.61 20.77 5.728E+01 1.746E-02 4.24910E-05 1.52926E-02 5.50387E+00 1.7055 - 6.00 20.00 5.61 20.77 5.972E+01 1.675E-02 3.70674E-05 1.39085E-02 5.21874E+00 1.6523 - 6.00 20.00 5.61 20.77 6.226E+01 1.606E-02 3.22681E-05 1.26229E-02 4.93796E+00 1.5970 - 6.00 20.00 5.61 20.77 6.491E+01 1.541E-02 2.80285E-05 1.14311E-02 4.66205E+00 1.5395 - 6.00 20.00 5.61 20.77 6.767E+01 1.478E-02 2.42904E-05 1.03282E-02 4.39150E+00 1.4797 - 6.00 20.00 5.61 20.77 7.055E+01 1.417E-02 2.10008E-05 9.30950E-03 4.12683E+00 1.4175 - 6.00 20.00 5.61 20.77 7.355E+01 1.360E-02 1.81119E-05 8.37054E-03 3.86851E+00 1.3529 - 6.00 20.00 5.61 20.77 7.669E+01 1.304E-02 1.55800E-05 7.50689E-03 3.61703E+00 1.2857 - 6.00 20.00 5.61 20.77 7.995E+01 1.251E-02 1.33662E-05 6.71431E-03 3.37282E+00 1.2158 - 6.00 20.00 5.61 20.77 8.335E+01 1.200E-02 1.14350E-05 5.98865E-03 3.13633E+00 1.1431 - 6.00 20.00 5.61 20.77 8.690E+01 1.151E-02 9.75434E-06 5.32589E-03 2.90794E+00 1.0674 - 6.00 20.00 5.61 20.77 9.060E+01 1.104E-02 8.29555E-06 4.72215E-03 2.68803E+00 0.9888 - 6.00 20.00 5.61 20.77 9.445E+01 1.059E-02 7.03268E-06 4.17365E-03 2.47692E+00 0.9070 - 6.00 20.00 5.61 20.77 9.847E+01 1.016E-02 5.94253E-06 3.67678E-03 2.27491E+00 0.8219 - 6.00 20.00 5.61 20.77 1.027E+02 9.741E-03 5.00420E-06 3.22799E-03 2.08223E+00 0.7334 - 6.00 20.00 5.61 20.77 1.070E+02 9.343E-03 4.19905E-06 2.82390E-03 1.89910E+00 0.6414 - 6.00 20.00 5.61 20.77 1.116E+02 8.962E-03 3.51040E-06 2.46125E-03 1.72566E+00 0.5456 - 6.00 20.00 5.61 20.77 1.163E+02 8.596E-03 2.92338E-06 2.13690E-03 1.56201E+00 0.4460 - 6.00 20.00 5.61 20.77 1.213E+02 8.245E-03 2.42474E-06 1.84785E-03 1.40821E+00 0.3423 - 6.00 20.00 5.61 20.77 1.265E+02 7.908E-03 2.00275E-06 1.59121E-03 1.26424E+00 0.2345 - 6.00 20.00 5.61 20.77 1.318E+02 7.585E-03 1.64700E-06 1.36425E-03 1.13005E+00 0.1223 - 6.00 20.00 5.61 20.77 1.374E+02 7.276E-03 1.34830E-06 1.16436E-03 1.00552E+00 0.0055 - 6.00 20.00 5.61 20.77 1.433E+02 6.979E-03 1.09856E-06 9.89070E-04 8.90493E-01 -0.1160 - 6.00 20.00 5.61 20.77 1.494E+02 6.694E-03 8.90677E-07 8.36035E-04 7.84745E-01 -0.2424 - 6.00 20.00 5.61 20.77 1.557E+02 6.421E-03 7.18436E-07 7.03061E-04 6.88015E-01 -0.3739 - 6.00 20.00 5.61 20.77 1.624E+02 6.158E-03 5.76411E-07 5.88083E-04 5.99990E-01 -0.5108 - 6.00 20.00 5.61 20.77 1.693E+02 5.907E-03 4.59894E-07 4.89176E-04 5.20321E-01 -0.6533 - 6.00 20.00 5.61 20.77 1.765E+02 5.666E-03 3.64809E-07 4.04551E-04 4.48622E-01 -0.8016 - 6.00 20.00 5.61 20.77 1.840E+02 5.435E-03 2.87639E-07 3.32550E-04 3.84472E-01 -0.9559 - 6.00 20.00 5.61 20.77 1.918E+02 5.213E-03 2.25371E-07 2.71649E-04 3.27428E-01 -1.1165 - 6.00 20.00 5.61 20.77 2.000E+02 5.000E-03 1.75428E-07 2.20450E-04 2.77026E-01 -1.2836 + M Rrup F_FF Rps Freq(Hz) Per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas + 6.00 20.00 5.61 20.77 5.000E-02 2.000E+01 2.35273E+00 7.39131E-01 2.32205E-01 -1.4601 + 6.00 20.00 5.61 20.77 5.213E-02 1.918E+01 2.35182E+00 7.70292E-01 2.52293E-01 -1.3772 + 6.00 20.00 5.61 20.77 5.435E-02 1.840E+01 2.35079E+00 8.02722E-01 2.74105E-01 -1.2942 + 6.00 20.00 5.61 20.77 5.666E-02 1.765E+01 2.34961E+00 8.36467E-01 2.97784E-01 -1.2114 + 6.00 20.00 5.61 20.77 5.907E-02 1.693E+01 2.34828E+00 8.71572E-01 3.23487E-01 -1.1286 + 6.00 20.00 5.61 20.77 6.158E-02 1.624E+01 2.34678E+00 9.08086E-01 3.51383E-01 -1.0459 + 6.00 20.00 5.61 20.77 6.421E-02 1.557E+01 2.34523E+00 9.46105E-01 3.81675E-01 -0.9632 + 6.00 20.00 5.61 20.77 6.694E-02 1.494E+01 2.34346E+00 9.85629E-01 4.14543E-01 -0.8806 + 6.00 20.00 5.61 20.77 6.979E-02 1.433E+01 2.34148E+00 1.02671E+00 4.50197E-01 -0.7981 + 6.00 20.00 5.61 20.77 7.276E-02 1.374E+01 2.33924E+00 1.06938E+00 4.88865E-01 -0.7157 + 6.00 20.00 5.61 20.77 7.585E-02 1.318E+01 2.33674E+00 1.11370E+00 5.30793E-01 -0.6334 + 6.00 20.00 5.61 20.77 7.908E-02 1.265E+01 2.33393E+00 1.15970E+00 5.76243E-01 -0.5512 + 6.00 20.00 5.61 20.77 8.245E-02 1.213E+01 2.33081E+00 1.20744E+00 6.25497E-01 -0.4692 + 6.00 20.00 5.61 20.77 8.596E-02 1.163E+01 2.32732E+00 1.25695E+00 6.78856E-01 -0.3873 + 6.00 20.00 5.61 20.77 8.962E-02 1.116E+01 2.32346E+00 1.30826E+00 7.36642E-01 -0.3057 + 6.00 20.00 5.61 20.77 9.343E-02 1.070E+01 2.31917E+00 1.36143E+00 7.99201E-01 -0.2241 + 6.00 20.00 5.61 20.77 9.741E-02 1.027E+01 2.31442E+00 1.41646E+00 8.66898E-01 -0.1428 + 6.00 20.00 5.61 20.77 1.016E-01 9.847E+00 2.30918E+00 1.47340E+00 9.40124E-01 -0.0617 + 6.00 20.00 5.61 20.77 1.059E-01 9.445E+00 2.30340E+00 1.53227E+00 1.01929E+00 0.0191 + 6.00 20.00 5.61 20.77 1.104E-01 9.060E+00 2.29557E+00 1.59204E+00 1.10413E+00 0.0991 + 6.00 20.00 5.61 20.77 1.151E-01 8.690E+00 2.28569E+00 1.65266E+00 1.19495E+00 0.1781 + 6.00 20.00 5.61 20.77 1.200E-01 8.335E+00 2.27503E+00 1.71496E+00 1.29277E+00 0.2568 + 6.00 20.00 5.61 20.77 1.251E-01 7.995E+00 2.26354E+00 1.77892E+00 1.39805E+00 0.3351 + 6.00 20.00 5.61 20.77 1.304E-01 7.669E+00 2.25117E+00 1.84449E+00 1.51128E+00 0.4130 + 6.00 20.00 5.61 20.77 1.360E-01 7.355E+00 2.23786E+00 1.91163E+00 1.63295E+00 0.4904 + 6.00 20.00 5.61 20.77 1.417E-01 7.055E+00 2.22356E+00 1.98025E+00 1.76356E+00 0.5673 + 6.00 20.00 5.61 20.77 1.478E-01 6.767E+00 2.20821E+00 2.05027E+00 1.90363E+00 0.6438 + 6.00 20.00 5.61 20.77 1.541E-01 6.491E+00 2.19175E+00 2.12159E+00 2.05368E+00 0.7196 + 6.00 20.00 5.61 20.77 1.606E-01 6.226E+00 2.17411E+00 2.19409E+00 2.21425E+00 0.7949 + 6.00 20.00 5.61 20.77 1.675E-01 5.972E+00 2.15525E+00 2.26762E+00 2.38585E+00 0.8696 + 6.00 20.00 5.61 20.77 1.746E-01 5.728E+00 2.13510E+00 2.34203E+00 2.56901E+00 0.9435 + 6.00 20.00 5.61 20.77 1.820E-01 5.494E+00 2.11361E+00 2.41712E+00 2.76423E+00 1.0168 + 6.00 20.00 5.61 20.77 1.898E-01 5.270E+00 2.09072E+00 2.49271E+00 2.97199E+00 1.0892 + 6.00 20.00 5.61 20.77 1.978E-01 5.055E+00 2.06639E+00 2.56855E+00 3.19275E+00 1.1609 + 6.00 20.00 5.61 20.77 2.063E-01 4.848E+00 2.04057E+00 2.64441E+00 3.42693E+00 1.2317 + 6.00 20.00 5.61 20.77 2.150E-01 4.651E+00 2.01322E+00 2.72000E+00 3.67491E+00 1.3015 + 6.00 20.00 5.61 20.77 2.242E-01 4.461E+00 1.98431E+00 2.79504E+00 3.93701E+00 1.3704 + 6.00 20.00 5.61 20.77 2.337E-01 4.279E+00 1.95381E+00 2.86920E+00 4.21348E+00 1.4383 + 6.00 20.00 5.61 20.77 2.437E-01 4.104E+00 1.92097E+00 2.94104E+00 4.50279E+00 1.5047 + 6.00 20.00 5.61 20.77 2.540E-01 3.936E+00 1.88650E+00 3.01119E+00 4.80639E+00 1.5699 + 6.00 20.00 5.61 20.77 2.649E-01 3.776E+00 1.85042E+00 3.07930E+00 5.12430E+00 1.6340 + 6.00 20.00 5.61 20.77 2.761E-01 3.622E+00 1.81276E+00 3.14501E+00 5.45639E+00 1.6968 + 6.00 20.00 5.61 20.77 2.879E-01 3.474E+00 1.77354E+00 3.20793E+00 5.80242E+00 1.7583 + 6.00 20.00 5.61 20.77 3.001E-01 3.332E+00 1.73282E+00 3.26767E+00 6.16202E+00 1.8184 + 6.00 20.00 5.61 20.77 3.129E-01 3.196E+00 1.69066E+00 3.32385E+00 6.53472E+00 1.8771 + 6.00 20.00 5.61 20.77 3.262E-01 3.065E+00 1.64713E+00 3.37610E+00 6.91992E+00 1.9344 + 6.00 20.00 5.61 20.77 3.401E-01 2.940E+00 1.60233E+00 3.42405E+00 7.31689E+00 1.9902 + 6.00 20.00 5.61 20.77 3.546E-01 2.820E+00 1.55592E+00 3.46636E+00 7.72257E+00 2.0441 + 6.00 20.00 5.61 20.77 3.697E-01 2.705E+00 1.50823E+00 3.50313E+00 8.13663E+00 2.0964 + 6.00 20.00 5.61 20.77 3.854E-01 2.595E+00 1.45964E+00 3.53457E+00 8.55905E+00 2.1470 + 6.00 20.00 5.61 20.77 4.018E-01 2.489E+00 1.41031E+00 3.56044E+00 8.98863E+00 2.1960 + 6.00 20.00 5.61 20.77 4.189E-01 2.387E+00 1.36037E+00 3.58054E+00 9.42410E+00 2.2433 + 6.00 20.00 5.61 20.77 4.367E-01 2.290E+00 1.31001E+00 3.59473E+00 9.86410E+00 2.2889 + 6.00 20.00 5.61 20.77 4.553E-01 2.196E+00 1.25938E+00 3.60289E+00 1.03073E+01 2.3328 + 6.00 20.00 5.61 20.77 4.747E-01 2.107E+00 1.20867E+00 3.60497E+00 1.07521E+01 2.3751 + 6.00 20.00 5.61 20.77 4.949E-01 2.021E+00 1.15805E+00 3.60098E+00 1.11973E+01 2.4157 + 6.00 20.00 5.61 20.77 5.160E-01 1.938E+00 1.10731E+00 3.58974E+00 1.16374E+01 2.4542 + 6.00 20.00 5.61 20.77 5.379E-01 1.859E+00 1.05639E+00 3.57043E+00 1.20675E+01 2.4905 + 6.00 20.00 5.61 20.77 5.608E-01 1.783E+00 1.00612E+00 3.54526E+00 1.24924E+01 2.5251 + 6.00 20.00 5.61 20.77 5.847E-01 1.710E+00 9.56664E-01 3.51445E+00 1.29108E+01 2.5581 + 6.00 20.00 5.61 20.77 6.096E-01 1.641E+00 9.08159E-01 3.47824E+00 1.33217E+01 2.5894 + 6.00 20.00 5.61 20.77 6.355E-01 1.574E+00 8.60743E-01 3.43695E+00 1.37237E+01 2.6191 + 6.00 20.00 5.61 20.77 6.626E-01 1.509E+00 8.14540E-01 3.39088E+00 1.41160E+01 2.6473 + 6.00 20.00 5.61 20.77 6.907E-01 1.448E+00 7.69656E-01 3.34039E+00 1.44976E+01 2.6740 + 6.00 20.00 5.61 20.77 7.201E-01 1.389E+00 7.26184E-01 3.28585E+00 1.48679E+01 2.6992 + 6.00 20.00 5.61 20.77 7.508E-01 1.332E+00 6.84202E-01 3.22765E+00 1.52261E+01 2.7230 + 6.00 20.00 5.61 20.77 7.828E-01 1.278E+00 6.43772E-01 3.16618E+00 1.55718E+01 2.7455 + 6.00 20.00 5.61 20.77 8.161E-01 1.225E+00 6.04943E-01 3.10183E+00 1.59046E+01 2.7666 + 6.00 20.00 5.61 20.77 8.508E-01 1.175E+00 5.67747E-01 3.03500E+00 1.62242E+01 2.7865 + 6.00 20.00 5.61 20.77 8.870E-01 1.127E+00 5.32203E-01 2.96608E+00 1.65306E+01 2.8052 + 6.00 20.00 5.61 20.77 9.248E-01 1.081E+00 4.98320E-01 2.89544E+00 1.68237E+01 2.8228 + 6.00 20.00 5.61 20.77 9.641E-01 1.037E+00 4.66092E-01 2.82344E+00 1.71035E+01 2.8393 + 6.00 20.00 5.61 20.77 1.005E+00 9.949E-01 4.35505E-01 2.75043E+00 1.73703E+01 2.8548 + 6.00 20.00 5.61 20.77 1.048E+00 9.543E-01 4.06533E-01 2.67673E+00 1.76244E+01 2.8693 + 6.00 20.00 5.61 20.77 1.093E+00 9.153E-01 3.79119E-01 2.60247E+00 1.78647E+01 2.8828 + 6.00 20.00 5.61 20.77 1.139E+00 8.779E-01 3.52831E-01 2.52509E+00 1.80712E+01 2.8943 + 6.00 20.00 5.61 20.77 1.187E+00 8.421E-01 3.28086E-01 2.44793E+00 1.82646E+01 2.9050 + 6.00 20.00 5.61 20.77 1.238E+00 8.077E-01 3.04832E-01 2.37122E+00 1.84452E+01 2.9148 + 6.00 20.00 5.61 20.77 1.291E+00 7.748E-01 2.83013E-01 2.29519E+00 1.86136E+01 2.9239 + 6.00 20.00 5.61 20.77 1.346E+00 7.431E-01 2.62569E-01 2.22002E+00 1.87703E+01 2.9323 + 6.00 20.00 5.61 20.77 1.403E+00 7.128E-01 2.43349E-01 2.14508E+00 1.89085E+01 2.9396 + 6.00 20.00 5.61 20.77 1.463E+00 6.837E-01 2.25326E-01 2.07074E+00 1.90301E+01 2.9460 + 6.00 20.00 5.61 20.77 1.525E+00 6.558E-01 2.08511E-01 1.99777E+00 1.91408E+01 2.9518 + 6.00 20.00 5.61 20.77 1.590E+00 6.290E-01 1.92840E-01 1.92625E+00 1.92411E+01 2.9570 + 6.00 20.00 5.61 20.77 1.657E+00 6.033E-01 1.78251E-01 1.85630E+00 1.93315E+01 2.9617 + 6.00 20.00 5.61 20.77 1.728E+00 5.787E-01 1.64636E-01 1.78748E+00 1.94071E+01 2.9656 + 6.00 20.00 5.61 20.77 1.802E+00 5.551E-01 1.51948E-01 1.71995E+00 1.94686E+01 2.9688 + 6.00 20.00 5.61 20.77 1.878E+00 5.324E-01 1.40173E-01 1.65418E+00 1.95211E+01 2.9715 + 6.00 20.00 5.61 20.77 1.958E+00 5.107E-01 1.29253E-01 1.59023E+00 1.95651E+01 2.9737 + 6.00 20.00 5.61 20.77 2.041E+00 4.898E-01 1.19097E-01 1.52765E+00 1.95950E+01 2.9753 + 6.00 20.00 5.61 20.77 2.128E+00 4.698E-01 1.09689E-01 1.46685E+00 1.96159E+01 2.9763 + 6.00 20.00 5.61 20.77 2.219E+00 4.507E-01 1.00985E-01 1.40792E+00 1.96292E+01 2.9770 + 6.00 20.00 5.61 20.77 2.313E+00 4.323E-01 9.29364E-02 1.35086E+00 1.96351E+01 2.9773 + 6.00 20.00 5.61 20.77 2.412E+00 4.146E-01 8.54993E-02 1.29565E+00 1.96341E+01 2.9773 + 6.00 20.00 5.61 20.77 2.514E+00 3.977E-01 7.86164E-02 1.24205E+00 1.96229E+01 2.9767 + 6.00 20.00 5.61 20.77 2.621E+00 3.815E-01 7.22623E-02 1.19025E+00 1.96049E+01 2.9758 + 6.00 20.00 5.61 20.77 2.733E+00 3.659E-01 6.64004E-02 1.14024E+00 1.95806E+01 2.9745 + 6.00 20.00 5.61 20.77 2.849E+00 3.510E-01 6.09952E-02 1.09200E+00 1.95502E+01 2.9730 + 6.00 20.00 5.61 20.77 2.971E+00 3.366E-01 5.60132E-02 1.04549E+00 1.95141E+01 2.9711 + 6.00 20.00 5.61 20.77 3.097E+00 3.229E-01 5.14231E-02 1.00066E+00 1.94723E+01 2.9690 + 6.00 20.00 5.61 20.77 3.229E+00 3.097E-01 4.71956E-02 9.57486E-01 1.94251E+01 2.9666 + 6.00 20.00 5.61 20.77 3.366E+00 2.971E-01 4.33038E-02 9.15918E-01 1.93726E+01 2.9639 + 6.00 20.00 5.61 20.77 3.510E+00 2.849E-01 3.97220E-02 8.75916E-01 1.93150E+01 2.9609 + 6.00 20.00 5.61 20.77 3.659E+00 2.733E-01 3.64266E-02 8.37436E-01 1.92524E+01 2.9576 + 6.00 20.00 5.61 20.77 3.815E+00 2.621E-01 3.33959E-02 8.00435E-01 1.91849E+01 2.9541 + 6.00 20.00 5.61 20.77 3.977E+00 2.514E-01 3.06092E-02 7.64868E-01 1.91126E+01 2.9504 + 6.00 20.00 5.61 20.77 4.146E+00 2.412E-01 2.80478E-02 7.30690E-01 1.90357E+01 2.9463 + 6.00 20.00 5.61 20.77 4.323E+00 2.313E-01 2.56940E-02 6.97859E-01 1.89541E+01 2.9420 + 6.00 20.00 5.61 20.77 4.507E+00 2.219E-01 2.35316E-02 6.66328E-01 1.88680E+01 2.9375 + 6.00 20.00 5.61 20.77 4.698E+00 2.128E-01 2.15456E-02 6.36057E-01 1.87773E+01 2.9326 + 6.00 20.00 5.61 20.77 4.898E+00 2.041E-01 1.97220E-02 6.07001E-01 1.86822E+01 2.9276 + 6.00 20.00 5.61 20.77 5.107E+00 1.958E-01 1.80480E-02 5.79119E-01 1.85826E+01 2.9222 + 6.00 20.00 5.61 20.77 5.324E+00 1.878E-01 1.65116E-02 5.52370E-01 1.84786E+01 2.9166 + 6.00 20.00 5.61 20.77 5.551E+00 1.802E-01 1.51020E-02 5.26713E-01 1.83702E+01 2.9107 + 6.00 20.00 5.61 20.77 5.787E+00 1.728E-01 1.38088E-02 5.02110E-01 1.82575E+01 2.9046 + 6.00 20.00 5.61 20.77 6.033E+00 1.657E-01 1.26229E-02 4.78521E-01 1.81403E+01 2.8981 + 6.00 20.00 5.61 20.77 6.290E+00 1.590E-01 1.15355E-02 4.55910E-01 1.80187E+01 2.8914 + 6.00 20.00 5.61 20.77 6.558E+00 1.525E-01 1.05387E-02 4.34240E-01 1.78926E+01 2.8844 + 6.00 20.00 5.61 20.77 6.837E+00 1.463E-01 9.62513E-03 4.13477E-01 1.77622E+01 2.8771 + 6.00 20.00 5.61 20.77 7.128E+00 1.403E-01 8.78806E-03 3.93585E-01 1.76272E+01 2.8694 + 6.00 20.00 5.61 20.77 7.431E+00 1.346E-01 8.02127E-03 3.74532E-01 1.74878E+01 2.8615 + 6.00 20.00 5.61 20.77 7.748E+00 1.291E-01 7.31901E-03 3.56287E-01 1.73439E+01 2.8532 + 6.00 20.00 5.61 20.77 8.077E+00 1.238E-01 6.67601E-03 3.38817E-01 1.71954E+01 2.8446 + 6.00 20.00 5.61 20.77 8.421E+00 1.187E-01 6.08741E-03 3.22093E-01 1.70424E+01 2.8357 + 6.00 20.00 5.61 20.77 8.780E+00 1.139E-01 5.54874E-03 3.06086E-01 1.68847E+01 2.8264 + 6.00 20.00 5.61 20.77 9.153E+00 1.093E-01 5.05589E-03 2.90769E-01 1.67224E+01 2.8167 + 6.00 20.00 5.61 20.77 9.543E+00 1.048E-01 4.60508E-03 2.76114E-01 1.65554E+01 2.8067 + 6.00 20.00 5.61 20.77 9.949E+00 1.005E-01 4.19283E-03 2.62095E-01 1.63837E+01 2.7963 + 6.00 20.00 5.61 20.77 1.037E+01 9.641E-02 3.81595E-03 2.48688E-01 1.62072E+01 2.7855 + 6.00 20.00 5.61 20.77 1.081E+01 9.248E-02 3.47149E-03 2.35868E-01 1.60259E+01 2.7742 + 6.00 20.00 5.61 20.77 1.127E+01 8.870E-02 3.15677E-03 2.23613E-01 1.58399E+01 2.7625 + 6.00 20.00 5.61 20.77 1.175E+01 8.508E-02 2.86929E-03 2.11900E-01 1.56490E+01 2.7504 + 6.00 20.00 5.61 20.77 1.225E+01 8.161E-02 2.60679E-03 2.00707E-01 1.54532E+01 2.7378 + 6.00 20.00 5.61 20.77 1.278E+01 7.828E-02 2.36717E-03 1.90014E-01 1.52525E+01 2.7247 + 6.00 20.00 5.61 20.77 1.332E+01 7.508E-02 2.14850E-03 1.79801E-01 1.50470E+01 2.7112 + 6.00 20.00 5.61 20.77 1.389E+01 7.201E-02 1.94902E-03 1.70049E-01 1.48366E+01 2.6971 + 6.00 20.00 5.61 20.77 1.448E+01 6.907E-02 1.76712E-03 1.60740E-01 1.46212E+01 2.6825 + 6.00 20.00 5.61 20.77 1.509E+01 6.626E-02 1.60130E-03 1.51856E-01 1.44010E+01 2.6673 + 6.00 20.00 5.61 20.77 1.574E+01 6.355E-02 1.45021E-03 1.43381E-01 1.41759E+01 2.6515 + 6.00 20.00 5.61 20.77 1.641E+01 6.096E-02 1.31258E-03 1.35297E-01 1.39460E+01 2.6352 + 6.00 20.00 5.61 20.77 1.710E+01 5.847E-02 1.18728E-03 1.27589E-01 1.37112E+01 2.6182 + 6.00 20.00 5.61 20.77 1.783E+01 5.608E-02 1.07324E-03 1.20243E-01 1.34717E+01 2.6006 + 6.00 20.00 5.61 20.77 1.859E+01 5.379E-02 9.69504E-04 1.13244E-01 1.32275E+01 2.5823 + 6.00 20.00 5.61 20.77 1.938E+01 5.160E-02 8.75184E-04 1.06577E-01 1.29786E+01 2.5633 + 6.00 20.00 5.61 20.77 2.021E+01 4.949E-02 7.89467E-04 1.00230E-01 1.27252E+01 2.5436 + 6.00 20.00 5.61 20.77 2.107E+01 4.747E-02 7.11608E-04 9.41906E-02 1.24673E+01 2.5231 + 6.00 20.00 5.61 20.77 2.196E+01 4.553E-02 6.40926E-04 8.84454E-02 1.22051E+01 2.5019 + 6.00 20.00 5.61 20.77 2.290E+01 4.367E-02 5.76794E-04 8.29829E-02 1.19387E+01 2.4798 + 6.00 20.00 5.61 20.77 2.387E+01 4.189E-02 5.18639E-04 7.77919E-02 1.16682E+01 2.4569 + 6.00 20.00 5.61 20.77 2.489E+01 4.018E-02 4.65937E-04 7.28614E-02 1.13938E+01 2.4331 + 6.00 20.00 5.61 20.77 2.595E+01 3.854E-02 4.18208E-04 6.81809E-02 1.11156E+01 2.4083 + 6.00 20.00 5.61 20.77 2.705E+01 3.697E-02 3.75010E-04 6.37403E-02 1.08339E+01 2.3827 + 6.00 20.00 5.61 20.77 2.820E+01 3.546E-02 3.35941E-04 5.95299E-02 1.05489E+01 2.3560 + 6.00 20.00 5.61 20.77 2.940E+01 3.401E-02 3.00633E-04 5.55404E-02 1.02608E+01 2.3283 + 6.00 20.00 5.61 20.77 3.065E+01 3.262E-02 2.68747E-04 5.17628E-02 9.96992E+00 2.2996 + 6.00 20.00 5.61 20.77 3.196E+01 3.129E-02 2.39976E-04 4.81883E-02 9.67646E+00 2.2697 + 6.00 20.00 5.61 20.77 3.332E+01 3.001E-02 2.14036E-04 4.48088E-02 9.38076E+00 2.2387 + 6.00 20.00 5.61 20.77 3.474E+01 2.879E-02 1.90670E-04 4.16159E-02 9.08313E+00 2.2064 + 6.00 20.00 5.61 20.77 3.622E+01 2.761E-02 1.69642E-04 3.86021E-02 8.78391E+00 2.1729 + 6.00 20.00 5.61 20.77 3.776E+01 2.649E-02 1.50736E-04 3.57598E-02 8.48346E+00 2.1381 + 6.00 20.00 5.61 20.77 3.936E+01 2.540E-02 1.33755E-04 3.30818E-02 8.18216E+00 2.1020 + 6.00 20.00 5.61 20.77 4.104E+01 2.437E-02 1.18519E-04 3.05611E-02 7.88041E+00 2.0644 + 6.00 20.00 5.61 20.77 4.279E+01 2.337E-02 1.04865E-04 2.81910E-02 7.57863E+00 2.0253 + 6.00 20.00 5.61 20.77 4.461E+01 2.242E-02 9.26415E-05 2.59649E-02 7.27725E+00 1.9848 + 6.00 20.00 5.61 20.77 4.651E+01 2.150E-02 8.17126E-05 2.38765E-02 6.97674E+00 1.9426 + 6.00 20.00 5.61 20.77 4.848E+01 2.063E-02 7.19535E-05 2.19197E-02 6.67755E+00 1.8988 + 6.00 20.00 5.61 20.77 5.055E+01 1.978E-02 6.32507E-05 2.00886E-02 6.38017E+00 1.8532 + 6.00 20.00 5.61 20.77 5.270E+01 1.898E-02 5.55008E-05 1.83774E-02 6.08509E+00 1.8058 + 6.00 20.00 5.61 20.77 5.494E+01 1.820E-02 4.86094E-05 1.67805E-02 5.79282E+00 1.7566 + 6.00 20.00 5.61 20.77 5.728E+01 1.746E-02 4.24910E-05 1.52926E-02 5.50387E+00 1.7055 + 6.00 20.00 5.61 20.77 5.972E+01 1.675E-02 3.70674E-05 1.39085E-02 5.21874E+00 1.6523 + 6.00 20.00 5.61 20.77 6.226E+01 1.606E-02 3.22681E-05 1.26229E-02 4.93796E+00 1.5970 + 6.00 20.00 5.61 20.77 6.491E+01 1.541E-02 2.80285E-05 1.14311E-02 4.66205E+00 1.5395 + 6.00 20.00 5.61 20.77 6.767E+01 1.478E-02 2.42904E-05 1.03282E-02 4.39150E+00 1.4797 + 6.00 20.00 5.61 20.77 7.055E+01 1.417E-02 2.10008E-05 9.30950E-03 4.12683E+00 1.4175 + 6.00 20.00 5.61 20.77 7.355E+01 1.360E-02 1.81119E-05 8.37054E-03 3.86851E+00 1.3529 + 6.00 20.00 5.61 20.77 7.669E+01 1.304E-02 1.55800E-05 7.50689E-03 3.61703E+00 1.2857 + 6.00 20.00 5.61 20.77 7.995E+01 1.251E-02 1.33662E-05 6.71431E-03 3.37282E+00 1.2158 + 6.00 20.00 5.61 20.77 8.335E+01 1.200E-02 1.14350E-05 5.98865E-03 3.13633E+00 1.1431 + 6.00 20.00 5.61 20.77 8.690E+01 1.151E-02 9.75434E-06 5.32589E-03 2.90794E+00 1.0674 + 6.00 20.00 5.61 20.77 9.060E+01 1.104E-02 8.29555E-06 4.72215E-03 2.68803E+00 0.9888 + 6.00 20.00 5.61 20.77 9.445E+01 1.059E-02 7.03268E-06 4.17365E-03 2.47692E+00 0.9070 + 6.00 20.00 5.61 20.77 9.847E+01 1.016E-02 5.94253E-06 3.67678E-03 2.27491E+00 0.8219 + 6.00 20.00 5.61 20.77 1.027E+02 9.741E-03 5.00420E-06 3.22799E-03 2.08223E+00 0.7334 + 6.00 20.00 5.61 20.77 1.070E+02 9.343E-03 4.19905E-06 2.82390E-03 1.89910E+00 0.6414 + 6.00 20.00 5.61 20.77 1.116E+02 8.962E-03 3.51040E-06 2.46125E-03 1.72566E+00 0.5456 + 6.00 20.00 5.61 20.77 1.163E+02 8.596E-03 2.92338E-06 2.13690E-03 1.56201E+00 0.4460 + 6.00 20.00 5.61 20.77 1.213E+02 8.245E-03 2.42474E-06 1.84785E-03 1.40821E+00 0.3423 + 6.00 20.00 5.61 20.77 1.265E+02 7.908E-03 2.00275E-06 1.59121E-03 1.26424E+00 0.2345 + 6.00 20.00 5.61 20.77 1.318E+02 7.585E-03 1.64700E-06 1.36425E-03 1.13005E+00 0.1223 + 6.00 20.00 5.61 20.77 1.374E+02 7.276E-03 1.34830E-06 1.16436E-03 1.00552E+00 0.0055 + 6.00 20.00 5.61 20.77 1.433E+02 6.979E-03 1.09856E-06 9.89070E-04 8.90493E-01 -0.1160 + 6.00 20.00 5.61 20.77 1.494E+02 6.694E-03 8.90677E-07 8.36035E-04 7.84745E-01 -0.2424 + 6.00 20.00 5.61 20.77 1.557E+02 6.421E-03 7.18436E-07 7.03061E-04 6.88015E-01 -0.3739 + 6.00 20.00 5.61 20.77 1.624E+02 6.158E-03 5.76411E-07 5.88083E-04 5.99990E-01 -0.5108 + 6.00 20.00 5.61 20.77 1.693E+02 5.907E-03 4.59894E-07 4.89176E-04 5.20321E-01 -0.6533 + 6.00 20.00 5.61 20.77 1.765E+02 5.666E-03 3.64809E-07 4.04551E-04 4.48622E-01 -0.8016 + 6.00 20.00 5.61 20.77 1.840E+02 5.435E-03 2.87639E-07 3.32550E-04 3.84472E-01 -0.9559 + 6.00 20.00 5.61 20.77 1.918E+02 5.213E-03 2.25371E-07 2.71649E-04 3.27428E-01 -1.1165 + 6.00 20.00 5.61 20.77 2.000E+02 5.000E-03 1.75428E-07 2.20450E-04 2.77026E-01 -1.2836 diff --git a/tests/data/test-bt15_ena.ofr b/tests/data/test-bt15_ena.ofr index 88b9818..4fe0c62 100644 --- a/tests/data/test-bt15_ena.ofr +++ b/tests/data/test-bt15_ena.ofr @@ -2,72 +2,72 @@ 12/11/15 ! Added parameters for a high-cut filter !Title: - Boatwright and Seekins (2011) attenuation model) + Boatwright and Seekins (2011) attenuation model) !rho, beta, prtitn, radpat, fs: 2.8 3.7 0.707 0.55 2.0 !spectral shape: source number, pf_a, pd_a, pf_b, pd_b ! where source number means: ! 1 = 1-corner (S = 1/(1+(f/fc)**pf_a)**pd_a) ! 2 = Joyner (BSSA 74, 1167--1188) -! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, +! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, ! 17--30) ! 4 = Atkinson & Silva (BSSA 87, 97--113) ! 5 = Haddon 1996 (approximate spectra in Fig. 10 of -! Haddon's paper in BSSA 86, 1300--1313; +! Haddon's paper in BSSA 86, 1300--1313; ! see also Atkinson & Boore, BSSA 88, 917--934) ! 6 = AB98-California (Atkinson & Boore BSSA 88, 917--934) -! 7 = Boatwright & Choy (this is the functional form used by +! 7 = Boatwright & Choy (this is the functional form used by ! Boore & Atkinson, BSSA 79, 1736--1761, p. 1761) -! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation +! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation ! workshop) ! 9 = Atkinson & Silva (BSSA 90, 255--274) ! 10 = Atkinson (2005 model), -! 11 = Generalized multiplicative two-corner model +! 11 = Generalized multiplicative two-corner model ! (S = [1/(1+(f/fa)**pf_a)**pd_a]*[1/(1+(f/fb)**pf_b)**pd_b]) -! 12 = Generalized additive two-corner model +! 12 = Generalized additive two-corner model ! (S = (1-eps)/(1+(f/fa)**pf_a)**pd_a] + eps/(1+(f/fb)**pf_b)**pd_b) ! NOTE: if M=4.0 2.410 -0.533 0.0 2.520 -0.637 0.0 @@ -86,12 +86,12 @@ ! reflect my current preferred terminology. I do not have time to do this now). ! Specification of the finite-fault factor h: ! If nlines = 1 -! log10(f_ff) = c1 + c2*amag +! log10(f_ff) = c1 + c2*amag ! If nlines = 2 ! log10(f_ff) = c1 + c2*amag for amag=Mh ! where Mh is determined by the intersection of the two lines -! (this is computed in the program) +! (this is computed in the program) ! If nlines = 3 ! log10(f_ff) = c1 + c2*amag for amag=Mh+DeltaM/2 @@ -100,19 +100,19 @@ ! *** NOTE: placeholders are needed for c3, c4, and DeltaM, even if not used. ! ! Published finite-fault factors -! Author applicable_region meaning_of_r iflag_f_ff nlines c1 c2 c3 c4 +! Author applicable_region meaning_of_r iflag_f_ff nlines c1 c2 c3 c4 ! Atkinson and Silva (2000) (AS00) ACR r_rup 1 1 -0.0500 0.1500 0.0 0.0 ! Toro (2002) (T02) SCR r_rup 2 1 -1.0506 0.2606 0.0 0.0 ! Atkinson and Boore (2003) (AB03) subduction r_rup 1 1 -2.1403 0.5070 0.0 0.0 ! Yenier and Atkinson (2014) (YA14) ACR r_rup 1 1 -1.7200 0.4300 0.0 0.0 ! Yenier and Atkinson (2015) (YA15) ACR r_rup 1 1 -0.4050 0.2350 0.0 0.0 ! Boore and Thompson (2015) (BT15) see below -! +! ! Input for some of the models, as well as suggested modifications for stable continental regions ! Assuming that all of the above the above relations except Toro (2002) and Atkinson and Boore (2003) ! are for active crustal regions, and that h is proportional to fault radius, then -0.1644 should be ! added to c1 (and c3 for Boore (2014) to adjust for the smaller fault size expected for stable continental region -! earthquakes (this adjustment factor uses radius ~ stress^-1/3, and a stress of 88 bars for ACR (from +! earthquakes (this adjustment factor uses radius ~ stress^-1/3, and a stress of 88 bars for ACR (from ! my determination of what stress matches the Atkinson and Silva (2000) high-frequency spectral level-- ! see What_SCF_stress_param_is_consistent_with_the_AS00_source_model.pdf in the daves notes page of ! www.daveboore.com) and 185 bars for SCR, from my inversion of 0.1 s and 0.2 s PSA values for 8 ENA @@ -135,9 +135,9 @@ ! !Geometrical spreading option: ! 0 = use standard hinged line segments -! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; +! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; ! they were not intended for general use): -! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), +! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), ! with Q=500f^0.5, which must be specified below. ! 2 = Dave Boore's trial spreading #1 for ENA. ! 3 = Gail Atkinson's Sept, 2012 report "nga-e-r12_AttenShape.pdf". For this @@ -148,18 +148,18 @@ 0 !Parameters for the frequency dependent gsprd: ! option 2: -! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, +! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ! ft1_dmb_gsprd, ft2_dmb_gsprd ! option 4: ! h4gspread (a nominal value of focal depth; in a later version I will put this into the control files for the SMSIN driver programs): ! (Placeholders are needed, but not used, even if the geometrical spreading option is not 2 or 4) -! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, +! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, ! ! for r< 60 km and 1/r^0.5 for all f beyond 60 km. 10.0 0.0 0.0 0.0 0.0 0.0 -!gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set +!gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set ! r_ref = 1.0 km) ! *** NOTE: these lines are needed even if option 1 or greater is chosen above---and -! there must be nsegs lines following the "nseg" specification, even if the +! there must be nsegs lines following the "nseg" specification, even if the ! geometrical spreading is not used because option 1 has been chosen. 1.0 2 @@ -173,7 +173,7 @@ ! fb is set equal to fa for source 1, even though fb is not used in spect_shape, using weights of 0.5 and 0.5 ! for source 1 will give the same answer as the previously recommended 1.0 0.0 weights. The advantage ! to using weights of 0.5 0.5 is that they are the same as I am now recommending for the Atkinson and colleagues (and perhaps -! all) 2-corner models, for reasons discussed in the spectral shape, source 12 +! all) 2-corner models, for reasons discussed in the spectral shape, source 12 ! section above. This is not what is used by Atkinson and colleagues; they use 0.5 0.0 for the weights ! (Atkinson and Boore (1995, p. 20) and Atkinson and Silva (2000, p. 259)). 0.5 0.5 @@ -230,8 +230,8 @@ 0.0 0.006 0.0 6.0 !low-cut filter parameters: fcut, nslope (=4, 8, 12, etc) 0.0 8 -!high-cut filter parameters: itype_hcfilt (0=no high-cut filter [but the other parameters are -! needed as placeholders], 1=raised half cycle of cosine; 2= quarter cycle of a cosine), +!high-cut filter parameters: itype_hcfilt (0=no high-cut filter [but the other parameters are +! needed as placeholders], 1=raised half cycle of cosine; 2= quarter cycle of a cosine), ! fhc1, fhc2 (low and high frequency limits of filter), eta_hcfilt (power of cosine) 0 25.0 50.0 1.0 ! 2 25.0 50.0 1.0 @@ -239,13 +239,13 @@ ! 1=BJ84;2=LP99; 3=BT Drms/Dex, file 1; 4=BT Drms/Dex, file 2; 5=average of BT file 1 & file 2) 10.0 0.00001 0.001 4 !Names of pars files for Boore-Thompson Drms/Dex oscillator adjustment for RV simulations. -! Note that these adjustments are for a particular rms-to-peak factor. Most recently we use the +! Note that these adjustments are for a particular rms-to-peak factor. Most recently we use the ! Der Kiureghian (1980) (DK) factor, but the RV program tmrs_loop_rv_drvr writes out the results using -! both the DK factor and the earlier default factor from Cartwright and Longuet-Higgins. The pars files +! both the DK factor and the earlier default factor from Cartwright and Longuet-Higgins. The pars files ! are definitely dependent on which rms-to-peak factor was used. I could specify which peak factor -! to use in the RV programs, but for now, I prefer to write out the results using both. +! to use in the RV programs, but for now, I prefer to write out the results using both. ! -!NOTE: If no folder is specified, the program will look for the files in +!NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called). ! !File names are required as placeholders, even if they are not used (e.g., for TD simulations @@ -254,18 +254,16 @@ !Name of pars file 1: ! The file below used the Raoof et al. (BSSA 1999, 888-902) attenuation model for WNA: ! If this file is used for random-vibration simulations, use the output based on the -! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr +! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr ! with "dk80" as part of the column name). See Boore and Thompson (2015, BSSA, 1029--1041) for details. bt15_wna_acr_trms4osc.dk_rms2pk.pars !Name of pars file 2: ! The file below used the Boatwright and Seekins (BSSA 2011, 1769-1782; BS11) attenuation model for ENA: ! If this file is used for random-vibration simulations, use the output based on the -! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr +! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr ! with "dk80" as part of the column name). See Boore and Thompson (2015, BSSA, 1029--1041) for details. bt15_ena_scr_trms4osc.dk_rms2pk.pars !window params: idxwnd(0=box,1=exp), tapr(<1), eps_w, eta_w, f_tb2te, f_te_xtnd - 1 0.05 0.2 0.05 2.12 1.0 + 1 0.05 0.2 0.05 2.12 1.0 !timing stuff: dur_fctr, dt, tshift, seed, nsims, iran_type (0=normal;1=uniform) 1.3 0.001 50.0 123.0 800 0 - - diff --git a/tests/data/test-bt15_wna.gmrv.sum b/tests/data/test-bt15_wna.gmrv.sum index 5108c13..209261c 100644 --- a/tests/data/test-bt15_wna.gmrv.sum +++ b/tests/data/test-bt15_wna.gmrv.sum @@ -1,16 +1,16 @@ - + ***************** SMSIM, Version 6.000 ************************ - - + + output file: test-bt15_wna.gmrv.sum *** Results computed using GM_RV_DRVR *** - + Date: 2018/01/15 Time Start: 17:26:52.588 - - file with parameters: test-bt15_wna.ofr + + file with parameters: test-bt15_wna.ofr Title: - Western North America params + Western North America params rho, beta, prtitn, rtp, fs: 2.72 3.50 0.707 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -52,7 +52,7 @@ mh_f_ff, m1t_f_ff, m2t_f_ff = 6.74 5.74 7.74 c0t_f_ff, c1t_f_ff, c2t_f_ff, c3t_f_ff = 7.497E-01 4.300E-01 -4.875E-02 -5.240E-09 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -103,7 +103,7 @@ 0.000 3.500E-02 0.000E+00 0.00 low-cut filter parameters: fcut, nslope 0.000 8 - high-cut filter parameters: + high-cut filter parameters: itype_hcfilt 0=no high-cut filter (but the other parameters are needed as placeholders) 1=raised half cycle of cosine @@ -116,8 +116,8 @@ WNA Trms4osc coefficients from file bt15_wna_acr_trms4osc.dk_rms2pk.pars ENA Trms4osc coefficients from file bt15_ena_scr_trms4osc.dk_rms2pk.pars fup calculated in driver = 6.282E+01 - - *********** NEW R AND M ********** + + *********** NEW R AND M ********** r, f_ff, rmod, amag, kappa = 2.000E+01 7.191E+00 2.125E+01 6.000E+00 3.500E-02 File with response spectra: test-bt15_wna.m6.00r021.3_rs.r const= 5.307E-24 @@ -224,5 +224,5 @@ 13.000 0.077 1.947E+00 9.412E-01 4.549E-01 0.20 0.9933 25.8 3.0 1.93 4.30 7.704E-01 7.704E-01 3.0 25.8 -10.0 3.0 3.0 -10.0 1.69 -9.99 1.87 -9.99 1.707E+00 -2.067E+01 1.883E+00 -2.067E+01 8.249E-01 -9.990E+00 9.100E-01 -9.990E+00 3.987E-01 -4.828E+00 4.398E-01 -4.828E+00 5.31092E+00 4.25253E+00 8.37670E+00 9.89555E+02 1.000E+00 2.809E+00 4.651E+00 7.459E+00 2.240E+01 1.74275E+00 5.771E-01 1.733E+00 14.000 0.071 1.917E+00 8.603E-01 3.861E-01 0.20 0.9934 26.2 3.0 1.94 4.30 7.855E-01 7.855E-01 3.0 26.2 -10.0 3.0 3.0 -10.0 1.70 -9.99 1.87 -9.99 1.681E+00 -2.226E+01 1.852E+00 -2.226E+01 7.542E-01 -9.990E+00 8.311E-01 -9.990E+00 3.385E-01 -4.484E+00 3.730E-01 -4.484E+00 4.35875E+00 3.41973E+00 7.00612E+00 8.52640E+02 1.000E+00 2.809E+00 4.651E+00 7.459E+00 2.215E+01 1.87681E+00 5.803E-01 1.723E+00 15.000 0.067 1.892E+00 7.926E-01 3.320E-01 0.20 0.9934 26.5 3.0 1.95 4.30 7.980E-01 7.980E-01 3.0 26.5 -10.0 3.0 3.0 -10.0 1.71 -9.99 1.88 -9.99 1.661E+00 -2.385E+01 1.827E+00 -2.385E+01 6.956E-01 -9.990E+00 7.655E-01 -9.990E+00 2.914E-01 -4.185E+00 3.207E-01 -4.185E+00 3.62570E+00 2.80079E+00 5.95667E+00 7.42424E+02 1.000E+00 2.809E+00 4.651E+00 7.459E+00 2.184E+01 2.01087E+00 5.844E-01 1.711E+00 - + Elapsed time (sec): 1.970E-01 diff --git a/tests/data/test-bt15_wna.m6.00rps021.3_fs.col b/tests/data/test-bt15_wna.m6.00rps021.3_fs.col index 974dd4c..d72fc10 100644 --- a/tests/data/test-bt15_wna.m6.00rps021.3_fs.col +++ b/tests/data/test-bt15_wna.m6.00rps021.3_fs.col @@ -1,202 +1,202 @@ Parameter file: test-bt15_wna.ofr - M Rrup F_FF Rps Freq(Hz) Per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas - 6.00 20.00 7.19 21.25 5.000E-02 2.000E+01 2.79749E+00 8.78856E-01 2.76101E-01 -1.2870 - 6.00 20.00 7.19 21.25 5.213E-02 1.918E+01 2.79648E+00 9.15930E-01 2.99994E-01 -1.2040 - 6.00 20.00 7.19 21.25 5.435E-02 1.840E+01 2.79525E+00 9.54493E-01 3.25930E-01 -1.1211 - 6.00 20.00 7.19 21.25 5.666E-02 1.765E+01 2.79379E+00 9.94594E-01 3.54077E-01 -1.0382 - 6.00 20.00 7.19 21.25 5.907E-02 1.693E+01 2.79206E+00 1.03628E+00 3.84619E-01 -0.9555 - 6.00 20.00 7.19 21.25 6.158E-02 1.624E+01 2.79003E+00 1.07960E+00 4.17750E-01 -0.8729 - 6.00 20.00 7.19 21.25 6.421E-02 1.557E+01 2.78767E+00 1.12459E+00 4.53681E-01 -0.7904 - 6.00 20.00 7.19 21.25 6.694E-02 1.494E+01 2.78483E+00 1.17126E+00 4.92618E-01 -0.7080 - 6.00 20.00 7.19 21.25 6.979E-02 1.433E+01 2.78154E+00 1.21967E+00 5.34809E-01 -0.6258 - 6.00 20.00 7.19 21.25 7.276E-02 1.374E+01 2.77781E+00 1.26987E+00 5.80519E-01 -0.5438 - 6.00 20.00 7.19 21.25 7.585E-02 1.318E+01 2.77359E+00 1.32190E+00 6.30025E-01 -0.4620 - 6.00 20.00 7.19 21.25 7.908E-02 1.265E+01 2.76884E+00 1.37580E+00 6.83620E-01 -0.3804 - 6.00 20.00 7.19 21.25 8.245E-02 1.213E+01 2.76350E+00 1.43159E+00 7.41616E-01 -0.2989 - 6.00 20.00 7.19 21.25 8.596E-02 1.163E+01 2.75754E+00 1.48930E+00 8.04346E-01 -0.2177 - 6.00 20.00 7.19 21.25 8.962E-02 1.116E+01 2.75090E+00 1.54894E+00 8.72161E-01 -0.1368 - 6.00 20.00 7.19 21.25 9.343E-02 1.070E+01 2.74351E+00 1.61053E+00 9.45431E-01 -0.0561 - 6.00 20.00 7.19 21.25 9.741E-02 1.027E+01 2.73471E+00 1.67368E+00 1.02432E+00 0.0240 - 6.00 20.00 7.19 21.25 1.016E-01 9.847E+00 2.72461E+00 1.73847E+00 1.10925E+00 0.1037 - 6.00 20.00 7.19 21.25 1.059E-01 9.445E+00 2.71354E+00 1.80510E+00 1.20078E+00 0.1830 - 6.00 20.00 7.19 21.25 1.104E-01 9.060E+00 2.70143E+00 1.87352E+00 1.29934E+00 0.2619 - 6.00 20.00 7.19 21.25 1.151E-01 8.690E+00 2.68821E+00 1.94370E+00 1.40539E+00 0.3403 - 6.00 20.00 7.19 21.25 1.200E-01 8.335E+00 2.67381E+00 2.01557E+00 1.51937E+00 0.4183 - 6.00 20.00 7.19 21.25 1.251E-01 7.995E+00 2.65815E+00 2.08904E+00 1.64178E+00 0.4958 - 6.00 20.00 7.19 21.25 1.304E-01 7.669E+00 2.64116E+00 2.16403E+00 1.77309E+00 0.5727 - 6.00 20.00 7.19 21.25 1.360E-01 7.355E+00 2.62276E+00 2.24041E+00 1.91380E+00 0.6491 - 6.00 20.00 7.19 21.25 1.417E-01 7.055E+00 2.60151E+00 2.31684E+00 2.06332E+00 0.7243 - 6.00 20.00 7.19 21.25 1.478E-01 6.767E+00 2.57791E+00 2.39353E+00 2.22234E+00 0.7986 - 6.00 20.00 7.19 21.25 1.541E-01 6.491E+00 2.55264E+00 2.47093E+00 2.39184E+00 0.8721 - 6.00 20.00 7.19 21.25 1.606E-01 6.226E+00 2.52562E+00 2.54883E+00 2.57225E+00 0.9448 - 6.00 20.00 7.19 21.25 1.675E-01 5.972E+00 2.49682E+00 2.62700E+00 2.76397E+00 1.0167 - 6.00 20.00 7.19 21.25 1.746E-01 5.728E+00 2.46616E+00 2.70518E+00 2.96736E+00 1.0877 - 6.00 20.00 7.19 21.25 1.820E-01 5.494E+00 2.43363E+00 2.78310E+00 3.18276E+00 1.1577 - 6.00 20.00 7.19 21.25 1.898E-01 5.270E+00 2.39918E+00 2.86047E+00 3.41046E+00 1.2268 - 6.00 20.00 7.19 21.25 1.978E-01 5.055E+00 2.36279E+00 2.93698E+00 3.65071E+00 1.2949 - 6.00 20.00 7.19 21.25 2.063E-01 4.848E+00 2.32351E+00 3.01107E+00 3.90210E+00 1.3615 - 6.00 20.00 7.19 21.25 2.150E-01 4.651E+00 2.28195E+00 3.08308E+00 4.16545E+00 1.4268 - 6.00 20.00 7.19 21.25 2.242E-01 4.461E+00 2.23847E+00 3.15305E+00 4.44130E+00 1.4909 - 6.00 20.00 7.19 21.25 2.337E-01 4.279E+00 2.19312E+00 3.22064E+00 4.72957E+00 1.5538 - 6.00 20.00 7.19 21.25 2.437E-01 4.104E+00 2.14595E+00 3.28548E+00 5.03013E+00 1.6154 - 6.00 20.00 7.19 21.25 2.540E-01 3.936E+00 2.09703E+00 3.34723E+00 5.34278E+00 1.6757 - 6.00 20.00 7.19 21.25 2.649E-01 3.776E+00 2.04647E+00 3.40555E+00 5.66721E+00 1.7347 - 6.00 20.00 7.19 21.25 2.761E-01 3.622E+00 1.99438E+00 3.46011E+00 6.00306E+00 1.7923 - 6.00 20.00 7.19 21.25 2.879E-01 3.474E+00 1.94088E+00 3.51060E+00 6.34988E+00 1.8484 - 6.00 20.00 7.19 21.25 3.001E-01 3.332E+00 1.88233E+00 3.54960E+00 6.69367E+00 1.9012 - 6.00 20.00 7.19 21.25 3.129E-01 3.196E+00 1.82145E+00 3.58098E+00 7.04024E+00 1.9516 - 6.00 20.00 7.19 21.25 3.262E-01 3.065E+00 1.75977E+00 3.60696E+00 7.39312E+00 2.0005 - 6.00 20.00 7.19 21.25 3.401E-01 2.940E+00 1.69749E+00 3.62739E+00 7.75141E+00 2.0479 - 6.00 20.00 7.19 21.25 3.546E-01 2.820E+00 1.63482E+00 3.64215E+00 8.11420E+00 2.0936 - 6.00 20.00 7.19 21.25 3.697E-01 2.705E+00 1.57198E+00 3.65120E+00 8.48055E+00 2.1378 - 6.00 20.00 7.19 21.25 3.854E-01 2.595E+00 1.50918E+00 3.65452E+00 8.84951E+00 2.1804 - 6.00 20.00 7.19 21.25 4.018E-01 2.489E+00 1.44663E+00 3.65215E+00 9.22017E+00 2.2214 - 6.00 20.00 7.19 21.25 4.189E-01 2.387E+00 1.38456E+00 3.64419E+00 9.59163E+00 2.2609 - 6.00 20.00 7.19 21.25 4.367E-01 2.290E+00 1.32189E+00 3.62733E+00 9.95358E+00 2.2979 - 6.00 20.00 7.19 21.25 4.553E-01 2.196E+00 1.25978E+00 3.60403E+00 1.03105E+01 2.3332 - 6.00 20.00 7.19 21.25 4.747E-01 2.107E+00 1.19881E+00 3.57555E+00 1.06644E+01 2.3669 - 6.00 20.00 7.19 21.25 4.949E-01 2.021E+00 1.13914E+00 3.54218E+00 1.10145E+01 2.3992 - 6.00 20.00 7.19 21.25 5.160E-01 1.938E+00 1.08092E+00 3.50421E+00 1.13602E+01 2.4301 - 6.00 20.00 7.19 21.25 5.379E-01 1.859E+00 1.02431E+00 3.46199E+00 1.17009E+01 2.4597 - 6.00 20.00 7.19 21.25 5.608E-01 1.783E+00 9.69399E-01 3.41585E+00 1.20364E+01 2.4879 - 6.00 20.00 7.19 21.25 5.847E-01 1.710E+00 9.16302E-01 3.36617E+00 1.23661E+01 2.5150 - 6.00 20.00 7.19 21.25 6.096E-01 1.641E+00 8.65097E-01 3.31331E+00 1.26900E+01 2.5408 - 6.00 20.00 7.19 21.25 6.355E-01 1.574E+00 8.14207E-01 3.25113E+00 1.29817E+01 2.5635 - 6.00 20.00 7.19 21.25 6.626E-01 1.509E+00 7.65018E-01 3.18472E+00 1.32578E+01 2.5846 - 6.00 20.00 7.19 21.25 6.907E-01 1.448E+00 7.18013E-01 3.11625E+00 1.35249E+01 2.6045 - 6.00 20.00 7.19 21.25 7.201E-01 1.389E+00 6.73199E-01 3.04611E+00 1.37831E+01 2.6234 - 6.00 20.00 7.19 21.25 7.508E-01 1.332E+00 6.30568E-01 2.97464E+00 1.40325E+01 2.6414 - 6.00 20.00 7.19 21.25 7.828E-01 1.278E+00 5.90098E-01 2.90220E+00 1.42735E+01 2.6584 - 6.00 20.00 7.19 21.25 8.161E-01 1.225E+00 5.51756E-01 2.82912E+00 1.45062E+01 2.6746 - 6.00 20.00 7.19 21.25 8.508E-01 1.175E+00 5.15497E-01 2.75569E+00 1.47311E+01 2.6900 - 6.00 20.00 7.19 21.25 8.870E-01 1.127E+00 4.81269E-01 2.68221E+00 1.49485E+01 2.7046 - 6.00 20.00 7.19 21.25 9.248E-01 1.081E+00 4.48421E-01 2.60551E+00 1.51391E+01 2.7173 - 6.00 20.00 7.19 21.25 9.641E-01 1.037E+00 4.17405E-01 2.52851E+00 1.53169E+01 2.7290 - 6.00 20.00 7.19 21.25 1.005E+00 9.949E-01 3.88289E-01 2.45224E+00 1.54871E+01 2.7400 - 6.00 20.00 7.19 21.25 1.048E+00 9.543E-01 3.60993E-01 2.37688E+00 1.56501E+01 2.7505 - 6.00 20.00 7.19 21.25 1.093E+00 9.153E-01 3.35438E-01 2.30261E+00 1.58063E+01 2.7604 - 6.00 20.00 7.19 21.25 1.139E+00 8.779E-01 3.11540E-01 2.22958E+00 1.59564E+01 2.7699 - 6.00 20.00 7.19 21.25 1.187E+00 8.421E-01 2.89218E-01 2.15792E+00 1.61008E+01 2.7789 - 6.00 20.00 7.19 21.25 1.238E+00 8.077E-01 2.68389E-01 2.08774E+00 1.62401E+01 2.7875 - 6.00 20.00 7.19 21.25 1.291E+00 7.748E-01 2.48972E-01 2.01913E+00 1.63748E+01 2.7957 - 6.00 20.00 7.19 21.25 1.346E+00 7.431E-01 2.30420E-01 1.94820E+00 1.64721E+01 2.8017 - 6.00 20.00 7.19 21.25 1.403E+00 7.128E-01 2.13071E-01 1.87818E+00 1.65559E+01 2.8067 - 6.00 20.00 7.19 21.25 1.463E+00 6.837E-01 1.96959E-01 1.81005E+00 1.66344E+01 2.8115 - 6.00 20.00 7.19 21.25 1.525E+00 6.558E-01 1.82008E-01 1.74384E+00 1.67080E+01 2.8159 - 6.00 20.00 7.19 21.25 1.590E+00 6.290E-01 1.68145E-01 1.67958E+00 1.67771E+01 2.8200 - 6.00 20.00 7.19 21.25 1.657E+00 6.033E-01 1.55297E-01 1.61727E+00 1.68422E+01 2.8239 - 6.00 20.00 7.19 21.25 1.728E+00 5.787E-01 1.43398E-01 1.55691E+00 1.69037E+01 2.8275 - 6.00 20.00 7.19 21.25 1.802E+00 5.551E-01 1.32384E-01 1.49850E+00 1.69619E+01 2.8310 - 6.00 20.00 7.19 21.25 1.878E+00 5.324E-01 1.22194E-01 1.44202E+00 1.70173E+01 2.8342 - 6.00 20.00 7.19 21.25 1.958E+00 5.107E-01 1.12468E-01 1.38372E+00 1.70243E+01 2.8346 - 6.00 20.00 7.19 21.25 2.041E+00 4.898E-01 1.03429E-01 1.32668E+00 1.70171E+01 2.8342 - 6.00 20.00 7.19 21.25 2.128E+00 4.698E-01 9.50926E-02 1.27165E+00 1.70056E+01 2.8335 - 6.00 20.00 7.19 21.25 2.219E+00 4.507E-01 8.74066E-02 1.21862E+00 1.69899E+01 2.8326 - 6.00 20.00 7.19 21.25 2.313E+00 4.323E-01 8.03234E-02 1.16752E+00 1.69703E+01 2.8315 - 6.00 20.00 7.19 21.25 2.412E+00 4.146E-01 7.37982E-02 1.11833E+00 1.69471E+01 2.8301 - 6.00 20.00 7.19 21.25 2.514E+00 3.977E-01 6.77890E-02 1.07099E+00 1.69204E+01 2.8285 - 6.00 20.00 7.19 21.25 2.621E+00 3.815E-01 6.22569E-02 1.02545E+00 1.68904E+01 2.8267 - 6.00 20.00 7.19 21.25 2.733E+00 3.659E-01 5.71656E-02 9.81661E-01 1.68573E+01 2.8248 - 6.00 20.00 7.19 21.25 2.849E+00 3.510E-01 5.22556E-02 9.35536E-01 1.67490E+01 2.8183 - 6.00 20.00 7.19 21.25 2.971E+00 3.366E-01 4.77113E-02 8.90532E-01 1.66218E+01 2.8107 - 6.00 20.00 7.19 21.25 3.097E+00 3.229E-01 4.35452E-02 8.47364E-01 1.64892E+01 2.8027 - 6.00 20.00 7.19 21.25 3.229E+00 3.097E-01 3.97274E-02 8.05972E-01 1.63512E+01 2.7943 - 6.00 20.00 7.19 21.25 3.366E+00 2.971E-01 3.62299E-02 7.66299E-01 1.62080E+01 2.7855 - 6.00 20.00 7.19 21.25 3.510E+00 2.849E-01 3.30271E-02 7.28287E-01 1.60596E+01 2.7763 - 6.00 20.00 7.19 21.25 3.659E+00 2.733E-01 3.00952E-02 6.91878E-01 1.59061E+01 2.7667 - 6.00 20.00 7.19 21.25 3.815E+00 2.621E-01 2.74122E-02 6.57019E-01 1.57475E+01 2.7567 - 6.00 20.00 7.19 21.25 3.977E+00 2.514E-01 2.49580E-02 6.23653E-01 1.55840E+01 2.7462 - 6.00 20.00 7.19 21.25 4.146E+00 2.412E-01 2.26317E-02 5.89594E-01 1.53599E+01 2.7318 - 6.00 20.00 7.19 21.25 4.323E+00 2.313E-01 2.04981E-02 5.56736E-01 1.51212E+01 2.7161 - 6.00 20.00 7.19 21.25 4.507E+00 2.219E-01 1.85538E-02 5.25375E-01 1.48767E+01 2.6998 - 6.00 20.00 7.19 21.25 4.698E+00 2.128E-01 1.67830E-02 4.95457E-01 1.46266E+01 2.6828 - 6.00 20.00 7.19 21.25 4.898E+00 2.041E-01 1.51709E-02 4.66928E-01 1.43710E+01 2.6652 - 6.00 20.00 7.19 21.25 5.107E+00 1.958E-01 1.37042E-02 4.39736E-01 1.41102E+01 2.6469 - 6.00 20.00 7.19 21.25 5.324E+00 1.878E-01 1.23704E-02 4.13832E-01 1.38441E+01 2.6279 - 6.00 20.00 7.19 21.25 5.551E+00 1.802E-01 1.11582E-02 3.89165E-01 1.35729E+01 2.6081 - 6.00 20.00 7.19 21.25 5.787E+00 1.728E-01 1.00570E-02 3.65688E-01 1.32970E+01 2.5875 - 6.00 20.00 7.19 21.25 6.033E+00 1.657E-01 9.01684E-03 3.41819E-01 1.29580E+01 2.5617 - 6.00 20.00 7.19 21.25 6.290E+00 1.590E-01 8.07087E-03 3.18980E-01 1.26069E+01 2.5342 - 6.00 20.00 7.19 21.25 6.558E+00 1.525E-01 7.21639E-03 2.97347E-01 1.22520E+01 2.5057 - 6.00 20.00 7.19 21.25 6.837E+00 1.463E-01 6.44517E-03 2.76872E-01 1.18939E+01 2.4760 - 6.00 20.00 7.19 21.25 7.128E+00 1.403E-01 5.74972E-03 2.57509E-01 1.15329E+01 2.4452 - 6.00 20.00 7.19 21.25 7.431E+00 1.346E-01 5.12315E-03 2.39212E-01 1.11694E+01 2.4132 - 6.00 20.00 7.19 21.25 7.748E+00 1.291E-01 4.55917E-03 2.21939E-01 1.08039E+01 2.3799 - 6.00 20.00 7.19 21.25 8.077E+00 1.238E-01 4.05203E-03 2.05646E-01 1.04368E+01 2.3453 - 6.00 20.00 7.19 21.25 8.421E+00 1.187E-01 3.59645E-03 1.90293E-01 1.00687E+01 2.3094 - 6.00 20.00 7.19 21.25 8.780E+00 1.139E-01 3.17850E-03 1.75337E-01 9.67213E+00 2.2692 - 6.00 20.00 7.19 21.25 9.153E+00 1.093E-01 2.80372E-03 1.61244E-01 9.27331E+00 2.2271 - 6.00 20.00 7.19 21.25 9.543E+00 1.048E-01 2.46904E-03 1.48040E-01 8.87627E+00 2.1834 - 6.00 20.00 7.19 21.25 9.949E+00 1.005E-01 2.17059E-03 1.35684E-01 8.48166E+00 2.1379 - 6.00 20.00 7.19 21.25 1.037E+01 9.641E-02 1.90480E-03 1.24138E-01 8.09014E+00 2.0906 - 6.00 20.00 7.19 21.25 1.081E+01 9.248E-02 1.66847E-03 1.13363E-01 7.70239E+00 2.0415 - 6.00 20.00 7.19 21.25 1.127E+01 8.870E-02 1.45864E-03 1.03324E-01 7.31909E+00 1.9905 - 6.00 20.00 7.19 21.25 1.175E+01 8.508E-02 1.27264E-03 9.39857E-02 6.94092E+00 1.9374 - 6.00 20.00 7.19 21.25 1.225E+01 8.161E-02 1.10805E-03 8.53129E-02 6.56857E+00 1.8823 - 6.00 20.00 7.19 21.25 1.278E+01 7.828E-02 9.59880E-04 7.70502E-02 6.18487E+00 1.8221 - 6.00 20.00 7.19 21.25 1.332E+01 7.508E-02 8.29299E-04 6.94015E-02 5.80800E+00 1.7592 - 6.00 20.00 7.19 21.25 1.389E+01 7.201E-02 7.14702E-04 6.23568E-02 5.44054E+00 1.6939 - 6.00 20.00 7.19 21.25 1.448E+01 6.907E-02 6.14346E-04 5.58821E-02 5.08313E+00 1.6259 - 6.00 20.00 7.19 21.25 1.509E+01 6.626E-02 5.26660E-04 4.99448E-02 4.73642E+00 1.5553 - 6.00 20.00 7.19 21.25 1.574E+01 6.355E-02 4.50225E-04 4.45133E-02 4.40100E+00 1.4818 - 6.00 20.00 7.19 21.25 1.641E+01 6.096E-02 3.83760E-04 3.95568E-02 4.07740E+00 1.4055 - 6.00 20.00 7.19 21.25 1.710E+01 5.847E-02 3.26115E-04 3.50456E-02 3.76614E+00 1.3260 - 6.00 20.00 7.19 21.25 1.783E+01 5.608E-02 2.76254E-04 3.09508E-02 3.46765E+00 1.2435 - 6.00 20.00 7.19 21.25 1.859E+01 5.379E-02 2.32641E-04 2.71738E-02 3.17406E+00 1.1550 - 6.00 20.00 7.19 21.25 1.938E+01 5.160E-02 1.95179E-04 2.37683E-02 2.89443E+00 1.0628 - 6.00 20.00 7.19 21.25 2.021E+01 4.949E-02 1.63145E-04 2.07129E-02 2.62970E+00 0.9669 - 6.00 20.00 7.19 21.25 2.107E+01 4.747E-02 1.35846E-04 1.79810E-02 2.38002E+00 0.8671 - 6.00 20.00 7.19 21.25 2.196E+01 4.553E-02 1.12664E-04 1.55472E-02 2.14545E+00 0.7634 - 6.00 20.00 7.19 21.25 2.290E+01 4.367E-02 9.30491E-05 1.33869E-02 1.92597E+00 0.6554 - 6.00 20.00 7.19 21.25 2.387E+01 4.189E-02 7.65170E-05 1.14770E-02 1.72145E+00 0.5432 - 6.00 20.00 7.19 21.25 2.489E+01 4.018E-02 6.26386E-05 9.79517E-03 1.53173E+00 0.4264 - 6.00 20.00 7.19 21.25 2.595E+01 3.854E-02 5.10371E-05 8.32063E-03 1.35652E+00 0.3049 - 6.00 20.00 7.19 21.25 2.705E+01 3.697E-02 4.12773E-05 7.01588E-03 1.19249E+00 0.1760 - 6.00 20.00 7.19 21.25 2.820E+01 3.546E-02 3.32050E-05 5.88403E-03 1.04267E+00 0.0418 - 6.00 20.00 7.19 21.25 2.940E+01 3.401E-02 2.65668E-05 4.90809E-03 9.06746E-01 -0.0979 - 6.00 20.00 7.19 21.25 3.065E+01 3.262E-02 2.11361E-05 4.07097E-03 7.84100E-01 -0.2432 - 6.00 20.00 7.19 21.25 3.196E+01 3.129E-02 1.67168E-05 3.35682E-03 6.74067E-01 -0.3944 - 6.00 20.00 7.19 21.25 3.332E+01 3.001E-02 1.31409E-05 2.75106E-03 5.75938E-01 -0.5518 - 6.00 20.00 7.19 21.25 3.474E+01 2.879E-02 1.02642E-05 2.24028E-03 4.88966E-01 -0.7155 - 6.00 20.00 7.19 21.25 3.622E+01 2.761E-02 7.96421E-06 1.81226E-03 4.12379E-01 -0.8858 - 6.00 20.00 7.19 21.25 3.776E+01 2.649E-02 6.13702E-06 1.45591E-03 3.45392E-01 -1.0631 - 6.00 20.00 7.19 21.25 3.936E+01 2.540E-02 4.67954E-06 1.15740E-03 2.86260E-01 -1.2509 - 6.00 20.00 7.19 21.25 4.104E+01 2.437E-02 3.54046E-06 9.12933E-04 2.35406E-01 -1.4464 - 6.00 20.00 7.19 21.25 4.279E+01 2.337E-02 2.65740E-06 7.14394E-04 1.92052E-01 -1.6500 - 6.00 20.00 7.19 21.25 4.461E+01 2.242E-02 1.97811E-06 5.54411E-04 1.55386E-01 -1.8618 - 6.00 20.00 7.19 21.25 4.651E+01 2.150E-02 1.45980E-06 4.26554E-04 1.24640E-01 -2.0823 - 6.00 20.00 7.19 21.25 4.848E+01 2.063E-02 1.06764E-06 3.25242E-04 9.90808E-02 -2.3118 - 6.00 20.00 7.19 21.25 5.055E+01 1.978E-02 7.73545E-07 2.45679E-04 7.80283E-02 -2.5507 - 6.00 20.00 7.19 21.25 5.270E+01 1.898E-02 5.55018E-07 1.83777E-04 6.08521E-02 -2.7993 - 6.00 20.00 7.19 21.25 5.494E+01 1.820E-02 3.94194E-07 1.36080E-04 4.69765E-02 -3.0581 - 6.00 20.00 7.19 21.25 5.728E+01 1.746E-02 2.76188E-07 9.94010E-05 3.57747E-02 -3.3305 - 6.00 20.00 7.19 21.25 5.972E+01 1.675E-02 1.91341E-07 7.17950E-05 2.69390E-02 -3.6142 - 6.00 20.00 7.19 21.25 6.226E+01 1.606E-02 1.31026E-07 5.12561E-05 2.00509E-02 -3.9095 - 6.00 20.00 7.19 21.25 6.491E+01 1.541E-02 8.86440E-08 3.61524E-05 1.47443E-02 -4.2169 - 6.00 20.00 7.19 21.25 6.767E+01 1.478E-02 5.92183E-08 2.51794E-05 1.07062E-02 -4.5369 - 6.00 20.00 7.19 21.25 7.055E+01 1.417E-02 3.90439E-08 1.73078E-05 7.67243E-03 -4.8701 - 6.00 20.00 7.19 21.25 7.355E+01 1.360E-02 2.53924E-08 1.17353E-05 5.42356E-03 -5.2170 - 6.00 20.00 7.19 21.25 7.669E+01 1.304E-02 1.62800E-08 7.84415E-06 3.77953E-03 -5.5782 - 6.00 20.00 7.19 21.25 7.995E+01 1.251E-02 1.02838E-08 5.16588E-06 2.59500E-03 -5.9542 - 6.00 20.00 7.19 21.25 8.335E+01 1.200E-02 6.33362E-09 3.31699E-06 1.73715E-03 -6.3555 - 6.00 20.00 7.19 21.25 8.690E+01 1.151E-02 3.83614E-09 2.09454E-06 1.14362E-03 -6.7736 - 6.00 20.00 7.19 21.25 9.060E+01 1.104E-02 2.28375E-09 1.30000E-06 7.40011E-04 -7.2088 - 6.00 20.00 7.19 21.25 9.445E+01 1.059E-02 1.33535E-09 7.92485E-07 4.70313E-04 -7.6621 - 6.00 20.00 7.19 21.25 9.847E+01 1.016E-02 7.66327E-10 4.74144E-07 2.93364E-04 -8.1341 - 6.00 20.00 7.19 21.25 1.027E+02 9.741E-03 4.31278E-10 2.78198E-07 1.79453E-04 -8.6256 - 6.00 20.00 7.19 21.25 1.070E+02 9.343E-03 2.37835E-10 1.59946E-07 1.07565E-04 -9.1374 - 6.00 20.00 7.19 21.25 1.116E+02 8.962E-03 1.28410E-10 9.00320E-08 6.31242E-05 -9.6704 - 6.00 20.00 7.19 21.25 1.163E+02 8.596E-03 6.78170E-11 4.95722E-08 3.62358E-05 -10.2255 - 6.00 20.00 7.19 21.25 1.213E+02 8.245E-03 3.50022E-11 2.66744E-08 2.03281E-05 -10.8035 - 6.00 20.00 7.19 21.25 1.265E+02 7.908E-03 1.76382E-11 1.40138E-08 1.11341E-05 -11.4055 - 6.00 20.00 7.19 21.25 1.318E+02 7.585E-03 8.66907E-12 7.18082E-09 5.94807E-06 -12.0324 - 6.00 20.00 7.19 21.25 1.374E+02 7.276E-03 4.15147E-12 3.58512E-09 3.09604E-06 -12.6854 - 6.00 20.00 7.19 21.25 1.433E+02 6.979E-03 1.93492E-12 1.74207E-09 1.56845E-06 -13.3654 - 6.00 20.00 7.19 21.25 1.494E+02 6.694E-03 8.76725E-13 8.22939E-10 7.72453E-07 -14.0737 - 6.00 20.00 7.19 21.25 1.557E+02 6.421E-03 3.85740E-13 3.77485E-10 3.69407E-07 -14.8114 - 6.00 20.00 7.19 21.25 1.624E+02 6.158E-03 1.64593E-13 1.67926E-10 1.71326E-07 -15.5797 - 6.00 20.00 7.19 21.25 1.693E+02 5.907E-03 6.80234E-14 7.23544E-11 7.69612E-08 -16.3800 - 6.00 20.00 7.19 21.25 1.765E+02 5.666E-03 2.71932E-14 3.01555E-11 3.34406E-08 -17.2135 - 6.00 20.00 7.19 21.25 1.840E+02 5.435E-03 1.05002E-14 1.21396E-11 1.40350E-08 -18.0817 - 6.00 20.00 7.19 21.25 1.918E+02 5.213E-03 3.91063E-15 4.71363E-12 5.68152E-09 -18.9860 - 6.00 20.00 7.19 21.25 2.000E+02 5.000E-03 1.40262E-15 1.76259E-12 2.21493E-09 -19.9280 + M Rrup F_FF Rps Freq(Hz) Per(s) fds:test-bt1 fvs:test-bt1 fas:test-bt1 ln_fas + 6.00 20.00 7.19 21.25 5.000E-02 2.000E+01 2.79749E+00 8.78856E-01 2.76101E-01 -1.2870 + 6.00 20.00 7.19 21.25 5.213E-02 1.918E+01 2.79648E+00 9.15930E-01 2.99994E-01 -1.2040 + 6.00 20.00 7.19 21.25 5.435E-02 1.840E+01 2.79525E+00 9.54493E-01 3.25930E-01 -1.1211 + 6.00 20.00 7.19 21.25 5.666E-02 1.765E+01 2.79379E+00 9.94594E-01 3.54077E-01 -1.0382 + 6.00 20.00 7.19 21.25 5.907E-02 1.693E+01 2.79206E+00 1.03628E+00 3.84619E-01 -0.9555 + 6.00 20.00 7.19 21.25 6.158E-02 1.624E+01 2.79003E+00 1.07960E+00 4.17750E-01 -0.8729 + 6.00 20.00 7.19 21.25 6.421E-02 1.557E+01 2.78767E+00 1.12459E+00 4.53681E-01 -0.7904 + 6.00 20.00 7.19 21.25 6.694E-02 1.494E+01 2.78483E+00 1.17126E+00 4.92618E-01 -0.7080 + 6.00 20.00 7.19 21.25 6.979E-02 1.433E+01 2.78154E+00 1.21967E+00 5.34809E-01 -0.6258 + 6.00 20.00 7.19 21.25 7.276E-02 1.374E+01 2.77781E+00 1.26987E+00 5.80519E-01 -0.5438 + 6.00 20.00 7.19 21.25 7.585E-02 1.318E+01 2.77359E+00 1.32190E+00 6.30025E-01 -0.4620 + 6.00 20.00 7.19 21.25 7.908E-02 1.265E+01 2.76884E+00 1.37580E+00 6.83620E-01 -0.3804 + 6.00 20.00 7.19 21.25 8.245E-02 1.213E+01 2.76350E+00 1.43159E+00 7.41616E-01 -0.2989 + 6.00 20.00 7.19 21.25 8.596E-02 1.163E+01 2.75754E+00 1.48930E+00 8.04346E-01 -0.2177 + 6.00 20.00 7.19 21.25 8.962E-02 1.116E+01 2.75090E+00 1.54894E+00 8.72161E-01 -0.1368 + 6.00 20.00 7.19 21.25 9.343E-02 1.070E+01 2.74351E+00 1.61053E+00 9.45431E-01 -0.0561 + 6.00 20.00 7.19 21.25 9.741E-02 1.027E+01 2.73471E+00 1.67368E+00 1.02432E+00 0.0240 + 6.00 20.00 7.19 21.25 1.016E-01 9.847E+00 2.72461E+00 1.73847E+00 1.10925E+00 0.1037 + 6.00 20.00 7.19 21.25 1.059E-01 9.445E+00 2.71354E+00 1.80510E+00 1.20078E+00 0.1830 + 6.00 20.00 7.19 21.25 1.104E-01 9.060E+00 2.70143E+00 1.87352E+00 1.29934E+00 0.2619 + 6.00 20.00 7.19 21.25 1.151E-01 8.690E+00 2.68821E+00 1.94370E+00 1.40539E+00 0.3403 + 6.00 20.00 7.19 21.25 1.200E-01 8.335E+00 2.67381E+00 2.01557E+00 1.51937E+00 0.4183 + 6.00 20.00 7.19 21.25 1.251E-01 7.995E+00 2.65815E+00 2.08904E+00 1.64178E+00 0.4958 + 6.00 20.00 7.19 21.25 1.304E-01 7.669E+00 2.64116E+00 2.16403E+00 1.77309E+00 0.5727 + 6.00 20.00 7.19 21.25 1.360E-01 7.355E+00 2.62276E+00 2.24041E+00 1.91380E+00 0.6491 + 6.00 20.00 7.19 21.25 1.417E-01 7.055E+00 2.60151E+00 2.31684E+00 2.06332E+00 0.7243 + 6.00 20.00 7.19 21.25 1.478E-01 6.767E+00 2.57791E+00 2.39353E+00 2.22234E+00 0.7986 + 6.00 20.00 7.19 21.25 1.541E-01 6.491E+00 2.55264E+00 2.47093E+00 2.39184E+00 0.8721 + 6.00 20.00 7.19 21.25 1.606E-01 6.226E+00 2.52562E+00 2.54883E+00 2.57225E+00 0.9448 + 6.00 20.00 7.19 21.25 1.675E-01 5.972E+00 2.49682E+00 2.62700E+00 2.76397E+00 1.0167 + 6.00 20.00 7.19 21.25 1.746E-01 5.728E+00 2.46616E+00 2.70518E+00 2.96736E+00 1.0877 + 6.00 20.00 7.19 21.25 1.820E-01 5.494E+00 2.43363E+00 2.78310E+00 3.18276E+00 1.1577 + 6.00 20.00 7.19 21.25 1.898E-01 5.270E+00 2.39918E+00 2.86047E+00 3.41046E+00 1.2268 + 6.00 20.00 7.19 21.25 1.978E-01 5.055E+00 2.36279E+00 2.93698E+00 3.65071E+00 1.2949 + 6.00 20.00 7.19 21.25 2.063E-01 4.848E+00 2.32351E+00 3.01107E+00 3.90210E+00 1.3615 + 6.00 20.00 7.19 21.25 2.150E-01 4.651E+00 2.28195E+00 3.08308E+00 4.16545E+00 1.4268 + 6.00 20.00 7.19 21.25 2.242E-01 4.461E+00 2.23847E+00 3.15305E+00 4.44130E+00 1.4909 + 6.00 20.00 7.19 21.25 2.337E-01 4.279E+00 2.19312E+00 3.22064E+00 4.72957E+00 1.5538 + 6.00 20.00 7.19 21.25 2.437E-01 4.104E+00 2.14595E+00 3.28548E+00 5.03013E+00 1.6154 + 6.00 20.00 7.19 21.25 2.540E-01 3.936E+00 2.09703E+00 3.34723E+00 5.34278E+00 1.6757 + 6.00 20.00 7.19 21.25 2.649E-01 3.776E+00 2.04647E+00 3.40555E+00 5.66721E+00 1.7347 + 6.00 20.00 7.19 21.25 2.761E-01 3.622E+00 1.99438E+00 3.46011E+00 6.00306E+00 1.7923 + 6.00 20.00 7.19 21.25 2.879E-01 3.474E+00 1.94088E+00 3.51060E+00 6.34988E+00 1.8484 + 6.00 20.00 7.19 21.25 3.001E-01 3.332E+00 1.88233E+00 3.54960E+00 6.69367E+00 1.9012 + 6.00 20.00 7.19 21.25 3.129E-01 3.196E+00 1.82145E+00 3.58098E+00 7.04024E+00 1.9516 + 6.00 20.00 7.19 21.25 3.262E-01 3.065E+00 1.75977E+00 3.60696E+00 7.39312E+00 2.0005 + 6.00 20.00 7.19 21.25 3.401E-01 2.940E+00 1.69749E+00 3.62739E+00 7.75141E+00 2.0479 + 6.00 20.00 7.19 21.25 3.546E-01 2.820E+00 1.63482E+00 3.64215E+00 8.11420E+00 2.0936 + 6.00 20.00 7.19 21.25 3.697E-01 2.705E+00 1.57198E+00 3.65120E+00 8.48055E+00 2.1378 + 6.00 20.00 7.19 21.25 3.854E-01 2.595E+00 1.50918E+00 3.65452E+00 8.84951E+00 2.1804 + 6.00 20.00 7.19 21.25 4.018E-01 2.489E+00 1.44663E+00 3.65215E+00 9.22017E+00 2.2214 + 6.00 20.00 7.19 21.25 4.189E-01 2.387E+00 1.38456E+00 3.64419E+00 9.59163E+00 2.2609 + 6.00 20.00 7.19 21.25 4.367E-01 2.290E+00 1.32189E+00 3.62733E+00 9.95358E+00 2.2979 + 6.00 20.00 7.19 21.25 4.553E-01 2.196E+00 1.25978E+00 3.60403E+00 1.03105E+01 2.3332 + 6.00 20.00 7.19 21.25 4.747E-01 2.107E+00 1.19881E+00 3.57555E+00 1.06644E+01 2.3669 + 6.00 20.00 7.19 21.25 4.949E-01 2.021E+00 1.13914E+00 3.54218E+00 1.10145E+01 2.3992 + 6.00 20.00 7.19 21.25 5.160E-01 1.938E+00 1.08092E+00 3.50421E+00 1.13602E+01 2.4301 + 6.00 20.00 7.19 21.25 5.379E-01 1.859E+00 1.02431E+00 3.46199E+00 1.17009E+01 2.4597 + 6.00 20.00 7.19 21.25 5.608E-01 1.783E+00 9.69399E-01 3.41585E+00 1.20364E+01 2.4879 + 6.00 20.00 7.19 21.25 5.847E-01 1.710E+00 9.16302E-01 3.36617E+00 1.23661E+01 2.5150 + 6.00 20.00 7.19 21.25 6.096E-01 1.641E+00 8.65097E-01 3.31331E+00 1.26900E+01 2.5408 + 6.00 20.00 7.19 21.25 6.355E-01 1.574E+00 8.14207E-01 3.25113E+00 1.29817E+01 2.5635 + 6.00 20.00 7.19 21.25 6.626E-01 1.509E+00 7.65018E-01 3.18472E+00 1.32578E+01 2.5846 + 6.00 20.00 7.19 21.25 6.907E-01 1.448E+00 7.18013E-01 3.11625E+00 1.35249E+01 2.6045 + 6.00 20.00 7.19 21.25 7.201E-01 1.389E+00 6.73199E-01 3.04611E+00 1.37831E+01 2.6234 + 6.00 20.00 7.19 21.25 7.508E-01 1.332E+00 6.30568E-01 2.97464E+00 1.40325E+01 2.6414 + 6.00 20.00 7.19 21.25 7.828E-01 1.278E+00 5.90098E-01 2.90220E+00 1.42735E+01 2.6584 + 6.00 20.00 7.19 21.25 8.161E-01 1.225E+00 5.51756E-01 2.82912E+00 1.45062E+01 2.6746 + 6.00 20.00 7.19 21.25 8.508E-01 1.175E+00 5.15497E-01 2.75569E+00 1.47311E+01 2.6900 + 6.00 20.00 7.19 21.25 8.870E-01 1.127E+00 4.81269E-01 2.68221E+00 1.49485E+01 2.7046 + 6.00 20.00 7.19 21.25 9.248E-01 1.081E+00 4.48421E-01 2.60551E+00 1.51391E+01 2.7173 + 6.00 20.00 7.19 21.25 9.641E-01 1.037E+00 4.17405E-01 2.52851E+00 1.53169E+01 2.7290 + 6.00 20.00 7.19 21.25 1.005E+00 9.949E-01 3.88289E-01 2.45224E+00 1.54871E+01 2.7400 + 6.00 20.00 7.19 21.25 1.048E+00 9.543E-01 3.60993E-01 2.37688E+00 1.56501E+01 2.7505 + 6.00 20.00 7.19 21.25 1.093E+00 9.153E-01 3.35438E-01 2.30261E+00 1.58063E+01 2.7604 + 6.00 20.00 7.19 21.25 1.139E+00 8.779E-01 3.11540E-01 2.22958E+00 1.59564E+01 2.7699 + 6.00 20.00 7.19 21.25 1.187E+00 8.421E-01 2.89218E-01 2.15792E+00 1.61008E+01 2.7789 + 6.00 20.00 7.19 21.25 1.238E+00 8.077E-01 2.68389E-01 2.08774E+00 1.62401E+01 2.7875 + 6.00 20.00 7.19 21.25 1.291E+00 7.748E-01 2.48972E-01 2.01913E+00 1.63748E+01 2.7957 + 6.00 20.00 7.19 21.25 1.346E+00 7.431E-01 2.30420E-01 1.94820E+00 1.64721E+01 2.8017 + 6.00 20.00 7.19 21.25 1.403E+00 7.128E-01 2.13071E-01 1.87818E+00 1.65559E+01 2.8067 + 6.00 20.00 7.19 21.25 1.463E+00 6.837E-01 1.96959E-01 1.81005E+00 1.66344E+01 2.8115 + 6.00 20.00 7.19 21.25 1.525E+00 6.558E-01 1.82008E-01 1.74384E+00 1.67080E+01 2.8159 + 6.00 20.00 7.19 21.25 1.590E+00 6.290E-01 1.68145E-01 1.67958E+00 1.67771E+01 2.8200 + 6.00 20.00 7.19 21.25 1.657E+00 6.033E-01 1.55297E-01 1.61727E+00 1.68422E+01 2.8239 + 6.00 20.00 7.19 21.25 1.728E+00 5.787E-01 1.43398E-01 1.55691E+00 1.69037E+01 2.8275 + 6.00 20.00 7.19 21.25 1.802E+00 5.551E-01 1.32384E-01 1.49850E+00 1.69619E+01 2.8310 + 6.00 20.00 7.19 21.25 1.878E+00 5.324E-01 1.22194E-01 1.44202E+00 1.70173E+01 2.8342 + 6.00 20.00 7.19 21.25 1.958E+00 5.107E-01 1.12468E-01 1.38372E+00 1.70243E+01 2.8346 + 6.00 20.00 7.19 21.25 2.041E+00 4.898E-01 1.03429E-01 1.32668E+00 1.70171E+01 2.8342 + 6.00 20.00 7.19 21.25 2.128E+00 4.698E-01 9.50926E-02 1.27165E+00 1.70056E+01 2.8335 + 6.00 20.00 7.19 21.25 2.219E+00 4.507E-01 8.74066E-02 1.21862E+00 1.69899E+01 2.8326 + 6.00 20.00 7.19 21.25 2.313E+00 4.323E-01 8.03234E-02 1.16752E+00 1.69703E+01 2.8315 + 6.00 20.00 7.19 21.25 2.412E+00 4.146E-01 7.37982E-02 1.11833E+00 1.69471E+01 2.8301 + 6.00 20.00 7.19 21.25 2.514E+00 3.977E-01 6.77890E-02 1.07099E+00 1.69204E+01 2.8285 + 6.00 20.00 7.19 21.25 2.621E+00 3.815E-01 6.22569E-02 1.02545E+00 1.68904E+01 2.8267 + 6.00 20.00 7.19 21.25 2.733E+00 3.659E-01 5.71656E-02 9.81661E-01 1.68573E+01 2.8248 + 6.00 20.00 7.19 21.25 2.849E+00 3.510E-01 5.22556E-02 9.35536E-01 1.67490E+01 2.8183 + 6.00 20.00 7.19 21.25 2.971E+00 3.366E-01 4.77113E-02 8.90532E-01 1.66218E+01 2.8107 + 6.00 20.00 7.19 21.25 3.097E+00 3.229E-01 4.35452E-02 8.47364E-01 1.64892E+01 2.8027 + 6.00 20.00 7.19 21.25 3.229E+00 3.097E-01 3.97274E-02 8.05972E-01 1.63512E+01 2.7943 + 6.00 20.00 7.19 21.25 3.366E+00 2.971E-01 3.62299E-02 7.66299E-01 1.62080E+01 2.7855 + 6.00 20.00 7.19 21.25 3.510E+00 2.849E-01 3.30271E-02 7.28287E-01 1.60596E+01 2.7763 + 6.00 20.00 7.19 21.25 3.659E+00 2.733E-01 3.00952E-02 6.91878E-01 1.59061E+01 2.7667 + 6.00 20.00 7.19 21.25 3.815E+00 2.621E-01 2.74122E-02 6.57019E-01 1.57475E+01 2.7567 + 6.00 20.00 7.19 21.25 3.977E+00 2.514E-01 2.49580E-02 6.23653E-01 1.55840E+01 2.7462 + 6.00 20.00 7.19 21.25 4.146E+00 2.412E-01 2.26317E-02 5.89594E-01 1.53599E+01 2.7318 + 6.00 20.00 7.19 21.25 4.323E+00 2.313E-01 2.04981E-02 5.56736E-01 1.51212E+01 2.7161 + 6.00 20.00 7.19 21.25 4.507E+00 2.219E-01 1.85538E-02 5.25375E-01 1.48767E+01 2.6998 + 6.00 20.00 7.19 21.25 4.698E+00 2.128E-01 1.67830E-02 4.95457E-01 1.46266E+01 2.6828 + 6.00 20.00 7.19 21.25 4.898E+00 2.041E-01 1.51709E-02 4.66928E-01 1.43710E+01 2.6652 + 6.00 20.00 7.19 21.25 5.107E+00 1.958E-01 1.37042E-02 4.39736E-01 1.41102E+01 2.6469 + 6.00 20.00 7.19 21.25 5.324E+00 1.878E-01 1.23704E-02 4.13832E-01 1.38441E+01 2.6279 + 6.00 20.00 7.19 21.25 5.551E+00 1.802E-01 1.11582E-02 3.89165E-01 1.35729E+01 2.6081 + 6.00 20.00 7.19 21.25 5.787E+00 1.728E-01 1.00570E-02 3.65688E-01 1.32970E+01 2.5875 + 6.00 20.00 7.19 21.25 6.033E+00 1.657E-01 9.01684E-03 3.41819E-01 1.29580E+01 2.5617 + 6.00 20.00 7.19 21.25 6.290E+00 1.590E-01 8.07087E-03 3.18980E-01 1.26069E+01 2.5342 + 6.00 20.00 7.19 21.25 6.558E+00 1.525E-01 7.21639E-03 2.97347E-01 1.22520E+01 2.5057 + 6.00 20.00 7.19 21.25 6.837E+00 1.463E-01 6.44517E-03 2.76872E-01 1.18939E+01 2.4760 + 6.00 20.00 7.19 21.25 7.128E+00 1.403E-01 5.74972E-03 2.57509E-01 1.15329E+01 2.4452 + 6.00 20.00 7.19 21.25 7.431E+00 1.346E-01 5.12315E-03 2.39212E-01 1.11694E+01 2.4132 + 6.00 20.00 7.19 21.25 7.748E+00 1.291E-01 4.55917E-03 2.21939E-01 1.08039E+01 2.3799 + 6.00 20.00 7.19 21.25 8.077E+00 1.238E-01 4.05203E-03 2.05646E-01 1.04368E+01 2.3453 + 6.00 20.00 7.19 21.25 8.421E+00 1.187E-01 3.59645E-03 1.90293E-01 1.00687E+01 2.3094 + 6.00 20.00 7.19 21.25 8.780E+00 1.139E-01 3.17850E-03 1.75337E-01 9.67213E+00 2.2692 + 6.00 20.00 7.19 21.25 9.153E+00 1.093E-01 2.80372E-03 1.61244E-01 9.27331E+00 2.2271 + 6.00 20.00 7.19 21.25 9.543E+00 1.048E-01 2.46904E-03 1.48040E-01 8.87627E+00 2.1834 + 6.00 20.00 7.19 21.25 9.949E+00 1.005E-01 2.17059E-03 1.35684E-01 8.48166E+00 2.1379 + 6.00 20.00 7.19 21.25 1.037E+01 9.641E-02 1.90480E-03 1.24138E-01 8.09014E+00 2.0906 + 6.00 20.00 7.19 21.25 1.081E+01 9.248E-02 1.66847E-03 1.13363E-01 7.70239E+00 2.0415 + 6.00 20.00 7.19 21.25 1.127E+01 8.870E-02 1.45864E-03 1.03324E-01 7.31909E+00 1.9905 + 6.00 20.00 7.19 21.25 1.175E+01 8.508E-02 1.27264E-03 9.39857E-02 6.94092E+00 1.9374 + 6.00 20.00 7.19 21.25 1.225E+01 8.161E-02 1.10805E-03 8.53129E-02 6.56857E+00 1.8823 + 6.00 20.00 7.19 21.25 1.278E+01 7.828E-02 9.59880E-04 7.70502E-02 6.18487E+00 1.8221 + 6.00 20.00 7.19 21.25 1.332E+01 7.508E-02 8.29299E-04 6.94015E-02 5.80800E+00 1.7592 + 6.00 20.00 7.19 21.25 1.389E+01 7.201E-02 7.14702E-04 6.23568E-02 5.44054E+00 1.6939 + 6.00 20.00 7.19 21.25 1.448E+01 6.907E-02 6.14346E-04 5.58821E-02 5.08313E+00 1.6259 + 6.00 20.00 7.19 21.25 1.509E+01 6.626E-02 5.26660E-04 4.99448E-02 4.73642E+00 1.5553 + 6.00 20.00 7.19 21.25 1.574E+01 6.355E-02 4.50225E-04 4.45133E-02 4.40100E+00 1.4818 + 6.00 20.00 7.19 21.25 1.641E+01 6.096E-02 3.83760E-04 3.95568E-02 4.07740E+00 1.4055 + 6.00 20.00 7.19 21.25 1.710E+01 5.847E-02 3.26115E-04 3.50456E-02 3.76614E+00 1.3260 + 6.00 20.00 7.19 21.25 1.783E+01 5.608E-02 2.76254E-04 3.09508E-02 3.46765E+00 1.2435 + 6.00 20.00 7.19 21.25 1.859E+01 5.379E-02 2.32641E-04 2.71738E-02 3.17406E+00 1.1550 + 6.00 20.00 7.19 21.25 1.938E+01 5.160E-02 1.95179E-04 2.37683E-02 2.89443E+00 1.0628 + 6.00 20.00 7.19 21.25 2.021E+01 4.949E-02 1.63145E-04 2.07129E-02 2.62970E+00 0.9669 + 6.00 20.00 7.19 21.25 2.107E+01 4.747E-02 1.35846E-04 1.79810E-02 2.38002E+00 0.8671 + 6.00 20.00 7.19 21.25 2.196E+01 4.553E-02 1.12664E-04 1.55472E-02 2.14545E+00 0.7634 + 6.00 20.00 7.19 21.25 2.290E+01 4.367E-02 9.30491E-05 1.33869E-02 1.92597E+00 0.6554 + 6.00 20.00 7.19 21.25 2.387E+01 4.189E-02 7.65170E-05 1.14770E-02 1.72145E+00 0.5432 + 6.00 20.00 7.19 21.25 2.489E+01 4.018E-02 6.26386E-05 9.79517E-03 1.53173E+00 0.4264 + 6.00 20.00 7.19 21.25 2.595E+01 3.854E-02 5.10371E-05 8.32063E-03 1.35652E+00 0.3049 + 6.00 20.00 7.19 21.25 2.705E+01 3.697E-02 4.12773E-05 7.01588E-03 1.19249E+00 0.1760 + 6.00 20.00 7.19 21.25 2.820E+01 3.546E-02 3.32050E-05 5.88403E-03 1.04267E+00 0.0418 + 6.00 20.00 7.19 21.25 2.940E+01 3.401E-02 2.65668E-05 4.90809E-03 9.06746E-01 -0.0979 + 6.00 20.00 7.19 21.25 3.065E+01 3.262E-02 2.11361E-05 4.07097E-03 7.84100E-01 -0.2432 + 6.00 20.00 7.19 21.25 3.196E+01 3.129E-02 1.67168E-05 3.35682E-03 6.74067E-01 -0.3944 + 6.00 20.00 7.19 21.25 3.332E+01 3.001E-02 1.31409E-05 2.75106E-03 5.75938E-01 -0.5518 + 6.00 20.00 7.19 21.25 3.474E+01 2.879E-02 1.02642E-05 2.24028E-03 4.88966E-01 -0.7155 + 6.00 20.00 7.19 21.25 3.622E+01 2.761E-02 7.96421E-06 1.81226E-03 4.12379E-01 -0.8858 + 6.00 20.00 7.19 21.25 3.776E+01 2.649E-02 6.13702E-06 1.45591E-03 3.45392E-01 -1.0631 + 6.00 20.00 7.19 21.25 3.936E+01 2.540E-02 4.67954E-06 1.15740E-03 2.86260E-01 -1.2509 + 6.00 20.00 7.19 21.25 4.104E+01 2.437E-02 3.54046E-06 9.12933E-04 2.35406E-01 -1.4464 + 6.00 20.00 7.19 21.25 4.279E+01 2.337E-02 2.65740E-06 7.14394E-04 1.92052E-01 -1.6500 + 6.00 20.00 7.19 21.25 4.461E+01 2.242E-02 1.97811E-06 5.54411E-04 1.55386E-01 -1.8618 + 6.00 20.00 7.19 21.25 4.651E+01 2.150E-02 1.45980E-06 4.26554E-04 1.24640E-01 -2.0823 + 6.00 20.00 7.19 21.25 4.848E+01 2.063E-02 1.06764E-06 3.25242E-04 9.90808E-02 -2.3118 + 6.00 20.00 7.19 21.25 5.055E+01 1.978E-02 7.73545E-07 2.45679E-04 7.80283E-02 -2.5507 + 6.00 20.00 7.19 21.25 5.270E+01 1.898E-02 5.55018E-07 1.83777E-04 6.08521E-02 -2.7993 + 6.00 20.00 7.19 21.25 5.494E+01 1.820E-02 3.94194E-07 1.36080E-04 4.69765E-02 -3.0581 + 6.00 20.00 7.19 21.25 5.728E+01 1.746E-02 2.76188E-07 9.94010E-05 3.57747E-02 -3.3305 + 6.00 20.00 7.19 21.25 5.972E+01 1.675E-02 1.91341E-07 7.17950E-05 2.69390E-02 -3.6142 + 6.00 20.00 7.19 21.25 6.226E+01 1.606E-02 1.31026E-07 5.12561E-05 2.00509E-02 -3.9095 + 6.00 20.00 7.19 21.25 6.491E+01 1.541E-02 8.86440E-08 3.61524E-05 1.47443E-02 -4.2169 + 6.00 20.00 7.19 21.25 6.767E+01 1.478E-02 5.92183E-08 2.51794E-05 1.07062E-02 -4.5369 + 6.00 20.00 7.19 21.25 7.055E+01 1.417E-02 3.90439E-08 1.73078E-05 7.67243E-03 -4.8701 + 6.00 20.00 7.19 21.25 7.355E+01 1.360E-02 2.53924E-08 1.17353E-05 5.42356E-03 -5.2170 + 6.00 20.00 7.19 21.25 7.669E+01 1.304E-02 1.62800E-08 7.84415E-06 3.77953E-03 -5.5782 + 6.00 20.00 7.19 21.25 7.995E+01 1.251E-02 1.02838E-08 5.16588E-06 2.59500E-03 -5.9542 + 6.00 20.00 7.19 21.25 8.335E+01 1.200E-02 6.33362E-09 3.31699E-06 1.73715E-03 -6.3555 + 6.00 20.00 7.19 21.25 8.690E+01 1.151E-02 3.83614E-09 2.09454E-06 1.14362E-03 -6.7736 + 6.00 20.00 7.19 21.25 9.060E+01 1.104E-02 2.28375E-09 1.30000E-06 7.40011E-04 -7.2088 + 6.00 20.00 7.19 21.25 9.445E+01 1.059E-02 1.33535E-09 7.92485E-07 4.70313E-04 -7.6621 + 6.00 20.00 7.19 21.25 9.847E+01 1.016E-02 7.66327E-10 4.74144E-07 2.93364E-04 -8.1341 + 6.00 20.00 7.19 21.25 1.027E+02 9.741E-03 4.31278E-10 2.78198E-07 1.79453E-04 -8.6256 + 6.00 20.00 7.19 21.25 1.070E+02 9.343E-03 2.37835E-10 1.59946E-07 1.07565E-04 -9.1374 + 6.00 20.00 7.19 21.25 1.116E+02 8.962E-03 1.28410E-10 9.00320E-08 6.31242E-05 -9.6704 + 6.00 20.00 7.19 21.25 1.163E+02 8.596E-03 6.78170E-11 4.95722E-08 3.62358E-05 -10.2255 + 6.00 20.00 7.19 21.25 1.213E+02 8.245E-03 3.50022E-11 2.66744E-08 2.03281E-05 -10.8035 + 6.00 20.00 7.19 21.25 1.265E+02 7.908E-03 1.76382E-11 1.40138E-08 1.11341E-05 -11.4055 + 6.00 20.00 7.19 21.25 1.318E+02 7.585E-03 8.66907E-12 7.18082E-09 5.94807E-06 -12.0324 + 6.00 20.00 7.19 21.25 1.374E+02 7.276E-03 4.15147E-12 3.58512E-09 3.09604E-06 -12.6854 + 6.00 20.00 7.19 21.25 1.433E+02 6.979E-03 1.93492E-12 1.74207E-09 1.56845E-06 -13.3654 + 6.00 20.00 7.19 21.25 1.494E+02 6.694E-03 8.76725E-13 8.22939E-10 7.72453E-07 -14.0737 + 6.00 20.00 7.19 21.25 1.557E+02 6.421E-03 3.85740E-13 3.77485E-10 3.69407E-07 -14.8114 + 6.00 20.00 7.19 21.25 1.624E+02 6.158E-03 1.64593E-13 1.67926E-10 1.71326E-07 -15.5797 + 6.00 20.00 7.19 21.25 1.693E+02 5.907E-03 6.80234E-14 7.23544E-11 7.69612E-08 -16.3800 + 6.00 20.00 7.19 21.25 1.765E+02 5.666E-03 2.71932E-14 3.01555E-11 3.34406E-08 -17.2135 + 6.00 20.00 7.19 21.25 1.840E+02 5.435E-03 1.05002E-14 1.21396E-11 1.40350E-08 -18.0817 + 6.00 20.00 7.19 21.25 1.918E+02 5.213E-03 3.91063E-15 4.71363E-12 5.68152E-09 -18.9860 + 6.00 20.00 7.19 21.25 2.000E+02 5.000E-03 1.40262E-15 1.76259E-12 2.21493E-09 -19.9280 diff --git a/tests/data/test-bt15_wna.ofr b/tests/data/test-bt15_wna.ofr index 794e1e9..46979a7 100644 --- a/tests/data/test-bt15_wna.ofr +++ b/tests/data/test-bt15_wna.ofr @@ -2,72 +2,72 @@ 12/11/15 ! Added parameters for a high-cut filter !Title: - Western North America params + Western North America params !rho, beta, prtitn, radpat, fs: 2.72 3.5 0.707 0.55 2.0 !spectral shape: source number, pf_a, pd_a, pf_b, pd_b ! where source number means: ! 1 = 1-corner (S = 1/(1+(f/fc)**pf_a)**pd_a) ! 2 = Joyner (BSSA 74, 1167--1188) -! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, +! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, ! 17--30) ! 4 = Atkinson & Silva (BSSA 87, 97--113) ! 5 = Haddon 1996 (approximate spectra in Fig. 10 of -! Haddon's paper in BSSA 86, 1300--1313; +! Haddon's paper in BSSA 86, 1300--1313; ! see also Atkinson & Boore, BSSA 88, 917--934) ! 6 = AB98-California (Atkinson & Boore BSSA 88, 917--934) -! 7 = Boatwright & Choy (this is the functional form used by +! 7 = Boatwright & Choy (this is the functional form used by ! Boore & Atkinson, BSSA 79, 1736--1761, p. 1761) -! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation +! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation ! workshop) ! 9 = Atkinson & Silva (BSSA 90, 255--274) ! 10 = Atkinson (2005 model), -! 11 = Generalized multiplicative two-corner model +! 11 = Generalized multiplicative two-corner model ! (S = [1/(1+(f/fa)**pf_a)**pd_a]*[1/(1+(f/fb)**pf_b)**pd_b]) -! 12 = Generalized additive two-corner model +! 12 = Generalized additive two-corner model ! (S = (1-eps)/(1+(f/fa)**pf_a)**pd_a] + eps/(1+(f/fb)**pf_b)**pd_b) ! NOTE: if M=4.0 2.410 -0.533 0.0 2.520 -0.637 0.0 @@ -86,12 +86,12 @@ ! reflect my current preferred terminology. I do not have time to do this now). ! Specification of the finite-fault factor h: ! If nlines = 1 -! log10(f_ff) = c1 + c2*amag +! log10(f_ff) = c1 + c2*amag ! If nlines = 2 ! log10(f_ff) = c1 + c2*amag for amag=Mh ! where Mh is determined by the intersection of the two lines -! (this is computed in the program) +! (this is computed in the program) ! If nlines = 3 ! log10(f_ff) = c1 + c2*amag for amag=Mh+DeltaM/2 @@ -100,23 +100,23 @@ ! *** NOTE: placeholders are needed for c3, c4, and DeltaM, even if not used. ! ! Published finite-fault factors -! Author applicable_region meaning_of_r iflag_f_ff nlines c1 c2 c3 c4 +! Author applicable_region meaning_of_r iflag_f_ff nlines c1 c2 c3 c4 ! Atkinson and Silva (2000) (AS00) ACR r_rup 1 1 -0.0500 0.1500 0.0 0.0 ! Toro (2002) (T02) SCR r_rup 2 1 -1.0506 0.2606 0.0 0.0 ! Atkinson and Boore (2003) (AB03) subduction r_rup 1 1 -2.1403 0.5070 0.0 0.0 ! Yenier and Atkinson (2014) (YA14) ACR r_rup 1 1 -1.7200 0.4300 0.0 0.0 ! Yenier and Atkinson (2015) (YA15) ACR r_rup 1 1 -0.4050 0.2350 0.0 0.0 ! Boore and Thompson (2015) (BT15) see below -! +! ! Suggested modification for stable continental regions ! Assuming that all of the above the above relations except Toro (2002) and Atkinson and Boore (2003) ! are for active crustal regions, and that h is proportional to fault radius, then -0.1644 should be ! added to c1 (and c3 for Boore (2014) to adjust for the smaller fault size expected for stable continental region -! earthquakes (this adjustment factor uses radius ~ stress^-1/3, and a stress of 88 bars for ACR (from +! earthquakes (this adjustment factor uses radius ~ stress^-1/3, and a stress of 88 bars for ACR (from ! my determination of what stress matches the Atkinson and Silva (2000) high-frequency spectral level-- ! see What_SCF_stress_param_is_consistent_with_the_AS00_source_model.pdf in the daves notes page of ! www.daveboore.com) and 274 bars for SCR, from my inversion of 0.1 s and 0.2 s PSA values for 8 ENA -! earthquakes, using the Boatwright and Seekins (2011) attenuation model. This determination is +! earthquakes, using the Boatwright and Seekins (2011) attenuation model. This determination is ! part of ongoing work for the NGA-East project, and will appear in a PEER report in 2015. ! 1 1 -0.0500 0.1500 0.0 0.0 0.0 ! ACR: AS00 ! 1 2 -1.7200 0.4300 -0.405 0.2350 0.0 ! ACR: YA14&YA15, no smoothing @@ -133,9 +133,9 @@ ! !Geometrical spreading option: ! 0 = use standard hinged line segments -! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; +! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; ! they were not intended for general use): -! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), +! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), ! with Q=500f^0.5, which must be specified below). ! 2 = Dave Boore's trial spreading #1 for ENA). ! 3 = Gail Atkinson's Sept, 2012 report "nga-e-r12_AttenShape.pdf". For this @@ -147,18 +147,18 @@ 0 !Parameters for the frequency dependent gsprd: ! option 2: -! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, +! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ! ft1_dmb_gsprd, ft2_dmb_gsprd ! option 4: ! h4gspread (a nominal value of focal depth; in a later version I will put this into the control files for the SMSIM driver programs): ! (Placeholders are needed, but not used, even if the geometrical spreading option is not 2 or 4) -! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, +! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, ! ! for r< 60 km and 1/r^0.5 for all f beyond 60 km. 10.0 0.0 0.0 0.0 0.0 0.0 -!gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set +!gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set ! r_ref = 1.0 km) ! *** NOTE: these lines are needed even if option 1 or greater is chosen above---and -! there must be nsegs lines following the "nseg" specification, even if the +! there must be nsegs lines following the "nseg" specification, even if the ! geometrical spreading is not used because option 1 has been chosen. ! *** Also note: r_ref must be specified for Geometrical spreading option 4 (set the value to 1.0, as below). 1.0 @@ -173,7 +173,7 @@ ! fb is set equal to fa for source 1, even though fb is not used in spect_shape, using weights of 0.5 and 0.5 ! for source 1 will give the same answer as the previously recommended 1.0 0.0 weights. The advantage ! to using weights of 0.5 0.5 is that they are the same as I am now recommending for the Atkinson and colleagues (and perhaps -! all) 2-corner models, for reasons discussed in the spectral shape, source 12 +! all) 2-corner models, for reasons discussed in the spectral shape, source 12 ! section above. This is not what is used by Atkinson and colleagues; they use 0.5 0.0 for the weights ! (Atkinson and Boore (1995, p. 20) and Atkinson and Silva (2000, p. 259)). 0.5 0.5 @@ -221,17 +221,17 @@ !! BJ97 generic rock, aoi=00, new dens (30 July 2014) !12 ! 0.001 1.00 -! 0.009 1.01 -! 0.025 1.03 +! 0.009 1.01 +! 0.025 1.03 ! 0.049 1.06 -! 0.081 1.10 -! 0.15 1.19 +! 0.081 1.10 +! 0.15 1.19 ! 0.37 1.39 -! 0.68 1.58 -! 1.11 1.77 -! 2.36 2.24 -! 5.25 2.75 -! 60.3 4.49 +! 0.68 1.58 +! 1.11 1.77 +! 2.36 2.24 +! 5.25 2.75 +! 60.3 4.49 !site diminution parameters: fmax, kappa, dkappadmag, amagkref ! (NOTE: fmax=0.0 or kappa=0.0 => fmax or kappa are not used. I included this ! to prevent the inadvertent use of both fmax and kappa to control the diminution @@ -241,8 +241,8 @@ 0.0 0.035 0.0 0.0 !low-cut filter parameters: fcut, nslope (=4, 8, 12, etc) 0.0 8 -!high-cut filter parameters: itype_hcfilt (0=no high-cut filter [but the other parameters are -! needed as placeholders], 1=raised half cycle of cosine; 2= quarter cycle of a cosine), +!high-cut filter parameters: itype_hcfilt (0=no high-cut filter [but the other parameters are +! needed as placeholders], 1=raised half cycle of cosine; 2= quarter cycle of a cosine), ! fhc1, fhc2 (low and high frequency limits of filter), eta_hcfilt (power of cosine) 0 25.0 50.0 1.0 ! 2 25.0 50.0 1.0 @@ -250,13 +250,13 @@ ! 1=BJ84;2=LP99; 3=BT Drms/Dex, file 1; 4=BT Drms/Dex, file 2; 5=average of BT file 1 & file 2) 10.0 0.00001 0.001 3 !Names of pars files for Boore-Thompson Drms/Dex oscillator adjustment for RV simulations. -! Note that these adjustments are for a particular rms-to-peak factor. Most recently we use the +! Note that these adjustments are for a particular rms-to-peak factor. Most recently we use the ! Der Kiureghian (1980) (DK) factor, but the RV program tmrs_loop_rv_drvr writes out the results using -! both the DK factor and the earlier default factor from Cartwright and Longuet-Higgins. The pars files +! both the DK factor and the earlier default factor from Cartwright and Longuet-Higgins. The pars files ! are definitely dependent on which rms-to-peak factor was used. I could specify which peak factor -! to use in the RV programs, but for now, I prefer to write out the results using both. +! to use in the RV programs, but for now, I prefer to write out the results using both. ! -!NOTE: If no folder is specified, the program will look for the files in +!NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called). ! !File names are required as placeholders, even if they are not used (e.g., for TD simulations @@ -265,19 +265,16 @@ !Name of pars file 1: ! The file below used the Raoof et al. (BSSA 1999, 888-902) attenuation model for WNA: ! If this file is used for random-vibration simulations, use the output based on the -! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr +! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr ! with "dk80" as part of the column name). See Boore and Thompson (2015, BSSA, 1029--1041) for details. bt15_wna_acr_trms4osc.dk_rms2pk.pars !Name of pars file 2: ! The file below used the Boatwright and Seekins (BSSA 2011, 1769-1782; BS11) attenuation model for ENA: ! If this file is used for random-vibration simulations, use the output based on the -! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr +! Der Kiureghian (1980) rms-to-peak factor (e.g., output columns from tmrs_loop-rv_drvr ! with "dk80" as part of the column name). See Boore and Thompson (2015, BSSA, 1029--1041) for details. bt15_ena_scr_trms4osc.dk_rms2pk.pars !window params: idxwnd(0=box,1=exp), tapr(<1), eps_w, eta_w, f_tb2te, f_te_xtnd - 1 0.05 0.2 0.05 2.12 1.0 + 1 0.05 0.2 0.05 2.12 1.0 !timing stuff: dur_fctr, dt, tshift, seed, nsims, iran_type (0=normal;1=uniform) 1.3 0.005 60.0 123.0 800 0 - - - diff --git a/tests/data/test-lp99.gmrv.sum b/tests/data/test-lp99.gmrv.sum index 8cf207e..6d30b20 100644 --- a/tests/data/test-lp99.gmrv.sum +++ b/tests/data/test-lp99.gmrv.sum @@ -1,16 +1,16 @@ - + ***************** SMSIM, Version 3.800 ************************ - - + + output file: test-lp99.gmrv.sum *** Results computed using GM_RV_DRVR *** - + Date: 2014/02/04 Time Start: 08:07:45.057 - - file with parameters: test-lp99.ofr + + file with parameters: test-lp99.ofr Title: - Sample data file **** NOT FOR A PARTICULAR APPLICATION ** + Sample data file **** NOT FOR A PARTICULAR APPLICATION ** rho, beta, prtitn, rtp, fs: 2.80 3.60 0.710 0.55 2.00 spectral shape: source number, pf_a, pd_a, pf_b, pd_b @@ -40,7 +40,7 @@ ! Atkinson and Boore (2003) r_rup 1 -2.1403 0.507 0 0.00000000E+00 0.00000000E+00 i_gsprd_option = 0 - r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = + r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ft1_dmb_gsprd, ft2_dmb_gsprd = 10.00 0.00 0.00 0.00 0.00 0.00 gsprd: r_ref, nsegs, (rlow(i), a_s, b_s, m_s(i)) (Usually set r_ref = 1.0 km) 1.00 @@ -73,8 +73,8 @@ parameters for rv calcs: zup, eps_int, amp_cutoff, osc_crrctn 10.00 1.000E-05 1.000E-03 2 fup calculated in driver = 7.329E+01 - - *********** NEW R AND M ********** + + *********** NEW R AND M ********** r, f_ff, rmod, amag, kappa = 2.000E+01 0.000E+00 2.000E+01 6.000E+00 3.000E-02 File with response spectra: test-lp99.m6.00r020.0_rs.rv.co const= 4.757E-24 @@ -181,5 +181,5 @@ 13.000 0.077 2.137E+00 1.033E+00 4.992E-01 0.19 0.9959 19.5 1.8 1.32 4.30 7.750E-01 7.750E-01 1.8 19.5 30.1 1.8 1.8 2.7 1.32 1.62 1.61 1.82 2.137E+00 2.631E+00 2.600E+00 2.947E+00 1.033E+00 1.272E+00 1.257E+00 1.424E+00 4.992E-01 6.146E-01 6.074E-01 6.884E-01 4.28031E+00 3.29017E+00 6.33198E+00 1.15657E+03 1.943E+00 2.942E+00 1.600E+00 4.542E+00 6.988E+00 2.86233E+00 8.062E-01 1.240E+00 14.000 0.071 2.129E+00 9.553E-01 4.287E-01 0.19 0.9960 19.8 1.8 1.32 4.30 7.907E-01 7.907E-01 1.8 19.8 29.7 1.8 1.8 2.6 1.32 1.61 1.61 1.81 2.129E+00 2.587E+00 2.587E+00 2.908E+00 9.553E-01 1.161E+00 1.161E+00 1.305E+00 4.287E-01 5.211E-01 5.210E-01 5.858E-01 3.53730E+00 2.64843E+00 5.29092E+00 9.96842E+02 1.982E+00 2.942E+00 1.600E+00 4.542E+00 6.789E+00 3.08251E+00 8.179E-01 1.223E+00 15.000 0.067 2.121E+00 8.885E-01 3.722E-01 0.20 0.9961 20.1 1.8 1.33 4.30 8.038E-01 8.038E-01 1.8 20.1 29.3 1.8 1.8 2.6 1.33 1.60 1.61 1.80 2.121E+00 2.548E+00 2.573E+00 2.872E+00 8.885E-01 1.067E+00 1.078E+00 1.203E+00 3.722E-01 4.471E-01 4.514E-01 5.039E-01 2.95941E+00 2.16957E+00 4.49488E+00 8.68182E+02 2.015E+00 2.942E+00 1.600E+00 4.542E+00 6.620E+00 3.30269E+00 8.283E-01 1.207E+00 - + Elapsed time (sec): 1.590E-01 diff --git a/tests/data/test-lp99.m6.00r020.0_fs.col b/tests/data/test-lp99.m6.00r020.0_fs.col index 33c58b0..45877c9 100644 --- a/tests/data/test-lp99.m6.00r020.0_fs.col +++ b/tests/data/test-lp99.m6.00r020.0_fs.col @@ -1,202 +1,202 @@ Parameter file: test-lp99.ofr - M r f_ff rmod freq(Hz) per(s) fds:test-lp9 fvs:test-lp9 fas:test-lp9 ln_fas - 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 - 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 - 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 - 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 - 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 - 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 - 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 - 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 - 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 - 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 - 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 - 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 - 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 - 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 - 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 - 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 - 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 - 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 - 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 - 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 - 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 - 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 - 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 - 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 - 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 - 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 - 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 - 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 - 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 - 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 - 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 - 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 - 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 - 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 - 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 - 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 - 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 - 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 - 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 - 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 - 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 - 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 - 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 - 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 - 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 - 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 - 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 - 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 - 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 - 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 - 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 - 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 - 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 - 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 - 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 - 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 - 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 - 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 - 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 - 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 - 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 - 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 - 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 - 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 - 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 - 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 - 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 - 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 - 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 - 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 - 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 - 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 - 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 - 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 - 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 - 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 - 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 - 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 - 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 - 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 - 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 - 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 - 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 - 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 - 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 - 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 - 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 - 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 - 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 - 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 - 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 - 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 - 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 - 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 - 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 - 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 - 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 - 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 - 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 - 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 - 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 - 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 - 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 - 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 - 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 - 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 - 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 - 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 - 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 - 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 - 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 - 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 - 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 - 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 - 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 - 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 - 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 - 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 - 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 - 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 - 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 - 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 - 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 - 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 - 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 - 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 - 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 - 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 - 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 - 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 - 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 - 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 - 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 - 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 - 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 - 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 - 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 - 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 - 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 - 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 - 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 - 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 - 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 - 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 - 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 - 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 - 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 - 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 - 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 - 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 - 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 - 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 - 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 - 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 - 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 - 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 - 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 - 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 - 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 - 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 - 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 - 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 - 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 - 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 - 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 - 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 - 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 - 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 - 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 - 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 - 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 - 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 - 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 - 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 - 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 - 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 - 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 - 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 - 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 - 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 - 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 - 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 - 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 - 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 - 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 - 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 - 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 - 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 - 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 - 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 - 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 - 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 - 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 - 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 - 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 - 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 - 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 - 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 - 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 - 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 + M r f_ff rmod freq(Hz) per(s) fds:test-lp9 fvs:test-lp9 fas:test-lp9 ln_fas + 6.00 20.00 0.00 20.00 5.000E-02 2.000E+01 2.59811E+00 8.16221E-01 2.56424E-01 -1.3609 + 6.00 20.00 0.00 20.00 5.213E-02 1.918E+01 2.59255E+00 8.49136E-01 2.78117E-01 -1.2797 + 6.00 20.00 0.00 20.00 5.435E-02 1.840E+01 2.58653E+00 8.83219E-01 3.01592E-01 -1.1987 + 6.00 20.00 0.00 20.00 5.666E-02 1.765E+01 2.58002E+00 9.18493E-01 3.26985E-01 -1.1178 + 6.00 20.00 0.00 20.00 5.907E-02 1.693E+01 2.57299E+00 9.54975E-01 3.54442E-01 -1.0372 + 6.00 20.00 0.00 20.00 6.158E-02 1.624E+01 2.56540E+00 9.92679E-01 3.84116E-01 -0.9568 + 6.00 20.00 0.00 20.00 6.421E-02 1.557E+01 2.55720E+00 1.03162E+00 4.16172E-01 -0.8767 + 6.00 20.00 0.00 20.00 6.694E-02 1.494E+01 2.54833E+00 1.07180E+00 4.50783E-01 -0.7968 + 6.00 20.00 0.00 20.00 6.979E-02 1.433E+01 2.53877E+00 1.11321E+00 4.88130E-01 -0.7172 + 6.00 20.00 0.00 20.00 7.276E-02 1.374E+01 2.52844E+00 1.15587E+00 5.28404E-01 -0.6379 + 6.00 20.00 0.00 20.00 7.585E-02 1.318E+01 2.51729E+00 1.19975E+00 5.71807E-01 -0.5590 + 6.00 20.00 0.00 20.00 7.908E-02 1.265E+01 2.50527E+00 1.24484E+00 6.18545E-01 -0.4804 + 6.00 20.00 0.00 20.00 8.245E-02 1.213E+01 2.49230E+00 1.29110E+00 6.68836E-01 -0.4022 + 6.00 20.00 0.00 20.00 8.596E-02 1.163E+01 2.47833E+00 1.33850E+00 7.22902E-01 -0.3245 + 6.00 20.00 0.00 20.00 8.962E-02 1.116E+01 2.46328E+00 1.38699E+00 7.80972E-01 -0.2472 + 6.00 20.00 0.00 20.00 9.343E-02 1.070E+01 2.44707E+00 1.43651E+00 8.43277E-01 -0.1705 + 6.00 20.00 0.00 20.00 9.741E-02 1.027E+01 2.42963E+00 1.48697E+00 9.10052E-01 -0.0943 + 6.00 20.00 0.00 20.00 1.016E-01 9.847E+00 2.41743E+00 1.54247E+00 9.84194E-01 -0.0159 + 6.00 20.00 0.00 20.00 1.059E-01 9.445E+00 2.41489E+00 1.60643E+00 1.06863E+00 0.0664 + 6.00 20.00 0.00 20.00 1.104E-01 9.060E+00 2.41068E+00 1.67188E+00 1.15950E+00 0.1480 + 6.00 20.00 0.00 20.00 1.151E-01 8.690E+00 2.40466E+00 1.73868E+00 1.25715E+00 0.2288 + 6.00 20.00 0.00 20.00 1.200E-01 8.335E+00 2.39672E+00 1.80669E+00 1.36192E+00 0.3089 + 6.00 20.00 0.00 20.00 1.251E-01 7.995E+00 2.38671E+00 1.87572E+00 1.47413E+00 0.3881 + 6.00 20.00 0.00 20.00 1.304E-01 7.669E+00 2.37450E+00 1.94554E+00 1.59408E+00 0.4663 + 6.00 20.00 0.00 20.00 1.360E-01 7.355E+00 2.35995E+00 2.01591E+00 1.72203E+00 0.5435 + 6.00 20.00 0.00 20.00 1.417E-01 7.055E+00 2.34291E+00 2.08653E+00 1.85821E+00 0.6196 + 6.00 20.00 0.00 20.00 1.478E-01 6.767E+00 2.32324E+00 2.15708E+00 2.00279E+00 0.6945 + 6.00 20.00 0.00 20.00 1.541E-01 6.491E+00 2.30081E+00 2.22716E+00 2.15588E+00 0.7682 + 6.00 20.00 0.00 20.00 1.606E-01 6.226E+00 2.27547E+00 2.29638E+00 2.31748E+00 0.8405 + 6.00 20.00 0.00 20.00 1.675E-01 5.972E+00 2.24710E+00 2.36426E+00 2.48753E+00 0.9113 + 6.00 20.00 0.00 20.00 1.746E-01 5.728E+00 2.21556E+00 2.43028E+00 2.66582E+00 0.9805 + 6.00 20.00 0.00 20.00 1.820E-01 5.494E+00 2.18074E+00 2.49390E+00 2.85203E+00 1.0480 + 6.00 20.00 0.00 20.00 1.898E-01 5.270E+00 2.14254E+00 2.55450E+00 3.04566E+00 1.1137 + 6.00 20.00 0.00 20.00 1.978E-01 5.055E+00 2.10088E+00 2.61142E+00 3.24604E+00 1.1774 + 6.00 20.00 0.00 20.00 2.063E-01 4.848E+00 2.06187E+00 2.67201E+00 3.46270E+00 1.2420 + 6.00 20.00 0.00 20.00 2.150E-01 4.651E+00 2.02246E+00 2.73249E+00 3.69178E+00 1.3061 + 6.00 20.00 0.00 20.00 2.242E-01 4.461E+00 1.98065E+00 2.78989E+00 3.92976E+00 1.3686 + 6.00 20.00 0.00 20.00 2.337E-01 4.279E+00 1.93652E+00 2.84382E+00 4.17620E+00 1.4294 + 6.00 20.00 0.00 20.00 2.437E-01 4.104E+00 1.89014E+00 2.89385E+00 4.43053E+00 1.4885 + 6.00 20.00 0.00 20.00 2.540E-01 3.936E+00 1.84164E+00 2.93959E+00 4.69210E+00 1.5459 + 6.00 20.00 0.00 20.00 2.649E-01 3.776E+00 1.79114E+00 2.98066E+00 4.96015E+00 1.6014 + 6.00 20.00 0.00 20.00 2.761E-01 3.622E+00 1.73881E+00 3.01672E+00 5.23381E+00 1.6551 + 6.00 20.00 0.00 20.00 2.879E-01 3.474E+00 1.68481E+00 3.04744E+00 5.51212E+00 1.7069 + 6.00 20.00 0.00 20.00 3.001E-01 3.332E+00 1.62934E+00 3.07253E+00 5.79402E+00 1.7568 + 6.00 20.00 0.00 20.00 3.129E-01 3.196E+00 1.57260E+00 3.09175E+00 6.07841E+00 1.8047 + 6.00 20.00 0.00 20.00 3.262E-01 3.065E+00 1.51483E+00 3.10491E+00 6.36406E+00 1.8507 + 6.00 20.00 0.00 20.00 3.401E-01 2.940E+00 1.45624E+00 3.11185E+00 6.64975E+00 1.8946 + 6.00 20.00 0.00 20.00 3.546E-01 2.820E+00 1.39708E+00 3.11249E+00 6.93418E+00 1.9365 + 6.00 20.00 0.00 20.00 3.697E-01 2.705E+00 1.33759E+00 3.10678E+00 7.21603E+00 1.9763 + 6.00 20.00 0.00 20.00 3.854E-01 2.595E+00 1.27801E+00 3.09474E+00 7.49399E+00 2.0141 + 6.00 20.00 0.00 20.00 4.018E-01 2.489E+00 1.21859E+00 3.07644E+00 7.76673E+00 2.0498 + 6.00 20.00 0.00 20.00 4.189E-01 2.387E+00 1.15956E+00 3.05200E+00 8.03296E+00 2.0836 + 6.00 20.00 0.00 20.00 4.367E-01 2.290E+00 1.10115E+00 3.02160E+00 8.29143E+00 2.1152 + 6.00 20.00 0.00 20.00 4.553E-01 2.196E+00 1.04356E+00 2.98546E+00 8.54091E+00 2.1449 + 6.00 20.00 0.00 20.00 4.747E-01 2.107E+00 9.87009E-01 2.94384E+00 8.78027E+00 2.1725 + 6.00 20.00 0.00 20.00 4.949E-01 2.021E+00 9.31665E-01 2.89704E+00 9.00841E+00 2.1982 + 6.00 20.00 0.00 20.00 5.160E-01 1.938E+00 8.77699E-01 2.84538E+00 9.22434E+00 2.2218 + 6.00 20.00 0.00 20.00 5.379E-01 1.859E+00 8.25255E-01 2.78923E+00 9.42713E+00 2.2436 + 6.00 20.00 0.00 20.00 5.608E-01 1.783E+00 7.74460E-01 2.72895E+00 9.61596E+00 2.2634 + 6.00 20.00 0.00 20.00 5.847E-01 1.710E+00 7.25422E-01 2.66494E+00 9.79006E+00 2.2814 + 6.00 20.00 0.00 20.00 6.096E-01 1.641E+00 6.80463E-01 2.60617E+00 9.98162E+00 2.3007 + 6.00 20.00 0.00 20.00 6.355E-01 1.574E+00 6.40774E-01 2.55861E+00 1.02165E+01 2.3240 + 6.00 20.00 0.00 20.00 6.626E-01 1.509E+00 6.02610E-01 2.50863E+00 1.04433E+01 2.3460 + 6.00 20.00 0.00 20.00 6.907E-01 1.448E+00 5.66007E-01 2.45653E+00 1.06616E+01 2.3666 + 6.00 20.00 0.00 20.00 7.201E-01 1.389E+00 5.30986E-01 2.40262E+00 1.08714E+01 2.3861 + 6.00 20.00 0.00 20.00 7.508E-01 1.332E+00 4.97556E-01 2.34717E+00 1.10725E+01 2.4045 + 6.00 20.00 0.00 20.00 7.828E-01 1.278E+00 4.65714E-01 2.29046E+00 1.12649E+01 2.4217 + 6.00 20.00 0.00 20.00 8.161E-01 1.225E+00 4.35449E-01 2.23275E+00 1.14484E+01 2.4378 + 6.00 20.00 0.00 20.00 8.508E-01 1.175E+00 4.06739E-01 2.17430E+00 1.16232E+01 2.4530 + 6.00 20.00 0.00 20.00 8.870E-01 1.127E+00 3.79554E-01 2.11533E+00 1.17892E+01 2.4672 + 6.00 20.00 0.00 20.00 9.248E-01 1.081E+00 3.53858E-01 2.05606E+00 1.19465E+01 2.4804 + 6.00 20.00 0.00 20.00 9.641E-01 1.037E+00 3.29611E-01 1.99668E+00 1.20953E+01 2.4928 + 6.00 20.00 0.00 20.00 1.005E+00 9.949E-01 3.07142E-01 1.93976E+00 1.22505E+01 2.5056 + 6.00 20.00 0.00 20.00 1.048E+00 9.543E-01 2.88482E-01 1.89945E+00 1.25065E+01 2.5262 + 6.00 20.00 0.00 20.00 1.093E+00 9.153E-01 2.70747E-01 1.85854E+00 1.27580E+01 2.5462 + 6.00 20.00 0.00 20.00 1.139E+00 8.779E-01 2.53913E-01 1.81717E+00 1.30048E+01 2.5653 + 6.00 20.00 0.00 20.00 1.187E+00 8.421E-01 2.37956E-01 1.77545E+00 1.32470E+01 2.5838 + 6.00 20.00 0.00 20.00 1.238E+00 8.077E-01 2.22849E-01 1.73350E+00 1.34845E+01 2.6015 + 6.00 20.00 0.00 20.00 1.291E+00 7.748E-01 2.08564E-01 1.69143E+00 1.37172E+01 2.6187 + 6.00 20.00 0.00 20.00 1.346E+00 7.431E-01 1.95071E-01 1.64932E+00 1.39450E+01 2.6351 + 6.00 20.00 0.00 20.00 1.403E+00 7.128E-01 1.82338E-01 1.60728E+00 1.41679E+01 2.6510 + 6.00 20.00 0.00 20.00 1.463E+00 6.837E-01 1.70334E-01 1.56537E+00 1.43858E+01 2.6662 + 6.00 20.00 0.00 20.00 1.525E+00 6.558E-01 1.59029E-01 1.52367E+00 1.45985E+01 2.6809 + 6.00 20.00 0.00 20.00 1.590E+00 6.290E-01 1.48389E-01 1.48224E+00 1.48059E+01 2.6950 + 6.00 20.00 0.00 20.00 1.657E+00 6.033E-01 1.38385E-01 1.44114E+00 1.50080E+01 2.7086 + 6.00 20.00 0.00 20.00 1.728E+00 5.787E-01 1.28985E-01 1.40041E+00 1.52046E+01 2.7216 + 6.00 20.00 0.00 20.00 1.802E+00 5.551E-01 1.20159E-01 1.36011E+00 1.53955E+01 2.7341 + 6.00 20.00 0.00 20.00 1.878E+00 5.324E-01 1.11877E-01 1.32027E+00 1.55805E+01 2.7460 + 6.00 20.00 0.00 20.00 1.958E+00 5.107E-01 1.04112E-01 1.28092E+00 1.57595E+01 2.7574 + 6.00 20.00 0.00 20.00 2.041E+00 4.898E-01 9.64949E-02 1.23773E+00 1.58762E+01 2.7648 + 6.00 20.00 0.00 20.00 2.128E+00 4.698E-01 8.90649E-02 1.19105E+00 1.59276E+01 2.7681 + 6.00 20.00 0.00 20.00 2.219E+00 4.507E-01 8.21641E-02 1.14553E+00 1.59709E+01 2.7708 + 6.00 20.00 0.00 20.00 2.313E+00 4.323E-01 7.57584E-02 1.10117E+00 1.60058E+01 2.7730 + 6.00 20.00 0.00 20.00 2.412E+00 4.146E-01 6.98154E-02 1.05798E+00 1.60325E+01 2.7746 + 6.00 20.00 0.00 20.00 2.514E+00 3.977E-01 6.43044E-02 1.01593E+00 1.60506E+01 2.7757 + 6.00 20.00 0.00 20.00 2.621E+00 3.815E-01 5.91965E-02 9.75040E-01 1.60601E+01 2.7763 + 6.00 20.00 0.00 20.00 2.733E+00 3.659E-01 5.44646E-02 9.35280E-01 1.60609E+01 2.7764 + 6.00 20.00 0.00 20.00 2.849E+00 3.510E-01 5.00831E-02 8.96643E-01 1.60527E+01 2.7759 + 6.00 20.00 0.00 20.00 2.971E+00 3.366E-01 4.60281E-02 8.59115E-01 1.60354E+01 2.7748 + 6.00 20.00 0.00 20.00 3.097E+00 3.229E-01 4.22768E-02 8.22682E-01 1.60089E+01 2.7731 + 6.00 20.00 0.00 20.00 3.229E+00 3.097E-01 3.88083E-02 7.87326E-01 1.59729E+01 2.7709 + 6.00 20.00 0.00 20.00 3.366E+00 2.971E-01 3.56027E-02 7.53033E-01 1.59274E+01 2.7680 + 6.00 20.00 0.00 20.00 3.510E+00 2.849E-01 3.26415E-02 7.19783E-01 1.58721E+01 2.7646 + 6.00 20.00 0.00 20.00 3.659E+00 2.733E-01 2.99073E-02 6.87559E-01 1.58068E+01 2.7604 + 6.00 20.00 0.00 20.00 3.815E+00 2.621E-01 2.73841E-02 6.56344E-01 1.57313E+01 2.7557 + 6.00 20.00 0.00 20.00 3.977E+00 2.514E-01 2.50566E-02 6.26117E-01 1.56455E+01 2.7502 + 6.00 20.00 0.00 20.00 4.146E+00 2.412E-01 2.29107E-02 5.96862E-01 1.55492E+01 2.7440 + 6.00 20.00 0.00 20.00 4.323E+00 2.313E-01 2.09334E-02 5.68559E-01 1.54423E+01 2.7371 + 6.00 20.00 0.00 20.00 4.507E+00 2.219E-01 1.91123E-02 5.41190E-01 1.53245E+01 2.7295 + 6.00 20.00 0.00 20.00 4.698E+00 2.128E-01 1.74360E-02 5.14736E-01 1.51958E+01 2.7210 + 6.00 20.00 0.00 20.00 4.898E+00 2.041E-01 1.58939E-02 4.89179E-01 1.50559E+01 2.7118 + 6.00 20.00 0.00 20.00 5.107E+00 1.958E-01 1.44819E-02 4.64693E-01 1.49109E+01 2.7021 + 6.00 20.00 0.00 20.00 5.324E+00 1.878E-01 1.31892E-02 4.41224E-01 1.47604E+01 2.6920 + 6.00 20.00 0.00 20.00 5.551E+00 1.802E-01 1.20011E-02 4.18562E-01 1.45983E+01 2.6809 + 6.00 20.00 0.00 20.00 5.787E+00 1.728E-01 1.09097E-02 3.96692E-01 1.44243E+01 2.6689 + 6.00 20.00 0.00 20.00 6.033E+00 1.657E-01 9.90786E-03 3.75597E-01 1.42385E+01 2.6560 + 6.00 20.00 0.00 20.00 6.290E+00 1.590E-01 8.98892E-03 3.55264E-01 1.40409E+01 2.6420 + 6.00 20.00 0.00 20.00 6.558E+00 1.525E-01 8.14661E-03 3.35677E-01 1.38314E+01 2.6269 + 6.00 20.00 0.00 20.00 6.837E+00 1.463E-01 7.37513E-03 3.16821E-01 1.36100E+01 2.6108 + 6.00 20.00 0.00 20.00 7.128E+00 1.403E-01 6.66908E-03 2.98684E-01 1.33769E+01 2.5935 + 6.00 20.00 0.00 20.00 7.431E+00 1.346E-01 6.02346E-03 2.81250E-01 1.31322E+01 2.5751 + 6.00 20.00 0.00 20.00 7.748E+00 1.291E-01 5.43359E-03 2.64505E-01 1.28760E+01 2.5554 + 6.00 20.00 0.00 20.00 8.077E+00 1.238E-01 4.89518E-03 2.48437E-01 1.26085E+01 2.5344 + 6.00 20.00 0.00 20.00 8.421E+00 1.187E-01 4.40418E-03 2.33031E-01 1.23300E+01 2.5120 + 6.00 20.00 0.00 20.00 8.780E+00 1.139E-01 3.95687E-03 2.18274E-01 1.20407E+01 2.4883 + 6.00 20.00 0.00 20.00 9.153E+00 1.093E-01 3.54979E-03 2.04152E-01 1.17410E+01 2.4631 + 6.00 20.00 0.00 20.00 9.543E+00 1.048E-01 3.17972E-03 1.90651E-01 1.14312E+01 2.4363 + 6.00 20.00 0.00 20.00 9.949E+00 1.005E-01 2.84367E-03 1.77759E-01 1.11118E+01 2.4080 + 6.00 20.00 0.00 20.00 1.037E+01 9.641E-02 2.51458E-03 1.63877E-01 1.06800E+01 2.3684 + 6.00 20.00 0.00 20.00 1.081E+01 9.248E-02 2.21668E-03 1.50611E-01 1.02332E+01 2.3256 + 6.00 20.00 0.00 20.00 1.127E+01 8.870E-02 1.95046E-03 1.38163E-01 9.78692E+00 2.2810 + 6.00 20.00 0.00 20.00 1.175E+01 8.508E-02 1.71286E-03 1.26496E-01 9.34185E+00 2.2345 + 6.00 20.00 0.00 20.00 1.225E+01 8.161E-02 1.50110E-03 1.15576E-01 8.89861E+00 2.1859 + 6.00 20.00 0.00 20.00 1.278E+01 7.828E-02 1.31263E-03 1.05365E-01 8.45775E+00 2.1351 + 6.00 20.00 0.00 20.00 1.332E+01 7.508E-02 1.14511E-03 9.58308E-02 8.01979E+00 2.0819 + 6.00 20.00 0.00 20.00 1.389E+01 7.201E-02 9.96431E-04 8.69372E-02 7.58515E+00 2.0262 + 6.00 20.00 0.00 20.00 1.448E+01 6.907E-02 8.64646E-04 7.86498E-02 7.15413E+00 1.9677 + 6.00 20.00 0.00 20.00 1.509E+01 6.626E-02 7.47991E-04 7.09343E-02 6.72692E+00 1.9061 + 6.00 20.00 0.00 20.00 1.574E+01 6.355E-02 6.44856E-04 6.37564E-02 6.30354E+00 1.8411 + 6.00 20.00 0.00 20.00 1.641E+01 6.096E-02 5.53778E-04 5.70818E-02 5.88381E+00 1.7722 + 6.00 20.00 0.00 20.00 1.710E+01 5.847E-02 4.73431E-04 5.08768E-02 5.46741E+00 1.6988 + 6.00 20.00 0.00 20.00 1.783E+01 5.608E-02 4.02622E-04 4.51088E-02 5.05387E+00 1.6202 + 6.00 20.00 0.00 20.00 1.859E+01 5.379E-02 3.40281E-04 3.97467E-02 4.64264E+00 1.5353 + 6.00 20.00 0.00 20.00 1.938E+01 5.160E-02 2.85467E-04 3.47633E-02 4.23337E+00 1.4430 + 6.00 20.00 0.00 20.00 2.021E+01 4.949E-02 2.37366E-04 3.01360E-02 3.82605E+00 1.3418 + 6.00 20.00 0.00 20.00 2.107E+01 4.747E-02 1.95295E-04 2.58498E-02 3.42155E+00 1.2301 + 6.00 20.00 0.00 20.00 2.196E+01 4.553E-02 1.58693E-04 2.18991E-02 3.02199E+00 1.1059 + 6.00 20.00 0.00 20.00 2.290E+01 4.367E-02 1.27117E-04 1.82882E-02 2.63111E+00 0.9674 + 6.00 20.00 0.00 20.00 2.387E+01 4.189E-02 1.00204E-04 1.50298E-02 2.25435E+00 0.8129 + 6.00 20.00 0.00 20.00 2.489E+01 4.018E-02 7.76347E-05 1.21402E-02 1.89843E+00 0.6410 + 6.00 20.00 0.00 20.00 2.595E+01 3.854E-02 5.90811E-05 9.63206E-03 1.57033E+00 0.4513 + 6.00 20.00 0.00 20.00 2.705E+01 3.697E-02 4.41689E-05 7.50738E-03 1.27603E+00 0.2438 + 6.00 20.00 0.00 20.00 2.820E+01 3.546E-02 3.24641E-05 5.75275E-03 1.01941E+00 0.0192 + 6.00 20.00 0.00 20.00 2.940E+01 3.401E-02 2.34891E-05 4.33949E-03 8.01700E-01 -0.2210 + 6.00 20.00 0.00 20.00 3.065E+01 3.262E-02 1.67560E-05 3.22733E-03 6.21608E-01 -0.4754 + 6.00 20.00 0.00 20.00 3.196E+01 3.129E-02 1.18026E-05 2.37003E-03 4.75914E-01 -0.7425 + 6.00 20.00 0.00 20.00 3.332E+01 3.001E-02 8.22060E-06 1.72099E-03 3.60292E-01 -1.0208 + 6.00 20.00 0.00 20.00 3.474E+01 2.879E-02 5.66816E-06 1.23714E-03 2.70019E-01 -1.3093 + 6.00 20.00 0.00 20.00 3.622E+01 2.761E-02 3.87247E-06 8.81180E-04 2.00513E-01 -1.6069 + 6.00 20.00 0.00 20.00 3.776E+01 2.649E-02 2.62316E-06 6.22303E-04 1.47632E-01 -1.9130 + 6.00 20.00 0.00 20.00 3.936E+01 2.540E-02 1.76253E-06 4.35928E-04 1.07818E-01 -2.2273 + 6.00 20.00 0.00 20.00 4.104E+01 2.437E-02 1.17499E-06 3.02980E-04 7.81256E-02 -2.5494 + 6.00 20.00 0.00 20.00 4.279E+01 2.337E-02 7.77267E-07 2.08954E-04 5.61734E-02 -2.8793 + 6.00 20.00 0.00 20.00 4.461E+01 2.242E-02 5.10195E-07 1.42994E-04 4.00773E-02 -3.2169 + 6.00 20.00 0.00 20.00 4.651E+01 2.150E-02 3.32275E-07 9.70911E-05 2.83701E-02 -3.5624 + 6.00 20.00 0.00 20.00 4.848E+01 2.063E-02 2.14674E-07 6.53977E-05 1.99226E-02 -3.9159 + 6.00 20.00 0.00 20.00 5.055E+01 1.978E-02 1.37560E-07 4.36893E-05 1.38758E-02 -4.2776 + 6.00 20.00 0.00 20.00 5.270E+01 1.898E-02 8.74021E-08 2.89405E-05 9.58275E-03 -4.6478 + 6.00 20.00 0.00 20.00 5.494E+01 1.820E-02 5.50475E-08 1.90030E-05 6.56006E-03 -5.0268 + 6.00 20.00 0.00 20.00 5.728E+01 1.746E-02 3.43560E-08 1.23648E-05 4.45014E-03 -5.4148 + 6.00 20.00 0.00 20.00 5.972E+01 1.675E-02 2.12401E-08 7.96971E-06 2.99040E-03 -5.8123 + 6.00 20.00 0.00 20.00 6.226E+01 1.606E-02 1.30028E-08 5.08658E-06 1.98982E-03 -6.2197 + 6.00 20.00 0.00 20.00 6.491E+01 1.541E-02 7.87911E-09 3.21340E-06 1.31055E-03 -6.6373 + 6.00 20.00 0.00 20.00 6.767E+01 1.478E-02 4.72370E-09 2.00850E-06 8.54005E-04 -7.0656 + 6.00 20.00 0.00 20.00 7.055E+01 1.417E-02 2.80069E-09 1.24152E-06 5.50358E-04 -7.5049 + 6.00 20.00 0.00 20.00 7.355E+01 1.360E-02 1.64144E-09 7.58605E-07 3.50595E-04 -7.9559 + 6.00 20.00 0.00 20.00 7.669E+01 1.304E-02 9.50483E-10 4.57969E-07 2.20662E-04 -8.4189 + 6.00 20.00 0.00 20.00 7.995E+01 1.251E-02 5.43511E-10 2.73024E-07 1.37149E-04 -8.8944 + 6.00 20.00 0.00 20.00 8.335E+01 1.200E-02 3.06747E-10 1.60647E-07 8.41329E-05 -9.3831 + 6.00 20.00 0.00 20.00 8.690E+01 1.151E-02 1.70773E-10 9.32424E-08 5.09105E-05 -9.8854 + 6.00 20.00 0.00 20.00 9.060E+01 1.104E-02 9.37301E-11 5.33548E-08 3.03716E-05 -10.4020 + 6.00 20.00 0.00 20.00 9.445E+01 1.059E-02 5.06862E-11 3.00805E-08 1.78517E-05 -10.9334 + 6.00 20.00 0.00 20.00 9.847E+01 1.016E-02 2.69888E-11 1.66986E-08 1.03318E-05 -11.4803 + 6.00 20.00 0.00 20.00 1.027E+02 9.741E-03 1.41406E-11 9.12149E-09 5.88387E-06 -12.0433 + 6.00 20.00 0.00 20.00 1.070E+02 9.343E-03 7.28536E-12 4.89947E-09 3.29494E-06 -12.6231 + 6.00 20.00 0.00 20.00 1.116E+02 8.962E-03 3.68826E-12 2.58595E-09 1.81309E-06 -13.2205 + 6.00 20.00 0.00 20.00 1.163E+02 8.596E-03 1.83338E-12 1.34015E-09 9.79606E-07 -13.8361 + 6.00 20.00 0.00 20.00 1.213E+02 8.245E-03 8.94142E-13 6.81408E-10 5.19287E-07 -14.4708 + 6.00 20.00 0.00 20.00 1.265E+02 7.908E-03 4.27502E-13 3.39655E-10 2.69861E-07 -15.1254 + 6.00 20.00 0.00 20.00 1.318E+02 7.585E-03 2.00202E-13 1.65833E-10 1.37364E-07 -15.8006 + 6.00 20.00 0.00 20.00 1.374E+02 7.276E-03 9.17545E-14 7.92374E-11 6.84278E-08 -16.4975 + 6.00 20.00 0.00 20.00 1.433E+02 6.979E-03 4.11156E-14 3.70177E-11 3.33283E-08 -17.2169 + 6.00 20.00 0.00 20.00 1.494E+02 6.694E-03 1.79966E-14 1.68926E-11 1.58562E-08 -17.9597 + 6.00 20.00 0.00 20.00 1.557E+02 6.421E-03 7.68697E-15 7.52247E-12 7.36148E-09 -18.7270 + 6.00 20.00 0.00 20.00 1.624E+02 6.158E-03 3.20064E-15 3.26545E-12 3.33157E-09 -19.5198 + 6.00 20.00 0.00 20.00 1.693E+02 5.907E-03 1.29768E-15 1.38030E-12 1.46819E-09 -20.3392 + 6.00 20.00 0.00 20.00 1.765E+02 5.666E-03 5.11757E-16 5.67507E-13 6.29330E-10 -21.1864 + 6.00 20.00 0.00 20.00 1.840E+02 5.435E-03 1.96065E-16 2.26678E-13 2.62070E-10 -22.0624 + 6.00 20.00 0.00 20.00 1.918E+02 5.213E-03 7.28880E-17 8.78547E-14 1.05895E-10 -22.9686 + 6.00 20.00 0.00 20.00 2.000E+02 5.000E-03 2.62579E-17 3.29967E-14 4.14649E-11 -23.9062 diff --git a/tests/data/test-lp99.ofr b/tests/data/test-lp99.ofr index 783cb86..0785c5d 100644 --- a/tests/data/test-lp99.ofr +++ b/tests/data/test-lp99.ofr @@ -8,65 +8,65 @@ ! where source number means: ! 1 = 1-corner (S = 1/(1+(f/fc)**pf_a)**pd_a) ! 2 = Joyner (BSSA 74, 1167--1188) -! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, +! 3 = Atkinson (BSSA 83, 1778--1798; see also Atkinson & Boore, BSSA 85, ! 17--30) ! 4 = Atkinson & Silva (BSSA 87, 97--113) ! 5 = Haddon 1996 (approximate spectra in Fig. 10 of -! Haddon's paper in BSSA 86, 1300--1313; +! Haddon's paper in BSSA 86, 1300--1313; ! see also Atkinson & Boore, BSSA 88, 917--934) ! 6 = AB98-California (Atkinson & Boore BSSA 88, 917--934) -! 7 = Boatwright & Choy (this is the functional form used by +! 7 = Boatwright & Choy (this is the functional form used by ! Boore & Atkinson, BSSA 79, 1736--1761, p. 1761) -! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation +! 8 = Joyner (his ENA two-corner model, done for the SSHAC elicitation ! workshop) ! 9 = Atkinson & Silva (BSSA 90, 255--274) ! 10 = Atkinson (2005 model), -! 11 = Generalized multiplicative two-corner model +! 11 = Generalized multiplicative two-corner model ! (S = [1/(1+(f/fa)**pf_a)**pd_a]*[1/(1+(f/fb)**pf_b)**pd_b]) -! 12 = Generalized additive two-corner model +! 12 = Generalized additive two-corner model ! (S = (1-eps)/(1+(f/fa)**pf_a)**pd_a] + eps/(1+(f/fb)**pf_b)**pd_b) ! NOTE: if M=4.0 2.410 -0.533 0.0 2.520 -0.637 0.0 @@ -79,7 +79,7 @@ ! modified distance: rmod = sqrt(r^2 + f_ff^2)) ! If iflag_f_ff = 2: ! modified distance: rmod = r + f_ff -! where log10(f_ff) = c1 + c2*amag +! where log10(f_ff) = c1 + c2*amag ! Use rmod in the calculations ! Published finite-fault factors ! Author meaning of r iflag_f_ff c1 c2 @@ -90,30 +90,30 @@ 0 0.0 0.0 !Geometrical spreading option: ! 0 = use standard hinged line segments -! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; +! >0 = frequency-dependent spreading (numbers 1 through 3 were for development purposes; ! they were not intended for general use): -! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), +! 1 = Gail Atkinson's November 2011 proposed spreading for eastern North America (ENA), ! with Q=500f^0.5, which must be specified below). ! 2 = Dave Boore's trial spreading #1 for ENA). ! 3 = Gail Atkinson's Sept, 2012 report "nga-e-r12_AttenShape.pdf". For this ! model, Q = 680f^0.33, and this must be specified below. ! 4 = Atkinson, G.M. and D.M. Boore (2014). The attenuation of Fourier amplitudes for rock sites in eastern North America, -! Bull. Seismol. Soc. Am. 104, (in press). +! Bull. Seismol. Soc. Am. 104, (in press). 0 !Parameters for the frequency dependent gsprd: ! option 2: -! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, +! r1_dmb_gsprd, pgsprd_r_le_r1_lf, pgsprd_r_le_r1_hf, pgsprd_r_gt_r1, ! ft1_dmb_gsprd, ft2_dmb_gsprd ! option 4: ! h4gspread (a nominal value of focal depth; in a later version I will put this into the control files for the SMSIN driver programs): ! (Placeholders are needed, but not used, even if the geometrical spreading option is not 2 or 4) -! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, +! 60.0 -1.1 -1.3 -0.5 1.0 3.2 ! for option 2 this corresponds to 1/r^1.1 for f<=1 Hz and 1/r^1.3 for f>=3.2 Hz, ! ! for r< 60 km and 1/r^0.5 for all f beyond 60 km. 10.0 0.0 0.0 0.0 0.0 0.0 -!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set +!gsprd: r_ref, nsegs, (rlow(i), p0, p1, m_s(i)) (Usually set ! r_ref = 1.0 km) (distance units are km) ! *** NOTE: these lines are needed even if option 1 is chosen above---and -! there must be nsegs lines following the "nseg" specification, even if the +! there must be nsegs lines following the "nseg" specification, even if the ! geometrical spreading is not used because option 1 has been chosen. 1.0 3 @@ -128,11 +128,11 @@ ! fb is set equal to fa for source 1, even though fb is not used in spect_shape, using weights of 0.5 and 0.5 ! for source 1 will give the same answer as the previously recommended 1.0 0.0 weights. The advantage ! to using weights of 0.5 0.5 is that they are the same as I am now recommending for the Atkinson and colleagues (and perhaps -! all) 2-corner models, for reasons discussed in the spectral shape, source 12 +! all) 2-corner models, for reasons discussed in the spectral shape, source 12 ! section above. This is not what is used by Atkinson and colleagues; they use 0.5 0.0 for the weights ! (Atkinson and Boore (1995, p. 20) and Atkinson and Silva (2000, p. 259)). 0.5 0.5 -!path duration: nknots, (rdur(i), dur(i)), slope of last segment +!path duration: nknots, (rdur(i), dur(i)), slope of last segment 4 0.0 0.0 10.0 0.0 @@ -160,11 +160,11 @@ ! 1=bj84;2=lp99; 3=bt12 wna; 4=bt12 ena; 5=average of bt12 ena & wna) 10.0 0.00001 0.001 2 !Name of pars file for Boore-Thompson oscillator correction for WNA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) \wna_bt12_trms4osc.pars !Name of pars file for Boore-Thompson oscillator correction for ENA: -! NOTE: If no folder is specified, the program will look for the files in +! NOTE: If no folder is specified, the program will look for the files in ! the folder from which the driver is called) \ena_bt12_trms4osc.pars !window params: idxwnd(0=box,1=exp), tapr(<1), eps_w, eta_w, f_tb2te, f_te_xtnd diff --git a/tests/test_motions.py b/tests/test_motions.py index 861f762..b7bba57 100644 --- a/tests/test_motions.py +++ b/tests/test_motions.py @@ -2,11 +2,10 @@ from pathlib import Path import numpy as np +import pyrvt import pytest from numpy.testing import assert_allclose -import pyrvt - def test_calc_attenuation(): m = pyrvt.motions.SourceTheoryMotion(5.5, 0, "cena", depth=1) diff --git a/tests/test_peak_calculators.py b/tests/test_peak_calculators.py index 874c141..6eb9404 100644 --- a/tests/test_peak_calculators.py +++ b/tests/test_peak_calculators.py @@ -2,12 +2,11 @@ import numpy as np import pyexcel +import pyrvt import pystrata import pytest from numpy.testing import assert_allclose, assert_string_equal -import pyrvt - from . import readers fpath_data = pathlib.Path(__file__).parent / "data" diff --git a/tests/test_tools.py b/tests/test_tools.py index 051cc82..a686e9f 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -2,11 +2,10 @@ import shutil import tempfile +import pyrvt import pytest from numpy.testing import assert_allclose -import pyrvt - from . import make_relpath exts = [".csv", ".xls", ".xlsx", ".ods"]